@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --font-family: 'Montserrat';
}

body {
    background: linear-gradient(81.22deg, #00B2FF -38.22%, #000000 32.12%, #000000 34.13%, #000000 72.1%, #41FFEC 141.12%);
    background-attachment: fixed;
}

h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 45px;
    line-height: 55px;
    background: linear-gradient(90deg, #FFFFFF 0%, #DADADA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(90deg, #00B2FF 0%, #41FFEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    background: linear-gradient(90deg, #00B2FF 0%, #41FFEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h6 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: #DADADA;
    margin-bottom: 0;
}

p.description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #DADADA;
    margin: 20px 0;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1160px;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.hero-section p {
    max-width: 460px;
}

.hero-section .hero-slide {
    display: flex;
    align-items: center;
}

.hero-section .hero-btn {
    position: relative;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.hero-section .hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(90deg, #00B2FF, #41FFEC);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.hero-section .hero-image {
    position: relative;
    text-align: right;
}

.hero-section .hero-image img {
    height: 600px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.05);
}

.hero-section .hero-image img {
    position: relative;
    z-index: 1;
    bottom: -20px;
}

.hero-section .swiper {
    position: relative;
}

.hero-section .swiper-pagination {
    position: absolute !important;
    /* right: 40px !important; */
    right: 0px !important;
    left: auto !important;
    top: 50%;
    /* transform: translateY(-50%); */
    width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-section .swiper-pagination-bullet {
    width: 14px;
    height: 23px;
    border-radius: 0px 5px 0px 5px;
    background: #00574F;
    transition: 0.3s;
}

.hero-section .swiper-pagination-bullet-active {
    background: #00B2FF;
}

.hero-marquee {
    position: relative;
    width: 100%;
    transform: rotate(1.93deg);
    margin-bottom: 30px;
}

.marquee-wrap {
    position: relative;
    margin: 0 auto;
    width: calc(100% + 160px);
    left: -80px;
    background: linear-gradient(270deg, #006D9C 0%, #006B61 100%);
}

.marquee-track {
    display: flex;
    min-width: max-content;
    animation: marqueeScroll 18s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-width: max-content;
}

.marquee-content:first-child {
    padding: 18px 90px;
}

.marquee-content:last-child {
    padding: 18px 60px;
}

.marquee-content span {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}

.marquee-content span::after {
    content: "";
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.marquee-content span:last-child::after {
    /* display: none; */
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.our-squad {
    margin: 80px 0 0;
}

/* .our-squad .container {
    padding: 0 80px;
} */

.our-squad .details {
    display: flex;
    align-items: center;
    gap: 80px;
}

.our-squad .details p span {
    color: #00B2FF;
    text-transform: uppercase;
}

.superpowers {
    height: 300vh;
    position: relative;
}

.superpowers .sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
}

.superpowers .super-inner {
    height: 100%;
}

.superpowers .super-heading {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.superpowers .images,
.superpowers .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
}

.superpowers .img {
    position: absolute;
    top: 50%;
    width: 280px;
    transition: transform 1s ease-in-out;
}

.superpowers .img.left {
    left: 49.5%;
    transform: translate(-100%, -50%);
}

.superpowers .img.left img {
    margin-right: 10px;
}

.superpowers .img.right {
    left: 50.5%;
    transform: translate(0%, -50%);
}

.superpowers .img.right img {
    margin-left: 10px;
}

.superpowers .img img {
    width: 100%;
    display: block;
}

.superpowers .center-content {
    top: 25%;
    transform: translate(-50%, calc(-50% + 60px));
    width: 400px;
    text-align: center;
    opacity: 0;
}

.superpowers .content-block {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0s;
    pointer-events: none;
}

.superpowers .content-block.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0s;
}

.superpowers .content-block .superpowers-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
}

.superpowers .content-block:first-child .superpowers-title {
    background: linear-gradient(90deg, #FF0000 0%, #FF5D9B 67.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.superpowers .content-block:nth-child(2) .superpowers-title {
    background: linear-gradient(90deg, #F15B25 0%, #FFC000 67.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.superpowers .content-block:nth-child(3) .superpowers-title {
    background: linear-gradient(90deg, #00BC61 0%, #00B2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.superpowers .content-block:last-child .superpowers-title {
    background: linear-gradient(90deg, #FFC000 0%, #41FFEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.superpowers .superpowers-cate {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #DADADA;
}

.superpowers .superpowers-button {
    position: relative;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.superpowers .superpowers-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1.5px;
    z-index: -1;
}

.superpowers .content-block:first-child .superpowers-button::before {
    background: linear-gradient(90deg, #FF8ABD, #EF005C);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.superpowers .content-block:nth-child(2) .superpowers-button::before {
    background: linear-gradient(90deg, #F5CF04, #F15B25);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.superpowers .content-block:nth-child(3) .superpowers-button::before {
    background: linear-gradient(90deg, #00B2FF, #00964E);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.superpowers .content-block:last-child .superpowers-button::before {
    background: linear-gradient(90deg, #41FFEC, #FFC000);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.work-section {
    height: 400vh;
}

.work-section .sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.work-section .wrapper {
    width: 100%;
    position: relative;
}

/* LEFT */
.work-section .left {
    width: 100%;
    height: 550px;
    background: #CB014E;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.work-section .sticky:nth-child(2) .left {
    background: #FF4000;
}

.work-section .sticky:nth-child(3) .left {
    background: #00B2FF;
}

.work-section .left h2 {
    font-size: 30px;
    line-height: 1.2;
    max-width: 180px;
    background: linear-gradient(90deg, #FFFFFF 0%, #DADADA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.work-section .left p {
    opacity: 0.85;
    max-width: 31%;
    margin: 0;
    font-size: 14px;
    margin-top: -26px;
}

.work-section .btn-wrap {
    width: 100%;
    text-align: right;
}

.work-section .btn {
    width: fit-content;
    padding: 6px 25px;
    background: transparent;
    border: 1px solid #FFFFFF !important;
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

.work-section .right {
    position: absolute;
    top: 0;
    right: -1px;
    width: 80%;
    z-index: 9;
}

.work-section .mask {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.work-section .slide-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-section .mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-section .cards {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 9;
}

.work-section .sticky:nth-child(2) .cards {
    grid-template-columns: none;
}

.work-section .card {
    height: 120px;
    background: transparent;
    border: 1px solid #595959;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-section .sticky:nth-child(2) .card {
    border: none;
    height: auto;
}

.work-section .sticky:nth-child(3) .card {
    border: none;
    height: auto;
}

.work-section .card img {
    max-width: 200px;
    max-height: 50px;
    object-fit: contain;
    transform: translateY(0px) !important;
}

.work-section .sticky:nth-child(2) .card img {
    max-width: 100%;
    max-height: 85%;
}

.work-section .sticky:nth-child(3) .card img {
    max-width: 100%;
    max-height: 100%;
}

@media(max-width:991px) {
    .work-section .left {
        height: auto;
    }

    .work-section .btn-wrap {
        text-align: left;
    }

    .work-section .right {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .work-section .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.voices-section {
    margin: 00px 0 50px;
    color: #fff;
}

/* .voices-section .container {
    padding: 0 80px;
} */

.voices-section .voices-heading h2 {
    color: #00cfff;
    font-size: 32px;
}

.voices-section .voices-wrapper {
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 40px;
    background: linear-gradient(180deg, #006D9C 0%, #006B61 100%);
    border-radius: 25px;
}

.voices-section .voices-image {
    position: relative;
    width: 50%;
}

.voices-section .voices-image img {
    width: 100%;
}

.voices-section .voices-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 345px;
    height: 413px;
    pointer-events: none;
    border: 2px solid #41FFEC;
    border-radius: 25px;
}

.voices-section .name-tag {
    position: absolute;
    bottom: 135px;
    left: 107px;
    background: linear-gradient(97.35deg, #0098CF 10.6%, #00964E 103.04%);
    border-radius: 0px 25px;
    padding: 8px 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.voices-section .voices-card {
    width: 50%;
    padding-right: 50px;
}

.voices-section .voices-card h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.voices-section .author {
    margin-top: 10px;
    display: inline-block;
    border: 1px solid #41FFEC;
    border-radius: 60px;
    padding: 8px 14px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.voices-section .author span {
    font-weight: 600;
}

.voices-section .avatar-group {
    display: flex;
    margin-top: 50px;
}

.voices-section .avatar-group img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    z-index: 99;
}

.voices-section .avatar-group img:nth-child(2) {
    margin-left: -40px;
    z-index: 9;
}

.voices-section .avatar-group img:nth-child(3) {
    margin-left: -40px;
    z-index: 1;
}

/* .cta-section .container {
    padding: 0 80px;
} */

.cta-section .cta-content {
    padding-left: 200px;
}

.cta-section .cta-content h2 {
    margin-bottom: 0;
}

.cta-section .cta-content p {
    max-width: 325px;
}

.cta-section .cta-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 262px;
    height: 50px;
    padding: 10px 22px;
    box-sizing: border-box;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.cta-section .cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 60px;
    background: linear-gradient(90deg, #00964E 0%, #0098CF 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.cta-section .cta-image {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
}

.cta-section .cta-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.clients-section {
    margin: 100px 0;
}

/* .clients-section .container {
    padding: 0 80px;
} */

.clients-section .clients-marquee-wrap {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
}

.clients-section .clients-marquee {
    overflow: hidden;
}

.clients-section .clients-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.clients-section .clients-marquee--left .clients-track {
    animation: marquee-left 18s linear infinite;
}

.clients-section .clients-marquee--right .clients-track {
    animation: marquee-right 18s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.clients-section .client-card {
    flex-shrink: 0;
    width: 220px;
    height: 188px;
    border: 1px solid #595959;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.clients-section .client-card img {
    max-width: 160px;
    max-height: 50px;
    opacity: 0.8;
    transition: 0.3s;
}

.clients-section .client-card:hover {
    border-color: #00B2FF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.clients-section .client-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .voices-section .name-tag {
        bottom: 80px;
        left: 63px;
    }

    .cta-section .cta-content {
        padding-left: 100px;
    }
}

@media (max-width: 1200px) {

    .our-squad .container,
    .voices-section .container,
    .cta-section .container,
    .clients-section .container {
        padding: 0 12px;
    }

    .voices-section .name-tag {
        bottom: 65px;
        left: 50px;
    }
}

@media (max-width: 991px) {

    .hero-image {
        text-align: center;
        margin-top: 40px;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-section .swiper-pagination {
        right: 10px;
    }

    .voices-section .voices-wrapper {
        flex-direction: column;
        background: transparent;
        margin-top: 10px;
    }

    .voices-section .voices-image::after {
        width: 250px;
        height: 297px;
    }

    .voices-section .voices-wrapper .voices-card {
        background: linear-gradient(180deg, #006D9C 0%, #006B61 100%);
        border-radius: 25px;
        padding: 25px;
        width: 100%;
    }

    .voices-section .voices-card h3 {
        font-size: 35px;
    }

    .cta-section .cta-content {
        padding-left: 12px !important;
    }

    .clients-section .client-card {
        width: 160px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    p.description {
        margin: 10px 0;
        max-width: 100%;
    }

    .hero-section {
        margin-top: 0;
    }

    .hero-section .hero-slide {
        padding-top: 0;
    }

    .hero-section .hero-image img {
        width: 260px;
    }

    .hero-btn {
        font-size: 14px;
    }

    .our-squad,
    .voices-section,
    .clients-section {
        margin: 25px 0;
    }

    .our-squad .details {
        flex-direction: column;
        gap: 40px;
    }

    .our-squad .details .right-content {
        text-align: center;
    }

    .voices-section .voices-image::after {
        width: 160px;
        height: 185px;
    }

    .voices-section .name-tag {
        padding: 7px 18px;
        font-size: 16px;
    }

    .voices-section .voices-card h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .voices-section .avatar-group {
        margin-top: 25px;
    }

    .voices-section .avatar-group img {
        width: 60px;
        height: 60px;
    }

    .voices-section .avatar-group img:nth-child(2),
    .voices-section .avatar-group img:nth-child(3) {
        margin-left: -30px;
    }

    .cta-section .cta-content {
        text-align: center;
    }

    .cta-section .cta-content p {
        max-width: 100%;
    }

    .cta-section .cta-image {
        margin-top: 15px;
    }

    .clients-section .clients-marquee-wrap {
        margin-top: 30px;
        gap: 15px;
    }

    .clients-section .client-card {
        width: 130px;
        height: 110px;
    }

    .clients-section .client-card img {
        max-width: 100px;
        max-height: 40px;
    }
}