html, body{
    /* overscroll-behavior: none; */
}
.banner{
    width: 100%;
    height: 100vh;
    background-color: var(--blue-one);
    position: relative;
}

.banner::after{
    content: '';
    height: 30vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, var(--blue-one));
}

.banner .text-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

video{
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: all ease 1s;
    object-fit: cover;
}
video.fadeOut{
    opacity: 0;
    transition: all ease 1s;
}

.banner .text-container .text{
    color: white;
    font-size: 55px;
    opacity: 0;
    animation: 3s opacityAnimation forwards;
    animation-delay: .5s;
    position: relative;
}

.banner .text-container .subtext{
    width: 35%;
    font-family: 'Red Hat';
    opacity: 0;
    animation: slideInBottom 1s forwards;
    animation-delay: 2s;
    margin-bottom: 20px;
    position: relative;
}
.banner .text-container .line{
    height: 0;
    width: 1px;
    background-color: var(--green-two);
    margin: auto;
    max-height: 15vh;
    transform-origin: top;
    width: 1px;
    transition: all ease 3s;
    display: none;
    animation: heightAnimation 3s forwards 3s;
}

section .right img{
    height: 100%;
    width: 80%;
    object-fit: cover;
}

section .text, section.specialize .left .areas .area{
    font-family: 'Red Hat SemiBold';
}

section.partners .right .text-content, section.specialize .left .description{
    font-family: 'Red Hat';
}

section.specialize .left .areas.desktop{
    display: block;
}
section.specialize .left .areas.mobile{
    display: none;
    height: auto;
}

section.specialize .left .areas .area{
    font-size: 50px;
    line-height: 50px;
    margin-top: 20px;
    transition: all ease 1s;
}
section.specialize .left .areas .area .title{
    font-size: 50px;
    cursor: pointer;
    line-height: 55px;
    margin: 20px 0;
    transition: all ease .5s;
}
section.specialize .left .areas.mobile .area .title{
    font-weight: 100;
}
section.specialize .left .areas .area:nth-child(1) .title{
    color: rgba(255, 255, 255, 0.5);
}
section.specialize .left .areas .area:nth-child(2) .title{
    color: rgba(255, 255, 255, 0.4);
}
section.specialize .left .areas .area:nth-child(3) .title{
    color: rgba(255, 255, 255, 0.3);
}
section.specialize .left .areas .area:nth-child(4) .title{
    color: rgba(255, 255, 255, 0.2);
}
section.specialize .left .areas .area:nth-child(5) .title{
    color: rgba(255, 255, 255, 0.1);
}
section.specialize .left .areas .area.active .title,
section.specialize .left .areas .area:hover .title{
    color: rgba(255, 255, 255, 1) !important;
    transition: all ease .5s;
}
section.specialize .left .areas.mobile .area.active .title{
    transition: all ease 2s;
}
section.specialize .areas .area .description{
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    opacity: 0;
    transition: all ease 1s;
    overflow: hidden;
    line-height: 0;
    padding: 10px 20px;
    height: auto;
    margin: 20px 0;
}
section.specialize .areas .area .description::before{
    content: '';
    height: 0;
    width: 2px;
    background-color: #2CE8A6;
    position: absolute;
    left: 0;
    top: 0;
    transition: all ease 1s;
}
section.specialize .areas .area.active .description, section.specialize .areas.mobile .area .description{
    line-height: 25px;
    opacity: 1;
}
section.specialize .areas .area.active .description::before{
    height: 100%;
    width: 2px;
    transition: all ease 1s;
}

section.specialize .left .text, section.specialize .left .areas{
    width: 80%;
}

section.specialize .container .right{
    position: relative;
    height: 100%;
    padding-top: calc(7% + 80px);
}

.cube-container{
    height: 35vw;
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.cube{
    height: 22.5vw;
    width: 22.5vw;
    transform-style: preserve-3d;
    transform: rotateX(35deg) rotateY(45deg);
    transition: all ease 1s;
}
.cube .side{
    height: 22.5vw;
    width: 22.5vw;
    position: absolute;
    text-align: center;
    color: white;
    border: 1.5px solid var(--green-two);
    box-sizing: border-box;
}
.cube .side#front,
.cube .side#back,
.cube .side#right,
.cube .side#left{
    background: linear-gradient(to top, var(--green-three), transparent 60%);
}
.cube .side#front{
    transform: translateZ(11.25vw);
}
.cube .side#back{
    transform: translateZ(-11.25vw);
}
.cube .side#left{
    right: 50%;
    transform: rotateY(-90deg);
}
.cube .side#right{
    left: 50%;
    transform: rotateY(90deg);
}
.cube .side#top{
    bottom: 50%;
    transform: rotateX(90deg);
}
.cube .side#bottom{
    top: 50%;
    transform: rotateX(-90deg);
}

section.specialize .right .icons{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
section.specialize .right .icons img{
    opacity: 0;
    transform: translateY(60px);
    transition: all ease 1s;
}
section.specialize .right .icons img.active{
    transform: translateX(0);
    opacity: 1;
    transition: all ease 1s;
}

section.specialize .right .icons img{
    width: 80px;
    height: 80px;
    top: 5%;
    right: calc(50% - 40px);
    object-fit: contain;
    position: absolute;
}

section.values .left{
    position: relative;
    height: 60vh;
    padding-top: 10vh;
}
section.values .texts-slideshow{
    position: relative;
}
section.values .texts-slideshow .text{
    font-size: 50px;
}
section.values .texts-slideshow .slide{
    transition: all ease 1s;
    display: none;
}
section.values .texts-slideshow .slide.active{
    display: block;
    animation-delay: .5s;
    animation: slideInBottom 1s forwards;
    transition: all ease 1.5s;
}

section.values .texts-slideshow .slide .list-text{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

section.values .slides-control{
    margin-bottom: 20px;
    cursor: pointer;
    transition: all ease .5s;
}
section.values .slides-control i{
    color: white;
    font-size: 10px;
    margin: 0 2px;
    transition: all ease .5s;
}
section.values .slides-control i.active, section.values .slides-control i:hover{
    color: var(--green-two);
    font-size: 10px;
    transition: all ease .5s;
}

section.values .list-text{
    margin: 15px 0;
}
section.values .list-text i{
    padding: 10px;
    color: white;
    margin-right: 20px;
    background: linear-gradient(to top, var(--green-two), transparent);
}

section.values .image-container{
    height: 60vh;
    position: relative;
}
section.values .image-container .image{
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: all ease .5s;
}
section.values .image-container .image.active{
    opacity: 1;
    transition: all ease .5s;
}
section.values .image-container .image::after{
    content: '';
    height: 2px;
    width: 100%;
    background-color: var(--green-two);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease 0s;
    transform-origin: left;
    z-index: 999;
}
section.values .image-container .image.active::after{
    animation: animateWidth linear 5s forwards;
}
section.values .image-container .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.partners{
    height: 100vh;
    position: relative;
}

section.partners .right, section.partners .left{
    height: 100%;
}

section.partners .right .text-content{
    font-size: 17px;
    width: 80%;
    margin-bottom: 10px;
}
section.partners .right .text{
    font-size: 50px;
    font-weight: normal;
}
.partners-logos::before{
    content: '';
    height: 10vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--blue-one), transparent);
    z-index: 99;
}
.partners-logos::after{
    content: '';
    height: 10vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to top, var(--blue-one), transparent);
    z-index: 99;
}
.partners-logos .slide-container{
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}
.partners-logos .slide{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transition: all .2s;
}

.partners-logos .slide .logo{
    height: 16vw;
    width: 16vw;
    margin: 7px;
    background-color: var(--dark-two);
    border: 1px solid var(--green-two);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partners-logos .slide .logo img{
    height: 60%;
    width: 60%;
    object-fit: contain;
}

section.more-than-talk p.text{
    margin-bottom: 40px;
}

section.more-than-talk .right .fig{
    height: 100vh;
    width: 100vh;
    margin-left: 30%;
    overflow: hidden;
}

section.more-than-talk.bg-radial-gradient::after, section.get-in-touch.bg-radial-gradient::after{
    height: 100%;
    width: 50vw;
}

.recent-accolades{
    padding: 0;
}
.recent-accolades .cards{
    position: relative;
    padding: 70px 0;
}
.recent-accolades .cards .card{
    height: 250px;
    width: 200px;
    border: 1px solid var(--green-two);
    border-radius: 10px;
    margin: 0 10px;
    padding: 10px;
}
.recent-accolades .cards .card .card-title{
    font-size: 16px;
}
.recent-accolades .cards .card .card-text{
    font-size: 20px;
    font-family: 'Red Hat Bold';
}
.recent-accolades .cards .card .card-logo{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.recent-accolades .subtexts{
    width: 100%;
}

.recent-accolades .subtexts .subtext{
    width: 200px;
    margin: 0 10px;
    padding: 10px;
}

@media screen and (max-width: 1500px) {
    .banner{
        min-height: 60vh;
    }
}

@media screen and (max-width: 500px){
    section.specialize .left .areas .area .title{
        font-size: 30px;
        line-height: 35px;
    }
}

@media screen and (max-width: 850px) {

    .banner{
        height: 90vh;
    }

    video{
        height: 90vh;
        width: 100%;
        object-fit: cover;
    }

    .banner .text-container{
        text-align: center;
        justify-content: space-between;
        align-items: center;
    }
    .banner .text-container .text{
        color: white;
        padding: 0 20%;
        margin-top: 0;
        font-size: 40px;
    }
    
    .banner .text-container .subtext{
        width: 100%;
        font-family: 'Red Hat';
        margin: 10px 0;
        font-size: 16px;
        padding: 10px 10%;
    }
    .banner .text-container .line{
        display: block;
    }
    
    .banner .text-container .paradyme-button{
        opacity: 0;
        animation: slideInBottom 1s forwards;
        animation-delay: 2s;
        width: 80%;
        padding: 15px;
        font-size: 18px;
        margin-top: 20px;
    }
    .banner .text-container .paradyme-button:hover{
        width: 60%;
    }

    section.specialize .left{
        height: 75vh;
        position: relative;
    }
    .swiper, .swiper-wrapper{
        width: 100%;
    }

    section.specialize .left .areas .area .title{
        font-size: 40px;
        cursor: pointer;
        line-height: 45px;
        margin: 15px 0;
    }
    section.specialize .left .description{
        width: auto;
        padding: 20px;
    }
    section.specialize .left .areas.desktop,  section.specialize .right .icons{
        display: none;
    }
    section.specialize .left .areas.mobile{
        display: flex;
        flex-direction: row;
        gap: 30px;
        overflow-y: hidden;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: auto;
        height: auto;
        padding: 0 7vw;
        padding-top: 0;
        margin-top: 0;
        position: relative;
    }
    section.specialize .left .areas.mobile .description{
        margin: 0;
        padding: 0;
        height: auto;
        opacity: 1 !important;
    }
    section.specialize .container{
        height: auto;
        width: auto;
    }
    section.specialize .left .areas.mobile::-webkit-scrollbar{
        display: none;
    }

    section.specialize .left .areas.mobile .area{
        width: 70vw;
        flex: 0 0 auto;
        overflow: hidden;
        min-height: 40vh;
        margin: 0;
        padding: 20px;
        scroll-snap-align: center;
        background: linear-gradient(to top, var(--green-three), transparent);
        position: relative;
    }
    section.specialize .left .areas.mobile .area img{
        height: 60px;
        width: 60px;
    }

    section.specialize .left .areas.mobile .area .description::before{
        display: none;
    }

    section.specialize .left .areas .area .description, section.values .list-text{
        font-size: 16px;
    }
    
    section.specialize .container .right{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        padding-top: 0;
        opacity: .7;
        z-index: -1;
    }
    
    .cube-container{
        margin-top: 0;
        width: 100%;
        height: 20vh;
        position: absolute;
        bottom: 5vh;
    }
    .cube{
        height: 20vh;
        width: 20vh;
        position: absolute;
        left: calc(-10vh + 1px);
    }
    .cube .side{
        height: 20vh;
        width: 20vh;
    }
    .cube .side#front{
        transform: translateZ(10vh);
    }
    .cube .side#back{
        transform: translateZ(-10vh);
    }

    section.specialize .right .icons{
        top: 0;
    }
    
    section.values{
        height: auto;
    }
    section.values .left{
        min-height: 55vh;
        height: auto;
        justify-content: flex-start;
    }
    section.values .left .texts-slideshow{
        position: relative;
    }
    section.values .list-text{
        margin: 10px 0;
    }
    section.values .list-text i{
        padding: 5px;
    }
    section.values .texts-slideshow .text{
        font-size: 25px;
    }
    section.values .right{
        margin: 10px auto;
    }
    section.values .image-container{
        height: 40vh;
    }
    section.values .image-container .image.active::after{
        animation: animateWidth linear 4s forwards;
    }

    section.partners{
        height: auto;
        padding-bottom: 7vh;
    }
    
    section.partners .left{
        width: 100%;
    }
    section.partners .right{
        width: 100%;
    }
    .partners-logos::before{
        height: 100%;
        width: 10vh;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to right, var(--blue-one), transparent);
        z-index: 99;
    }
    .partners-logos::after{
        height: 100%;
        width: 20vh;
        top: 0;
        right: 0;
        background: linear-gradient(to left, var(--blue-one), transparent);
    }
    .partners-logos .slide-container{
        height: auto;
        display: flex;
        width: 100%;
        padding: 0 5px;
    }
    .partners-logos .slide{
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        flex-wrap: nowrap;
        width: auto;
    }
    .partners-logos .slide .logo{
        margin: 5px;
        height: 35vw;
        width: 35vw;
    }

    section.partners .right .text-content{
        font-size: 17px;
        width: 100%;
    }
    section.partners .right .text{
        font-size: 30px;
    }

    section.more-than-talk{
        height: auto;
    }
    section.more-than-talk .paradyme-button{
        width: 100%;
        display: block;
    }

    section.innovative{
        height: 100vh;
    }

    section.more-than-talk p.text{
        font-size: 30px;
        width: 100%;
    }
    section.more-than-talk .right .fig{
        height: 50vh;
        width: 50vh;
        margin-left: 50%;
    }
}

@media screen and (max-width: 500px){
    section.specialize .left .areas .area .title{
        font-size: 30px;
        line-height: 32px;
        margin: 10px 0;
    }
    section.specialize .left .areas .area .description{
        /* font-size: 14px; */
    }
}
