/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */





/*  ==========  GENERAL SECTION  ==========  */
/* body{
    background-color: var(--color-background);
} */
/*  ==========  END GENERAL SECTION  ==========  */





/*  ==========  INTRO SECTION  ==========  */
#intro{
    height: 600px;
    /* background: linear-gradient(to top, rgba(255, 154, 0, 0) 0, rgba(255, 154, 0, .17) 32%); */
}
#intro .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 40px;
}
#intro .text-group{
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#intro .text-group h1.title{
    font-size: 42px;
    font-weight: 600;
}
#intro .text-group p.sub-title{
    font-size: 18px;
    line-height: 27px;
}
#intro .text-group .button-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
#intro .text-group .button-wrap .intro-button{
    gap: 8px;
    padding: 12px 18px;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}
#intro .text-group .button-wrap .intro-button:hover{
    opacity: .85;
}
#intro .text-group .button-wrap .intro-button .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
#intro .text-group .button-wrap .intro-button .icon svg{
    width: 22px;
    height: 22px;
}
#intro .text-group .button-wrap .intro-button-second{
    padding: 12px 18px;
    border: 2px solid var(--color-primary);
    font-weight: 600;
}
#intro .text-group .button-wrap .intro-button-second:hover{
    background-color: var(--color-primary);
    color: #fff;
    opacity: .85;
}

#intro .graphics-group{
    width: 460px;
    height: 432px;
    display: flex;
    gap: 15px;
}
#intro .graphics-group .character-box{
    display: flex;
    align-items: end;
    width: 60%;
    height: inherit;
    background-image: url('/assets/main-character2.png');
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
    /* background-color: #FFC236; */
    background-color: #FC4244;
    border-radius: 14px;
    padding: 3px;
    box-sizing: border-box;
}
#intro .graphics-group .character-box .text-box{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
    background-color: #fff;
    border-radius: 11px;
    padding: 20px;
    box-sizing: border-box;
}
#intro .graphics-group .character-box .text-box .title{
    font-weight: 600;
}
#intro .graphics-group .character-box .text-box .sub-title{
    color: var(--color-text-secondary);
    font-size: 14px;
}
#intro .graphics-group .character-box .text-box .link{
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
}
#intro .graphics-group .character-box .text-box .link span{
    color: var(--color-light-blue);
}
#intro .graphics-group .videos-group{
    width: 40%;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    border-radius: 12px;
}
#intro .graphics-group .videos-group .item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
#intro .graphics-group .videos-group .item::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .2;
    position: absolute;
    z-index: 0;
}
#intro .graphics-group .videos-group .item.i1{
    background-image: url('/assets/video-cover1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#intro .graphics-group .videos-group .item.i2{
    background-image: url('/assets/video-cover2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#intro .graphics-group .videos-group .item.i3{
    background-image: url('/assets/video-cover3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#intro .graphics-group .videos-group .item .play-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background-color: var(--color-primary);
    color: #fff;
    position: relative;
    z-index: 1;
}
#intro .graphics-group .videos-group .item .play-button i{
    transform: translateX(2px);
}
@media screen and (max-width: 960px){
    #intro{
        height: auto;
        padding: 70px 0;
    }
    #intro .container{
        flex-direction: column;
    }
    #intro .graphics-group{
        width: 600px;
        height: 535px;
    }
}
@media screen and (max-width: 640px){
    #intro .text-group{
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    #intro .text-group h1.title{
        text-align: center;
        font-size: 32px;
    }
    #intro .text-group p.sub-title{
        text-align: center;
        font-size: 16px;
    }
    #intro .text-group .button-wrap{
        justify-content: center;
    }
    #intro .graphics-group{
        width: 100%;
        height: 90vw;
    }
}
@media screen and (max-width: 480px){
    #intro {
        padding: 50px 0;
    }
    #intro .text-group h1.title{
        font-size: 26px;
    }
    #intro .text-group p.sub-title{
        font-size: 14px;
        line-height: 22px;
    }
    #intro .text-group .button-wrap{
        gap: 10px;
    }
    #intro .text-group .button-wrap .button{
        font-size: 12px;
    }
    #intro .graphics-group .character-box .text-box .link{
        font-size: 14px;
    }
}
/*  ==========  END INTRO SECTION  ==========  */





/*  ==========  ABOUT SECTION  ==========  */
#about .about-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
#about .about-inner .item{
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, rgb(255, 255, 255), rgba(241, 245, 249, .9));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}
#about .about-inner .item:last-child{
    grid-column: 3/4;
    grid-row: 1/3;
}
#about .about-inner .typography{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 40px;
    box-sizing: border-box;
}
#about .about-inner .typography .title{
    display: flex;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}
#about .about-inner .typography .title span{
    color: var(--color-text-secondary);
}
#about .about-inner .typography .sub-title{
    color: var(--color-text-secondary);
}
#about .about-inner .item .image{
    padding: 40px;
    padding-top: 0;
    box-sizing: border-box;
}
#about .about-inner .item:last-child .image{
    height: 100%;
    padding: 0;
    padding-left: 40px;
}
#about .about-inner .item:last-child .image .wrap{
    height: inherit;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 12px 0 0 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}
@media screen and (max-width: 960px){
    #about .about-inner{
        grid-template-columns: 1fr 1fr;
    }
    #about .about-inner .item:last-child{
        grid-column: 1/3;
        grid-row: unset;
    }
}
@media screen and (max-width: 640px){
    #about .about-inner .typography{
        padding: 20px;
    }
    #about .about-inner .typography .title{
        font-size: 16px;
    }
    #about .about-inner .typography .sub-title{
        font-size: 14px;
    }
    #about .about-inner .item .image{
        padding: 20px;
        padding-top: 0;
    }
    #about .about-inner .item .image img{
        width: 45px;
        height: 45px;
    }
    #about .about-inner .item:last-child .image img{
        width: 100%;
        height: 250px;
        object-fit: contain;
    }
}
@media screen and (max-width: 480px){
    #about .about-inner{
        display: flex;
        flex-direction: column;
    }
    #about .about-inner .typography{
        padding: 32px;
    }
    #about .about-inner .item .image{
        padding: 32px;
        padding-top: 0;
    }
}
/*  ==========  END ABOUT SECTION  ==========  */





/* ========== REVIEWS STYLES ========== */
#reviews .reviews-inner{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
#reviews .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#reviews .item .image{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
#reviews .item .image img{
    max-height: 358px;
    border-radius: 32px;
}
#reviews .item .image .play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background-color: var(--color-primary);
    color: #fff;
}
#reviews .item .image .play-button i{
    transform: translateX(2px);
}
#reviews .item .text-block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#reviews .item .text-block .title{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}
#reviews .item .text-block .title span{
    padding: 4px 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--color-primary);
    background-color: rgba(219, 44, 29, .2);
    border-radius: 100px;
}
#reviews .item .text-block .description{
    font-size: 16px;
    color: var(--color-text-secondary)
}
@media screen and (max-width: 960px){
    #reviews .reviews-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px){
    #reviews .reviews-inner{
        gap: 16px;
    }
    #reviews .item .text-block .title{
        font-size: 16px;
    }
    #reviews .item .text-block .description{
        font-size: 14px;
    }
}
/* ========== END REVIEWS STYLES ========== */






/*  ==========  FEATURES STYLES  ==========  */
#features .features-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    justify-content: space-between;
}
#features .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#features .item .icon svg{
    width: 64px;
    height: 64px;
    color: var(--color-primary);
}
#features .item .title{
    font-size: 20px;
    font-weight: 600;
}
#features .item .description{
    color: var(--color-text-secondary);
    line-height: 1.5;
}
@media screen and (max-width: 960px){
    #features .features-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 640px){
    #features .features-inner{
        gap: 45px;
    }
    #features .item .icon svg{
        width: 48px;
        height: 48px;
    }
    #features .item .title{
        font-size: 16px;
    }
    #features .item .description{
        font-size: 14px;
    }
}
@media screen and (max-width: 480px){
    #features .features-inner{
        justify-content: center;
        grid-template-columns: .8fr;
    }
}
/*  ==========  END FEATURES STYLES  ==========  */





/*  ==========  MOBILE APP SECTION  ==========  */
#mobile-app .mobile-app-inner{
    display: grid;
    grid-template-columns: 2fr 1fr;
    color: #fff;
    background-color: #191925;
    border-radius: 22px;
}
#mobile-app .content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px;
    box-sizing: border-box;
}
#mobile-app .text-content{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#mobile-app .text-content .item{
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 16px;
}
#mobile-app .text-content .item .icon{
    width: 32px;
    height: 32px;
}
#mobile-app .text-content .item .icon svg{
    width: 32px;
    height: 32px;
}
#mobile-app .text-content .item .value{
    font-size: 14px;
    line-height: 1.5;
}
#mobile-app .button-wrap .button{
    float: left;
    font-size: 20px;
    font-weight: 600;
}
#mobile-app .image{
    background-image: url("/assets/mobile-app-mockup.png");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center 50px;
}
@media screen and (max-width: 960px){
    #mobile-app .content{
        padding: 32px;
    }
}
@media screen and (max-width: 640px){
    #mobile-app .mobile-app-inner{
        display: flex;
        flex-direction: column-reverse;
    }
    #mobile-app .text-content{
        justify-content: center;
    }
    #mobile-app .button-wrap{
        display: flex;
        justify-content: center;
    }
    #mobile-app .button-wrap .button{
        width: 100%;
        height: 50px;
    }
    #mobile-app .image{
        width: 100%;
        height: 300px;
        background-size: 50%;
    }
}
/*  ==========  END MOBILE APP SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */