*{
  box-sizing: border-box;
  z-index: 1;
  scroll-behavior: smooth;
}

body{
  background: grey;
  font-family: 'superspace';
  margin:0;
}

button,input{
  font-family: 'superspace';
}

input:focus, button:focus{
  outline: none;
}


.col{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.row{
  display:flex;
  align-items: center;
}

.blur{
  filter:blur(2px);
  overflow-x: hidden;
  transition: 0.2s;
}

.header{
  position:fixed;
  top:0;
  left:0;
  display:flex;
  align-items: center;
  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-left: auto;
  height:100%;
  display:flex;
  align-items: center;
  padding:0 1vmin;
}

.logo img{
  height:6vmin;
}

.nav_content{
  display:flex;
  align-items: center;
}

.nav_item{
  font-weight: bold;
  font-size: clamp(8px,3vmin,17px);
  padding:1vmin 1.5vmin;
  white-space:nowrap;
  position:relative;
  transition: 0.2s;
  text-decoration: none;
}

.nav_item:hover{
  padding-bottom: 2vmin;
  filter:drop-shadow(0 20px 8px black);
}

.nav_item::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:1px;
  background:linear-gradient(transparent,var(--color1_1),var(--color1_2),transparent);
}

.header_btns{
  display:flex;
  align-items: center;
  margin-left: auto;
}

.header_btn{
  text-decoration: none;
  font-weight: bold;
  margin:0 2vmin;
  display:flex;
  align-items: center;
  font-size: clamp(10px,3vmin,17px);
  cursor: pointer;
}

.header_btn img{
  height:4vmin;
  max-height: 20px;
  margin-right: 1vmin;
}

.user_btn::after{
  content:"";
  width: 0;
  height: 0;
  border-left: 1vmin solid transparent;
  border-right: 1vmin solid transparent;
  border-top: 1vmin solid rgb(150,150,150);
  margin-left: 1vmin;
}


/*--------- START 10/16/2020-----------------*/

.language_btn{
  display:flex;
  align-items: center;
  color:white;
  border:solid 1px grey;
  font-size: clamp(10px,3vmin,17px);
  padding:2px;
  padding-right: 0.5%;
  border-radius: 33px;
  cursor:pointer;
}

.language_btn img{
  height:4vmin;
  max-height: 25px;
  margin-right: 1vmin;
}



/*--------- END 10/16/2020-----------------*/

/*---------------------------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;
}


/*-------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;
}

.preloader_logo {
  width: 80vmin;
  border-radius: 30px;
  position:relative;
  padding:1vmin 3vmin 1vmin 2vmin;
  overflow: hidden;
}

.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%;
}

.section2 {
    max-height: 80vh;
    width: 100%;
    margin-top: 79px;
}

.section_title{
  font-weight: bold;
  font-size: clamp(20px,8vmin,80px);
  background: linear-gradient(#e5d58a, #dca346 ,#e5d58a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin:4vmin 0;
}
