* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
a {
    text-decoration: none;
}
body {
    margin: 0;
}
section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-top: 50px; */
    padding-inline: 20px;
    scroll-snap-points-y: repeat(100vh);
    min-height: 100vh;
    scroll-snap-align: start;
}
.videobg {
    width: 100vw;
    height: calc(100vw * 0.5265);
}
.videobgs {
    width: 480px;
    height: 270px;
}

/* bg-color */
.intro {
    display: flex;
    flex-direction: column;
}
.intro-head {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.intro-body {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    min-height: unset;
    padding-block: 80px;
}
.intro-desc {
    display: flex;
    justify-content: center;
}
.hero {
    background-image: linear-gradient(-225deg, #22E1FF 0%, #1D8FE1 48%, #014a89 100%);
    color: #fff;
    display: flex;
    padding: unset;
    flex-direction: column;
    justify-content: space-around;
    /* min-height: unset; */
    /* padding-top: 60px;
    padding-bottom: 20px; */
}
.hero .app-logo {
    width: 125px;
}
.hero-top {
    display: flex;
    flex-direction: row;
    /* gap: 30px; */
    justify-content: space-around;
    align-items: center;
}
.hero-l, .hero-r {
    width: 50%;
}
.hero-l {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(50px);
}
.hero-r {
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-r img {
    width: 130%;
    transform: translateX(50px);
}
.vod {
    padding: unset;
    background-color: rgb(0, 0, 0);
    min-height: unset;
}
.voting {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(34,34,34,1) 71%, rgba(68,68,68,1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: unset;
    min-height: unset;
}
.voting-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.voting-l, .voting-r {
    width: 480px;
    /* min-width: 480px; */
    border: 1px solid #777;
    border-radius: 5px;
    overflow: hidden;
}
.functions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* padding: 100px 20px; */
}
.more {
    background: radial-gradient(ellipse farthest-corner at right bottom, #D1B464 0%, #D1B464 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    min-height: unset;
    padding-block: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.card {
    background-color: #fff;
    width: 200px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card-desc {
    min-height: 115px;
}
.download {
    background-image: linear-gradient(-225deg, #22E1FF 0%, #1D8FE1 48%, #014a89 100%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    min-height: unset;
}
.iphone {
    width: 800px;
    overflow: hidden;
    transform: translateX(0px);
}
.stores {
    display: flex;
    gap: 10px;
    margin-block: 20px;
}
.app-box {
    width: 800px;
    overflow: hidden;
}

.fadein{
    opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.fadein.show {
  opacity: 1 ;
  transform: translateY(0);
}

/* font-sizes and styles */

.large-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Raleway", sans-serif; 
}
.thin-title {
    font-size: 36px;
    font-weight: 100;   
}
.sec-title {
    font-size: 30px;
    font-weight: 100;
}
.func-title {
    font-size: 22px;
    font-weight: 700;
}
.normal {
    max-width: 75%;
    font-size: 16px;
    color: #777;
}
.small {
    font-size: 12px;
}
.white {
    color: #fff;
}

.fadein.show {
  opacity: 1 ;
  transform: translateY(0);
}

/* img style */
.phone, .phone-b {
    max-width: 600px;
}
.app-logo {
    max-width: 150px;
}
.appstore, .playstore {
    width: 150px;
}
.hero-l {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.buttons {
    display: flex;
    gap: 20px;
}

.vjs-big-play-button {
    transform: translate(175px, 100px);
}

@media only screen and (max-width: 991px){
.hero .large-title {
    font-size: 36px;
}
.hero .thin-title {
    font-size: 30px;
}
.hero-r img {
    transform: translateX(85px);
}

}
@media only screen and (max-width: 799px){
    .iphone {
        width: 100%;
        transform: unset;
    }
    .app-box {
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    .hidemobile {
        display: none;
    }
    .voting {
        padding-top: 40px;
    }
    .voting-container {
        flex-direction: column;
        gap: 20px;
    }
    .voting-l, .voting-r {
        width: 100%;
    }
    .voting .large-title {
        font-size: 28px;
    }
    .vod {
        height: calc(100vw * 0.5625);
        min-height: unset;
    }

    .app-logo {
        width: 125px;
    }
    .hero .app-logo {
        width: 100px;
    }
    .large-title {
        font-size: 36px;
    }
    .normal {
        font-size: 14px;
        max-width: unset;
    }
    .hero {
        padding-block: 30px;
        overflow: hidden;
    }
    .hero-top {
        flex-direction: column;
    }
    .hero-l {
        width: 100%;
        transform: unset;
    }
    .hero-r {
        width: 100%;
    }
    .hero-r img {
        width: 100%;
    }
    .buttons {
        gap: 10px;
    }
}
@media only screen and (max-width: 479px){

.videobgs {
    width: 100vw;
}
}
@media only screen and (max-width: 424px){
    .hero .app-logo {
        width: 75px;
    }
    .hero .large-title {
        font-size: 28px;
    }
    .hero .thin-title {
        font-size: 22px;
    }
    .normal {
        max-width: unset;
    }
    .appstore, .playstore {
        width: 100px;
    }
}
