@font-face {
font-family: SuisseIntl;
src: url(fonts/SuisseIntl-Regular.woff2);
font-weight: 400;
}

@font-face {
font-family: SuisseIntl;
src: url(fonts/SuisseIntl-SemiBold.woff2);
font-weight: 500;
}

body {
	background: rgba(238, 231, 217, 1);
	color: #1D1D1D;
	letter-spacing: -1%;
	font-family: SuisseIntl, "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 0;
	font-smoothing: antialiased;
	}

h1, h2, h3, h4, h5 {
font-size: 52px;
font-weight: 400;
line-height: 110%;
}

h1 {
font-size: 72px;
}

h2 {
font-size: 62px;
}

h3 {
font-size: 52px;
}

h4 {
font-size: 42px;
}

h5 {
font-size: 36px;
}

a{
	color:#000;
} 

strong {
	font-weight: 500;
}

main {
	min-width: 320px;
}

.container{
	max-width: 1300px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding:0 20px;
}

.container--small{
	max-width: 900px;
}

.headline {
	font-size: 24px;
}

.hero{
	position: relative;
	background: rgba(25, 27, 31, 1);
	color: #F6F6F0;
}

.hero a {
	color: #F6F6F0;
	text-decoration: none;
}

.main-header{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0;
	padding: 16px 0;
	justify-content:space-between;
	border-bottom: 1px solid rgba(246,246,240,.1);
}

.logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 20px;
}

.logo img {
	margin: 0 8px 0 0;
}

nav ul{
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

nav ul li {
	list-style: none;
	margin: 0 0 0 10px;
	padding: 0;
}

nav ul li a{
	font-size: 16px;
}

.main-title{
	padding: 70px 20px 40px;
	text-align: center;
} 

.main-title h1 {
	margin: 0;
} 
.main-title p {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.36px;
	opacity: .5;
}

.hero .store_link {
	margin-bottom: 70px;
}

.hero_img{
	position: relative;
	max-width:375px;
	min-height: 600px;
	margin: 0 auto;
	padding:0 50px;
	display: block;
	z-index: 5;
	animation-name: example;
	animation-duration: .6s;
}

.hero_img video{
	position: relative;
	width: 100%;
	min-height: 600px;
	border-radius:40px;
	background: rgba(25, 27, 31, 1);
	border: 5px solid #000;
	outline: 5px solid #989892;
	box-shadow:
    0 0 0 6.5px #F4F5F0,
    0 0 0 8px #000;
}

@keyframes example {
0%   {
  transform: translateY(80px);
  opacity: 0;
}
100% {
  transform: translateY(0);
  opacity: 1;
}
}

.hero:after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: rgba(238, 231, 217, 1);
	z-index: 1;
}

.hero--page{
	margin-bottom: 40px;
}

.hero--page:after{
	display: none;
}

.hero_img img{
width:100%;
height: auto;
display: block;
margin: 0 auto;
}

.accordion {
max-width: 860px;
margin: 0 auto;
}

.accordion dl dt {
display: flex;
padding: 30px 0;
gap: 10px;
align-items: flex-start;
font-weight: 400;
cursor: pointer;
font-size: 26px;
line-height: 110%;
border-top: 1px solid rgba(29,29,29,.1);
}

.accordion dl dt.on {
  padding-bottom: 0;
}

.accordion dl dt:after {
  content:"+";
  flex-shrink: 0;
  margin-left: auto;
}

.accordion dl dt.on:after {
  content:"-";
}

.accordion dl dt.on+dd {
  max-height: 999px;
  padding: 4px 0 30px;
}

.accordion dl dd {
	font-size: 17px;
	padding: 2px 0 0;
	max-height: 0;
	height: auto;
	overflow: hidden;
	margin: 0 0 0 auto;
	padding: 0;
	opacity: .6;
}

.accordion dl dt strong {
	font-weight: 400;
}

.gallery {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: stretch;
	gap: 20px;
	margin-bottom: 100px;
}
.gallery_left {
	flex-basis: 40%;
}
.gallery_right {
	flex-basis: 60%;
}
.gallery img {
	display: block;
	width: 100%;
	border-radius:12px;
}

.benefit {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: stretch;
	gap: 20px;
	padding-top: 70px;
}

.benefit_left {
	flex-basis:40%;
	padding-top: 4px;
}

.benefit_left p{
	margin:0;
	font-size: 20px;
	opacity: .6;
	padding-right: 20%;
}

.benefit_right {
	flex-basis:60%;
} 

.benefit_right h2{
	margin:0 0 40px;
}

.key-list {
	margin: 0;
	padding: 0;
	counter-reset: line-number;
}

.key-list li{
	list-style: none;
	margin: 0;
	padding: 32px 0;
	font-size: 30px;
	font-weight: 400;
	border-bottom: 1px solid rgba(29,29,29,.1);
	display: flex;
	align-items: baseline;
	counter-increment: line-number;
}



.key-list li:before{
	content: counter(line-number)". ";
	width: 80px;
	font-size: 24px;
	flex-shrink: 0;
}

#download {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 120px;
}

#download h2 {
	margin-bottom: 40px;
}

.store_link{
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
	gap: 20px;
	margin: 0;
	padding: 0 20px;
}

.store_link li{
	list-style: none;
	margin: 0;
	padding: 0;
}

.store_link li img{
  max-width: 100%;
}

footer {
	text-align: center;
	padding: 30px 0;
}

footer ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0;
	padding: 0;
}

footer ul li {
	list-style: none;
	margin: 0;
	padding: 0 12px;
} 

footer ul li a{
	text-decoration: none;
	color: #1D1D1D;
}

#cb-wheel {
	position: fixed;
	bottom: 15px;
	right: 15px;
}

#cb-wheel img{
	display: block;
}

@media only screen and (max-width: 1300px) {
	.main-title br {
	  display: none;
	} 
}

hr {
	border-top: none;
	border-top:  12px solid rgba(25, 27, 31, 1);
	margin: 120px 0;
}   

@media only screen and (max-width: 1024px) {
	h1 {
	  font-size: 52px;
	}
	h2 {
	  font-size: 48px;
	}
	h3 {
	  font-size: 44px;
	}

	h4 {
	  font-size: 40px;
	}

	hr {
		margin-top: 120px;
		margin-bottom: 120px;
	}   


}

@media only screen and (max-width: 800px) {

	.main-title{
	  padding-top: 50px;
	  padding-bottom: 50px;
	} 

	h1 {
	  font-size: 40px;
	}

	h2 {
	  font-size: 38px;
	}

	h3 {
	  font-size: 34px;
	}

	h4 {
	  font-size: 30px;
	}

	h5 {
	  font-size: 28px;
	}

	hr {
		margin-top: 60px;
		margin-bottom: 60px;
	} 

	.main-title p {
	  margin-bottom:10px;
	}

	.benefit {
	  flex-direction: column;
	}

	.benefit_left, .benefit_right, .gallery_left, .gallery_right {
	  flex-basis: 100%;
	  text-align: center;
	}

	.benefit_left p{
	  padding-right: 0;
	}

	.key-list li{
	  font-size: 24px;
	  padding-top: 20px;
	  padding-bottom: 20px;
	  justify-content: center;

	}

	.key-list li:before{
	  display: none;
	}

	.gallery {
	  flex-direction: column;
	}

	.accordion dl dt { 
	  font-size: 22px;
	}

	
}
