*{
  box-sizing: border-box;
  z-index: 1;
  scroll-behavior: smooth;
}

body{
  background: grey;
  font-family: 'arial-nova';
  margin:0;
}

button,input{
  font-family: 'arial-nova';
}

input:focus, button:focus{
  outline: none;
}

.blur{
  filter:blur(2px);
  overflow-x: hidden;
  transition: 0.2s;
}

.header{
  position:fixed;
  top:0;
  left:0;
  display:flex;
  align-items: flex-end;
  justify-content: center;
  width:100%;
  background: rgb(24,24,24);
  padding:0 2%;
  height:10vmin;
  z-index: 999;
}

.menu_btn{
  height:50%;
  margin-right: 5vmin;
  display:none;
}

.logo{
  margin-right: 1vmin;
  height:100%;
  display:flex;
  align-items: center;
  padding:0 1vmin;
  mix-blend-mode: screen;
}

.logo img{
  height:100%;
}

.nav_content{
  align-self: flex-end;
  display:flex;
  align-items: flex-end;
  margin-right: 3%;
}

.nav_item{
  font-weight: bold;
  font-size: clamp(8px,3vmin,12px);
  padding:0.5vmin 2vmin;
  white-space:nowrap;
  position:relative;
  transition: 0.2s;
  text-decoration: none;
  display:flex;
  flex-direction: column;
  align-items: center;
  font-family: 'helvatica';
  color:#FFEFD4;
  letter-spacing: 1px;
}

.nav_item img{
  height:3vmin;
}

.nav_item span{
  margin-top:15%;
}

.nav_item:hover{
  transform: translateY(-1vmin);
}

.nav_hot::after{
  content:"";
  position:absolute;
  right:12px;
  top:-10px;
  width:30px;
  height:30px;
  background: url('../Images/icon/hot.gif');
  background-size: 100% 100%;
}


.header_btns{
  display:flex;
  align-items: center;
  color:#FFEFD4;
  font-family: 'helvatica';
  padding-right: 5%;
  padding-bottom: 0.5vmin;
}

.header_btns img{
  height:4vmin;
  max-height: 35px;
  margin-right: 10%;
}

.header_btn{
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(8px,3vmin,12px);
  cursor: pointer;
  text-transform: uppercase;
  color:#FFEFD4;
}

.header_btn:hover{
  text-decoration: underline;
}

.logged_btn{
  display:flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  font-size: clamp(8px,3vmin,12px);
  margin-left: 2vmin;
  color:rgb(220,220,220);
  text-decoration: none;
}

.logged_btn img{
  margin-bottom: 5%;
}

.language_btn{
  display:flex;
  align-items: center;
  color:white;
  border:solid 1px var(--color1_3);
  font-size: clamp(10px,3vmin,17px);
  padding:2px;
  border-radius: 33px;
  cursor:pointer;
  margin:0 2vmin;
  margin-bottom: 0.5vmin;
}

.language_btn img{
  height:4vmin;
  max-height: 25px;
}

.language_btn span{
  margin-left: 2vmin;
}



/*---------------------------Mobile side menu----------------------------------*/

.menu{
  position:fixed;
  left:0;
  top:0;
  height:100%;
  left:0;
  z-index: 9999;
  width: 40vmin;
  background: rgb(20,20,20);
  display:none;
}

.menu_header{
  display:flex;
  justify-content: center;
  align-items: center;
  width:100%;
  padding:8% 0;
  background: rgb(15,15,15);
  position:relative;
}

.menu_logo{
  width:50%;
}


.lang2{
  align-self: flex-start;
  margin:3vmin;
  padding-right: 5%;
}

.menu_back{
  color:grey;
  padding:3% 5%;
  position:absolute;
  bottom:2%;
  right:0;
  font-size: clamp(12px,3vmin,18px);
  background: rgb(15,15,15);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display:flex;
  align-items: center;
  cursor:pointer;
}

.menu_back i{
  margin-right: 1vmin;
  font-size: 4vmin;
}

.menu_content{
  display:flex;
  flex-direction: column;
}

.menu_item{
  padding:3vmin;
  text-decoration: none;
  color:rgb(200,200,200);
  font-size: clamp(12px,3vmin,18px);
  border-radius: 3px;
  display:flex;
  align-items: center;
}

.menu_item img{
  height:4vmin;
  margin-right: 2vmin;
}

/*----Sidenav icon------*/

.sidenav{
  position:fixed;
  right:0;
  top:50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.sidenav_item{
  display:flex;
  align-items: center;
  padding:10%;
  position:relative;
  cursor:pointer;
}

.sidenav_icon{
  width:7vmin;
  min-width: 40px;
  transition: 0.2s;
}

.sidenav_item:hover .sidenav_icon{
  transform:scale(1.1);
}

.sidenav_hover{
  position:absolute;
  right:100%;
  top:0;
  display:flex;
  flex-direction: column;
  background: linear-gradient(rgba(255, 227, 171,0.8) , rgba(181, 125, 40,0.8) ,rgba(255, 227, 171,0.8));
  padding:10% 20%;
  padding-right: 25%;
  width:220%;
  min-width: 200px;
  display:none;
  clip-path: polygon(0% 0%, 95% 0, 95% 10%, 100% 15%, 95% 20%, 95% 100%, 0 100%);
}

.sidenav_row{
  display:flex;
  align-items: center;
  color:black;
  text-decoration: none;
  font-size: clamp(10px,3vmin,17px);
  margin:10% 0;
}

.sidenav_row img{
  width:25%;
  margin-right: 10%;
}

.wechat_qr{
  width:60% !important;
}

.sidenav_item:hover .sidenav_hover{
  display:flex;
}


/*-------Scroll Top------------*/

.scrolltop{
  position:fixed;
  left:2%;
  bottom:2%;
  z-index: 9999;
  font-size: clamp(15px,5vmin,30px);
  width:60px;
  height:60px;
  background: linear-gradient(rgb(30,30,30),rgb(10,10,10));
  border-radius: 100%;
  display:flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}



/*---Preloader----*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(24,24,24,0.9);
  z-index: 99999999;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.preloader_logo {
  width: 35vh;
  /*position:relative;*/
  position:absolute;
  padding:1vh;
  top:40%;
  right:45%;
  overflow: hidden;
  mix-blend-mode: screen;
}

.preloader_logo:after{
  content:"";
  width:20%;
  height:200%;
  background: linear-gradient(to right,rgba(0,0,0,0),rgba(255,255,255,0.3),rgba(255,255,255,0.5),rgba(255,255,255,0.3),rgba(0,0,0,0));
  position:absolute;
  left:-100%;
  top:-50%;
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
  animation: bling 2s linear infinite;
}

.preloader img {
  width: 100%;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(var(--gold1), var(--gold2));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}



/*----------------------------------------------------------------------------------*/

.container{
  display:flex;
  flex-direction: column;
  width:100%;
  position:relative;
}

.container::after{
  content:"";
  position:fixed;
  left:0;
  top:0;
  width:100vw;
  height:100%;
  background-image:url('../Images/background/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.section{
  padding-top:5vmin;
  min-height:100vh;
  width:100%;
}

.section_title{
  font-weight: bold;
  font-size: clamp(20px,8vmin,80px);
  margin:4vmin 0;
  text-align: center;
  width:95%;
  max-width:1200px;
}
