body{
    margin: 0;
}
@font-face {
    font-family: 'dinroundot-bold';
     src: url("./fonts/DINROUNDOT-BOLD.OTF");
}
@font-face {
    font-family: 'dinroundot-light';
    src: url("./fonts/DINROUNDOT-LIGHT.OTF");
}
@font-face {
    font-family: 'dinroundot-medium';
    src: url("./fonts/DINROUNDOT-MEDIUM.OTF");
}
@font-face {
    font-family: 'dinroundot';
    src: url("./fonts/DINROUNDOT.OTF");
}
@font-face {
    font-family: 'tfvn-bold';
    src: url("./fonts/NestleTextTFVN-Bold.ttf");
}
@import url("https://fonts.googleapis.com/css?family=Open+Sans:600, 300");
*, *::after, *::before {
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Open sans', sans-serif;
    position: relative;
    /* Container should have relative position */
    /* background: url(./images/bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%; */
}
.home_page{
    width: 100%;
    height: 100vh;
    background: url(./images/bg-clean.png);
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    background-color: #cacbe3;

}
.home_page2{    
    margin: 0;

    overflow: hidden;

}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.header .logo{
    width: 13%;
    aspect-ratio: 1/1;
}
.count{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    flex-direction: column;
    gap: 20px;
}
.count .count-img{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.count .count-img .num{
    font-size: 120px;
    color: #fff;
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-45%, -45%);
    font-family: 'tfvn-bold';
     text-shadow: 2px 2px 2px  #5ff2f2;
}
.wheel{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 42px 30px;
    position: relative;
}
.wheel .wheel--img{
    width: 100%;
    height: auto;
}
@keyframes fadeOut {
    from { opacity: 0; }
    to { opacity: 1; }
  }
.wheel .wheel--tooltip{
    position: absolute;
    bottom: -23px;
    width: 50%;
    right: 17px;
    animation: fadeOut 1s ease-in-out;
}
.pin{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 30px 30px;
}
.pin .pin--img{
    position: relative;

}
.pin .pin--img .pin-border{
    width: 100%;

}
.pin--item{
    display: flex;
    left: 5%;
    gap: 2px;
    top: 7px;
    position: absolute;
    width: 100%;
    height: 100%;
}
.pin--item .img-item{
    height: 70%;
    width: 6%;
    display: none;


}
.pin .pin--item .img-item:last-child{
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;

}
.tagline{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

.tagline .tagline--img{
    width: 100%;
}  
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 30px 30px;
}
#btn-start{
    background: #fff;
    border-radius: 20px;
    font-size: 20px;
    padding: 10px 0;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-family: 'tfvn-bold';
     text-shadow: 2px 2px 2px  #5ff2f2;
}
video {
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    pointer-events: none;

  }
@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}