.intro-section .download-container{
    right: 100px;
    bottom: 100px;
    border: none;
    margin-left: auto;
    background-color: var(--cream);
    box-shadow: 0 2px 8px -5px var(--primary-color);
}

/* Section Switcher*/

.section-switcher{
    width: fit-content;
    margin: 0 auto 20px;
    min-width: 300px;
    border-radius: 40px;
    overflow: hidden;
    background-color: #EAF4EF;
    border: 1px solid var(--border-color);
    display: flex;
    padding: 7px;
}
.section-switcher .switch{
    font-weight: 400;
    color: var(--primary-color);
    padding: 7px 30px;
}
.section-switcher .switch.active{
    font-weight: bold;
    background-color: var(--highlight-color);
    border-radius: 40px;
    letter-spacing: .5px;
}



/* Cards */

.card-section-wrapper{
    width: 100%;
    height: fit-content;
}
.card-container{
    display: flex;
    box-sizing: content-box;
    padding: 60px;
}
.card-item{
    position: relative;
    min-width: 27%;
    height: fit-content;
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: end;
    cursor: pointer;
    will-change: transform;
    transition: 250ms all ease-out !important;
}
.card-item-content{

}
.card-item:hover{
    z-index: 20;
}
.card-item:first-child{
    aspect-ratio: 41 / 50;
}
.card-item:nth-child(2){
    aspect-ratio: 770 / 565;
}
.card-item:nth-child(3){
    margin: auto 0;
    aspect-ratio: 410 / 344
}
.card-item:not(:hover):nth-child(1){
    transform: rotate(5deg) translateY(40px) !important;
}
.card-item:not(:hover):nth-child(2){
    transform: rotate(-4deg) translateY(40px) !important;
}
.card-item:not(:hover):nth-child(3){
    transform: rotate(6deg) translateY(40px) !important;
}
.card-item.main{
    min-width: 50%;
}
.card-text{
    position: relative;
    width: 100%;
    z-index: 1;
    color: var(--white);
    line-height: 1;
}
.card-text.mark{
    padding: 0 0 0 20px !important;
    background-color: transparent !important;
}
.card-text.mark:after{
    content: "";
    width: 125%;
    height: 280%;
    position: absolute;
    top: -110%;
    left: -10%;
    background-image: url('../img/icons/card-mark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
.card-text.mark .small{
    margin-left: 15px;
}
.card-text .small{
    font-size: .9rem;
}
.card-text .text{
    font-size: 1.5rem;
    font-weight: bold;
}




/* Transform Scroller */

.transform-scroller-section{
    position: relative;
}
.transform-scroller-section .filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--highlight-dark-color);
    pointer-events: none;
    box-shadow: inset 0 0 10vw rgba(0, 0, 0, .1);
    opacity: 0;
    z-index: 1;
    will-change: opacity;
}
.transform-scroller-section .bg-img{
    overflow: hidden;
}
.transform-scroller-section .bg-img img{
    filter: brightness(70%) sepia(0.2) contrast(0.8);
    transform: scale(1.5);
    width: 100%;
    height: 100vh;
}
.transform-scroller-section .intro{
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 0;
}
.transform-scroller-section .intro .section-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.transform-scroller-section .intro .title{
    margin: 0 auto;
    line-height: 1.1;
    text-shadow: 0 0 50px rgba(0, 0, 0, .5);
    position: relative;
    z-index: 5;
    will-change: transform;
}
.transform-scroller-section .intro span{
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: var(--white);
    will-change: transform;
}
.transform-scroller-section .place-indicator-wrapper{
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 600px;
    transform:  translate(-50%, -50%);
    z-index: 1;
}
.transform-scroller-section .place-indicator{
    background-color: rgba(255, 255, 255, .3);
    border: 3px dashed white;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 100px 60px;
    transform: scale(.9);
    opacity: .25;
}
.app-item{
    position: absolute;
    top: 20%;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, .25);
    width: 60px;
    height: 60px;
}
.app-item .app-img,
.app-item .app-img img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.transform-scroller-section .scroller-content{
    position: relative;
    display: flex;
    overflow-x: clip;
    color: white;
    gap: 90px;
    z-index: 1;
    padding: 0 0 80px;
}
.scroller-content > *{
    width: 100%;
}
.transform-scroller-section .phone{
    background-color: rgb(57, 63, 60);
    width: 300px;
    min-width: 300px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: sticky;
    top: calc((100vh - 600px) / 2);
    margin-bottom: calc((100vh - 600px - 160px) / 2);
}
.transform-scroller-section .phone img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.scroller-content .left-side,
.scroller-content .right-side{
    display: flex;
    flex-direction: column;
    gap: 300px;
    overflow: visible;
}
.scroller-content .left-side{
    padding-left: 60px;
}
.scroller-content .right-side{
    margin-top: 300px;
    padding-right: 60px;
}
.scroller-content .scroller-item{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.2rem;
    will-change: transform;
    font-weight: bold;
    width: 70%;
}
.scroller-content .left-side .scroller-item{
    text-align: end;
    margin-left: auto;
}
.scroller-content .left-side .scroller-item-title{
    margin-left: auto;
}
.scroller-item-title{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    max-width: 400px;
}
.scroller-item svg{
    filter: brightness(1.1);
}
.scroller-item svg *{
    fill: var(--highlight-color);
}
.scroller-item-description{
    color: #a4c5bb;
}


/* Slider Container */

.slider-container{
    margin-top: 40px;
}
.slider-nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.slider-nav-item{
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 5px;
    gap: 10px;
    border-radius: 15px;
    width: 100%;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
@keyframes sliderNavIconAnim{
    0% {transform: scale(1);}
    45% {transform: scale(1.05);}
    75% {transform: scale(.95);}
    100% {transform: scale(1);}
}
.slider-nav-item .slider-nav-icon{
    border-radius: 10px;
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: var(--highlight-color);
}
.slider-nav-item.active .slider-nav-icon{
    background-color: var(--white);
    animation: sliderNavIconAnim 500ms;
}
.slider-nav-icon svg{
    width: 100%;
    height: 100%;
}
@keyframes autoplayAnim {
    0% {width: 10%;}
    90% {width: 101%;}
}
.slider-nav-item.active{
    border-color: var(--highlight-color);
}
.slider-nav-item.active:before{
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(to right, var(--highlight-color), #77eac4);
    z-index: -1;
    animation: autoplayAnim 5s infinite ease-out;
    border-radius: 5px;
}
.slider-content{
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    overflow: hidden;
}
.slider-content .content{
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    position: relative;
    overflow: visible
}
.slider-content .text-side h3{
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}
.slider-content .text-side span{
    font-size: 1.1rem;
    max-width: 550px;
    margin-top: 20px;
    display: block;
}
.slider-content .slider-img{
    background-color: var(--border-color);
    width: 90%;
    max-width: 50%;
    min-height: fit-content;
    aspect-ratio: 10 / 7;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}
.slider-content .slider-img > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-content .slider-img:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--highlight-color);
    opacity: .4;
}
.slider-content .slider-img .logo-container{
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    width: 100%;
    height: fit-content;
    transform: translateX(-50%);
    z-index: 1;
    gap: 10px 20px;
    position: relative;
    justify-content: center;
}c
.slider-content .slider-img .logo-container img{
    width: 30%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.slider-content .slider-img > img{
    object-fit: cover;
    height: 100%;
}
.floating-item{
    display: flex;
    position: absolute;
    will-change: transform;
    right: 0;
}
.floating-card{
    height: fit-content;
    z-index: 10;
    opacity: 1;
    top: 0;
    left: 50%;
    will-change: transform;
    transform-origin: 50% 50% !important;
    transform: scale(.25) /*perspective(1900px) rotateY(43deg) rotateX(-30deg) rotateZ(4deg);*/
}


/* Reviews */

.reviews-section{
    overflow: hidden;
}
.reviews-swiper{
    display: flex;
    gap: 30px;
}
.review-item{
    display: flex;
    position: relative;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
}
.review-item:hover{
    border-color: #8f9aa5;
}
.owl-item:has(.review-item){
    transition: 375ms transform cubic-bezier(.55,.15,.35,1);
}
.owl-item:has(.review-item:hover){
    transform: translateY(-10px);
}
.review-item .avatar-img{
    width: 70px;
    height: 70px;
    background-color: var(--border-color);
    border-radius: 100%;
    margin-bottom: 20px;
}
.review-item .avatar-img img{
    width: 100%;
    height: 100%;
}
.review-item .review-text{
    text-transform: capitalize;
}
.review-item .review-info{
    display: flex;
    margin-top: auto;
    justify-content: space-between;
}
.review-item .review-date,
.review-item .review-author{
    text-transform: capitalize;
}
.review-item .image-container{
    width: 100px !important;
    display: flex;
    align-items: end;
}
.review-author{
    text-transform: capitalize;
}
.review-item .star-container{
    padding: 20px 0;
}



/* Download Section */

.download-section{
    position: relative;
    margin: 40px 0;
    background-color: var(--primary-foreground);
}
.download-section .section-wrapper{
    padding-top: 200px;
    padding-bottom: 80px;
    width: 70%;
    display: flex;
    margin-left: 0;
}
.download-section .card-spacer{
    width: 400;
    min-width: 400px;
}
.download-section .medium-title{
    margin-left: 10%;
    margin-bottom: 40px;
}
.download-section .text-side{
    display: flex;
    width: 70%;
    flex-direction: column;
    gap: 40px;
    margin-left: 10%;
}
.download-section .gray-text{
    font-size: 1.25rem;
    min-width: 200px;
    white-space: break-spaces;
}
.cari-phone{
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40vw;
    right: 0;
    height: calc(100% + 160px);
}
.download-container{
    display: flex;
    align-items: center;
    gap: 20px;
    height: 70px;
    padding: 10px 50px;
    border-radius: 15px;
    width: fit-content;
    background-color: var(--white);
    border: 1px dashed var(--primary-color);
}
.download-container a{
    display: block;
    min-width: 100px;
    max-width: calc(50% - 10px);
    transition: 250ms;
}
.download-container a:hover{
    position: relative;
    animation: 500ms button-hover ease-in;
    transform: scale(1.1);
}
.download-container a:hover:after{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    z-index: -1;
}



/* Faq */

.faq .content{
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.faq-container{
    width: 66.6%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.faq-item{
    border-radius: 20px;
    width: calc(50% - 20px / 2);
    transition: 50ms ease-out;
}
.faq-item:hover{
    border-color: #8f9aa5;
}
.faq-item h4{
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.faq-item a{
    margin-top: 20px;
    position: relative;
    display: block;
    width: fit-content;
    font-weight: bold;
    font-size: 1.1rem;
}
.faq-item span{
    display: block;
    margin: 30px 0;
}
.faq-item a:after{
    content: "";
    box-sizing: content-box;
    position: absolute;
    display: block;
    padding-left: 10px;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 15px;
    background-image: url('../img/icons/link-arrow.svg');
    filter: brightness(1);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 375ms all cubic-bezier(.5,.1,.29,1.44);
}
.faq-item:hover a:after{
    padding-left: 30px;
}
.faq-item, .article-router{
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
}
.article-router{
    border-radius: 20px;
    padding-left: 0;
    padding-right: 0;
}
.faq-item a, .article-router-top a{
    color: var(--highlight-color);
    transition: 50ms color ease-out;
}
.faq-item a:hover, .article-router-top a:hover{
    color: var(--highlight-light-color);
}
.article-router-top a, .article-router-title{
    font-weight: bold;
    font-size: 1.25rem;
}
.article-router-title{
    display: block;
    margin: 0 20px 30px 0;
}
.article-router{
    width: 33.3%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.article-router-top{
    padding: 0 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: start;
    justify-content: space-between
}
.article-router .article-item{
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: 100ms;
    transition-property: color, transform, padding;
    transition: 250ms all cubic-bezier(.5,.1,.29,1.44), 250ms padding cubic-bezier(.83,.18,.08,.86);
    white-space: nowrap;
    text-overflow: ellipsis;
}
.article-item:hover{
    color: white;
    padding-left: 30px;
    padding-right: 10px;
}
.article-item:after{
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    padding: 0 20px;
    transition: 250ms all cubic-bezier(.5,.1,.29,1.44);
    background-color: transparent;
    z-index: -1;
}
.article-item:hover:after{
    background-color: var(--primary-dark-color);
}
/*
.article-item:hover{
    background-color: white;
    transform: translateY(-5px) rotatex(10deg);
    border-radius: 12px 12px 10px 10px;
    box-shadow: 0 5px var(--border-color), 0 6px 23px -17px black;
    border-color: var(--border-color);
    transition: 250ms;
    transition-property: background, color, transform, box-shadow, border
}
.article-item:active{
    transition: 250ms;
    transition-property: background, color, transform, box-shadow, border;
    transform: translateY(0px) rotatex(7deg);
    box-shadow: none;
}
*/