@font-face{
    font-family: 'Bebas-Neue';
    src: url(../Fonts/BebasNeue-Regular.otf) format("opentype");
}


*{
    box-sizing: border-box;
}

body{
    background-color: #333;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin: 0;
}

.section{
    border-bottom: solid 8px #222;
}

.part-1-wrapper{
    background: url(/front/tutorialmobile/img/bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    position:relative;
}


.scrolldown{
	position: absolute;
	bottom:3vmin;
  left:0;
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  animation: animate 1s infinite;
}

.scrolldown p{
  margin:0;
  font-size: clamp( 13px ,3vmin, 22px );
  opacity: 0.8;
  margin-right: 2vmin;
}

.scrolldown span{
	display: block;
	width: 2vmin;
	height: 2vmin;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: rotate(45deg);
  margin-bottom: 1vmin;
}


.top-header{
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,1),rgba(0,0,0,0));
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding:2vmin 3vmin;
    justify-content: space-between;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    z-index: 999;
    transition: 0.2s;
  }

.scrolled-header{
  background: rgba(0,0,0,0.8);
}



.logo{
    width: 32vmin;
}

.icon-holder{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.icon-item{
    margin: 0 1vmin;
    width: 7vmin;
    height: 7vmin;
    min-width: 35px;
    min-height:35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding:0px;
    overflow: hidden;
    cursor:pointer;
    transition: 0.2s;
}

.icon-item img{
    width: 100%;
    padding:1vmin;
    border-radius: 5px;

}


.icon-active{
  padding:2px;
  background: linear-gradient(155deg, transparent, #fbc25c,#d1883b ,transparent);
}

.icon-active img{
  background: linear-gradient(115deg, rgb(30,30,30), rgb(10,10,10));
}

.body-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px black);
}

.title{
    font-size: clamp( 13px ,7vmin, 45px );
    font-weight: 600;
    margin: 2vh 0;
    text-align: center;
}

.content{
    font-size: clamp( 12px ,5vmin, 30px );
    font-weight: 400;
    text-align: center;
    margin-bottom: 2vh;
}

.download-btn{
    align-self: center;
    min-width: 150px;
    min-height: 35px;
    background: linear-gradient(#fbc25c,#d1883b);
    font-size: clamp( 15px ,3vmin, 23px );
    padding:2vmin;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    white-space: nowrap;
    cursor:pointer;
}

.download-btn:hover{
    background: linear-gradient(#e32424,#ad0000);
    color: white;
}

.part-2-wrapper{
    background: black;
    background-image: url(/front/tutorialmobile/img/bg1.jpg);
    background-size: cover;
    background-position: bottom;
}

/*-------------Android , IOS qr section---------------------------------*/

.qr_section{
  min-height: 100vh;
  background: black;
  display:flex;
  flex-direction: column;
  align-items: center;
  padding:5vmin;
  padding-top: 8vmax;
}

.android_section{
  background-image: url(/front/tutorialmobile/img/slot_bg1.jpg);
  background-size: cover;
  background-position: top center;
}

.ios_section{
  background-image: url(/front/tutorialmobile/img/slot_bg2.jpg);
  background-size: cover;
  border:none;
}

.qr_section h1{
  font-size: clamp( 13px ,7vmin, 45px );
  font-weight: 600;
  margin: 2vh 0;
  text-align: center;
  margin-bottom: 8vh;
}


.qr_list{
  display:grid;
  grid-gap:5px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width:100%;
  max-width: 1500px;
}

.qr_item{
  display:flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8vmin;
  max-width: 500px;
}

.qr_model{
  width:35%;
}

.qr_info{
  display:flex;
  flex-direction: column;
  align-items: center;
  width:40%;
}

.qr_code{
  background: linear-gradient(#fbc25c,#d1883b);
  width:100%;
  border-radius: 2px;
  padding:8px;
}


.qr_platform{
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  padding:5px;
  padding-right: 15px;
  background: linear-gradient(#fbc25c,#d1883b);
  color:black;
  font-size: clamp( 10px ,3vmin, 14px );
  border-radius: 2px;
  font-weight: bold;
  margin-bottom: 5%;
  white-space: nowrap;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.qr_platform img{
  height:2vmin;
  filter:brightness(0);
  margin-right: 5%;
  min-height: 18px;
}

.download_link{
  background: linear-gradient(#e32424,#ad0000);
  color: white;
  width:100%;
  text-align: center;
  padding:5px;
  border-radius: 2px;
  font-size: clamp( 10px ,3vmin, 14px );
  margin-top: 5%;
  font-weight: bold;
}



@keyframes animate{

	0%{
		opacity: 0;
		transform:translateY(-1vmin);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform:translateY(1vmin);
	}

}
