*{
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

body{
	height: 100%;
	width: 100%;
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
	font-family: 'Lato';
    background-color: #05131E;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Lato';
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    color: #FFFCF6;
}


ul li{
	list-style: none;
	list-style-position: outside;
}

a{
	text-decoration: none;
}

p{
    color: #FFFCF6;
    font-family: 'Lato';
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;

}

button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
}


.wrapper{
	min-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.container{
	max-width: 1280px;
	margin: 0 auto;
	/* overflow: hidden; */
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

.content{
	flex: 1 1 auto;
}

/* preloader */

.preloader{
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
    background-color: #05121B;
	transition: all 2s;
	opacity: 1;
	visibility: visible;
}

.load{
    width: fit-content;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.loader_img img{
    width: 300px;
    padding-bottom: 32px;
}

.loader{
    font-size: 32px;
    color: #FFFCF6;
}

.done{
	visibility: hidden;
	opacity: 0;
}

/* age confirm */

#age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/agebackground.jpg") center no-repeat;
    background-size: cover;
    z-index: 999;
    display: none;
}
  
.age-verification-main {
    color: #E4E4E4;
    font-size: 17px;
    text-align: center;
    padding: 24px;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    width: 610px;
    max-width: 80%;
    margin: 0 auto;
}

.age-verification-main img {
    width: 410px;
    padding-bottom: 32px;
}
  
.age-title {
    display: block;
    font-size: 24px;
    line-height: 130%;
    padding-bottom: 12px;
}

.age-subtitle{
    padding-bottom: 32px;
}


.age-button{
    color: #05121B;
    background-color: #FFFCF6;
    padding: 8px 24px 10px;
    font-size: 17px;
    transition: all .3s ease;
}

.age-button:hover{
    background-color: #D6BD8E;
}
  
.age-credits {
    color: #F2F2F2;
    display: block;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}
.age-credits a {
    color: white;
}

/* header */

header{
	background-color: #05131E;
	width: 100%;
	position: fixed;
	z-index: 3;
}

.header{
    padding: 10px 0;
    display: flex;
}
  
#burger-menu {
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: 20px 20px 20px 0;
    overflow: visible;
    position: relative;
    z-index: 2;
}
#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
    background: #FFFCF6;
    display: block;
    height: 2px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
}
#burger-menu span:before,
#burger-menu span:after {
    content: "";
}
#burger-menu span {
    right: 0px;
    top: 15px;
    width: 25px;
}
#burger-menu span:before {
    left: 0px;
    top: -10px;
    width: 16px;
}
#burger-menu span:after {
    left: 0px;
    top: 10px;
    width: 20px;
}
  
#burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
}
#burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
}
#burger-menu.close span:after {
    top: 0px;
    left:0;
    transform: rotate(90deg);
    opacity:0;
    width:0;
}
  
#menu{
    margin-top: 90px;
    z-index:1;
    width:100%;
    position: fixed;
    top:0;
    left:0;
    height: auto;
    visibility: hidden;
    opacity: 0;
    text-align:center;
    transition: all 0.3s ease-in-out;
}
  
#menu.overlay{
    visibility: visible;
    opacity: 1;
    background: #05131E;
}
  
#menu li{
    list-style:none;
}

.menu a{
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 8px 0 6px;
    color: #FFFCF6;
}

.menu a:hover{
    color: #D6BD8E;
}

.main{
    margin: 0 auto;
    position: relative;
    left: 30px;
}

.main img {
    width: 200px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ginmenu{
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 8px 0 6px;
    color: #FFFCF6;
}

.ginmenu:hover{
	color: #D6BD8E;
}

.sub-menu{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.sub-menu > li{
    display: block;
}

.hidden{ display: none !important; }
.shown{ display: flex !important; }

#sub-menu a{
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 8px 0 6px;
    color: #F3F6F9;
}

#sub-menu a:hover{
    color: #D6BD8E;
}

.menu-list ul{
    display: flex;
    justify-content: space-between;
}

.menu-list{
    width: 960px;
    margin: 0 auto;
    padding: 15px 0;
}

#sub-menu{
    display: none;
}

.menu-list a{
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 8px 0 6px;
    color: #FFFCF6;
}

.menu-list a:hover{
    color: #D6BD8E;
}

.sub-menu-list{
    background-color: #FFFCF6;
}

.sub-menu-sub-list{
    margin: 0 auto;
    width: 960px;
    display: none;
}

.sub-menu-list ul{
    justify-content: space-between;
    padding: 15px 0;
}

.sub-menu-list a{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    font-family: 'Lato', sans-serif;
    padding-bottom: 5px;
    color: #0F548C;
    text-decoration: none;
}

.sub-menu-list a:hover{
    color: #D6BD8E;
}

.submenu-item{
    display: grid;
    width: 200px;
}

.submenu-item a{
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 8px 0 6px;
    color: #05131E;
    text-decoration: none;
}

.submenu-item img{
    width: 50px;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0);
    padding-bottom: 10px;
}



/* mainpage */

.mainpage {
    background: url(../img/background.jpg) center no-repeat;
    background-size: cover;
    padding: 100px;
}

.mainscreen {
    display: flex;
    margin: 72px 0;
    justify-content: space-between;
    position: relative;
}

.offer {
    width: 45%;
    text-align: center;
    height: fit-content;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
}

.offer img{
    padding-bottom: 24px;
    width: -webkit-fill-available;
}

.offer p{
    font-size: 24px;
    padding-bottom: 32px;
}

.button{
    color: #05131E;
    background-color: #FFFCF6;
    padding: 8px 24px 10px;
    font-size: 17px;
}

.button:hover{
    background-color: #D6BD8E;
}

.offerimg {
    width: 45%;
    text-align: center;
    margin-left: auto;
}

.offerimg img{
    width: -webkit-fill-available;
}


/* legend */

.legend {
    display: flex;
    justify-content: space-between;
    padding: 72px 0;
    position: relative;
}

.legenddisc {
    width: 45%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.title{
    padding: 12px 0 24px;
    font-size: 24px;
    color: #D6BD8E;
}

.moreless-button1{
    color: #05131E;
    background-color: #FFFCF6;
    padding: 8px 24px 10px;
    font-size: 17px;
}

.moreless-button1:hover{
    background-color: #D6BD8E;
}

.text1{
    padding-bottom: 12px;
}

.moretext1 {
    display: none;
    padding-bottom: 32px;
}

.legendimg {
    width: 45%;
    margin-left: auto;
}

.legendimg img{
    width: -webkit-fill-available;
}


/* process */

.process{
    display: flex;
    position: relative;
    padding: 72px 0 144px;
    justify-content: space-between;
}

.processimg{
    width: 45%;
}

.processimg img{
    width: -webkit-fill-available;
}

.processdisc{
    width: 45%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
}

.moreless-button2{
    color: #05131E;
    background-color: #FFFCF6;
    padding: 8px 24px 10px;
    font-size: 17px;
}

.moreless-button2:hover{
    background-color: #D6BD8E;
}

.text2{
    padding-bottom: 12px;
}

.moretext2 {
    display: none;
    padding-bottom: 32px;
}

/* products */

.products{
    padding: 144px 0;
    background-color: #FFFCF6;
    position: relative;
}

.coinlogo_top{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coinlogo_top img{
    width: 100px;
}

.coinlogo_bottom{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coinlogo_bottom img{
    width: 100px;
}

.productsrow {
    width: auto;
    margin: 0 auto;
    background:  url("../img/biglogo.svg") center no-repeat;
    background-size: contain;
}

.row{
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.productcard{
    display: flex;
    position: relative;
    width: 454px;
    justify-content: space-between;
}

.productcard img{
    width: 120px;
    height: 448px;
}

.productdisc{
    height: fit-content;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    text-align: center;
}

h2{
    font-size: 32px;
    padding-bottom: 32px;
    color: #05131E;
}

.darkbutton{
    color: #FFFCF6;
    background-color: #05131E;
    padding: 8px 24px 10px;
    font-size: 17px;
}

.darkbutton:hover{
    background-color: #D6BD8E;
}

/* contacts */

.contacts{
    padding: 144px 0;
	width: 100%;
}

.form{
	width: 620px;
	margin: 0 auto;
	color: #FFFCF6;
}

.form *{
	outline: none;
}

.form_title {
	text-align: center;
	padding-bottom: 32px;
}

.form_body {
	position: relative;
}

.form_body::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/success.png') top no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease 0s;
}

.form_body._success::after{
	opacity: 1;
	visibility: visible;
}

.form_item {
	margin-bottom: 24px;
}

.form_label {
	font-style: normal;
	font-size: 17px;
	line-height: 130%;
	color: #FFFCF6
}

.form_input {
	width: 100%;
	padding: 24px 24px;
	font-size: 17px;
	line-height: 130%;
    background-color: #FFFCF6;
    color: #05131E;
}

.form_input:focus {
	border: 1px solid #D6BD8E;
}


textarea.form_input{
	min-height: 120px;
	resize: vertical;
	padding: 17px;
	line-height: 130%;
}

::placeholder{
	color: #F2F2F2;
}

.select_forms{
	display: flex;
	justify-content: space-between;
}

.select {
    padding: 24px 2px;
    font-size: 17px;
    border-radius: 0;
    color: #05131E;
    background-color: #FFFCF6;
    width: 100%;
}


.checkbox_input{
	display: none;
}

.checkbox_input:checked + .checkbox_label::after{
	transform: scale(1);
}

.checkbox_label {
    font-size: 12px;
    line-height: 130%;
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.checkbox_label::before{
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	margin-right: 24px;
    border: solid 2px;
}

.checkbox_label::after{
	content: "";
	width: 12px;
	height: 12px;
	position: absolute;
	top: 8px;
	left: 8px;
	background-color: #D6BD8E;
	margin-right: 24px;
	transform: scale(0);
}

.checkbox_label a{
	color: #D6BD8E;
}

.form_button{
    width: auto;
	position: relative;left: 50%;
	transform: translate(-50%, 0);
    background-color: #FFFCF6;
    color: #05131E;
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    transition: all 0.5s ease;
    width: fit-content;
    padding: 8px 24px;
}

.form_button:hover{
    background-color: #D6BD8E;
}

/* footer */

footer{
    background-color: #030D15;
}

.footerrow{
    display: flex;
    justify-content: space-between;
    padding: 72px 0 144px;
}

.footerrow ul li:not(last-child){
    padding-bottom: 12px;
}

.footerrow a{
    color: #FFFCF6;
}

.footerrow a:hover{
    color: #D6BD8E;
}


/* product page */

.productcardpage{ 
    padding: 144px 0 72px;
    background: #FFFCF6;
}

.productcardpagerow{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.productcardimg{
    width: 45%;
    text-align: center;
    background: url("../img/biglogo.svg") center no-repeat;
    background-size: contain;
}

.productcardimg img{
    height: 688px;
}

.productcardpagedisc{
    width: 45%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
}

.productcardpagedisc h1{
    color: #05131E;
    padding-bottom: 32px;
}

.techdisc p{
    color: #05131E;
}

.productcardpagedisc ul li:not(last-child){
    padding-bottom: 24px;
}

.techdisc{
    padding-bottom: 32px;
}

.producttech{
    padding: 72px 0;
    background: #FFFCF6;
}

.product_info_row ul li:not(last-child){
    padding-bottom: 24px;
}

.product_info_row{
    display: flex;
    justify-content: space-between;
}


.productfirstcolumn{
    width: 45%;
}

.productsecondcolumn{
    width: 45%;
}

.product_info_row p{
    color: #05121B;
}

.style{
	background: url('../img/style.svg') left top no-repeat;
	min-height: 50px;
	padding-left: 70px;
	position: relative;
}

.taste{
	background: url('../img/taste.svg') left top no-repeat;
	min-height: 50px;
	padding-left: 70px;
	position: relative;
}
.gastronomy{
	background: url('../img/gastronomy.svg') left top no-repeat;
	min-height: 50px;
	padding-left: 70px;
	position: relative;
}
.method{
	background: url('../img/method.svg') left top no-repeat;
	min-height: 50px;
	padding-left: 70px;
	position: relative;
}
