.index {
    position: relative;
}
* {
    margin:0;
    padding:0;
}
section {
    font-size: 0;
}

/* section + section {
    margin-top: -1px;
} */

/***********************************/
/********** HERO SECTION ***********/
/***********************************/

.hero-section {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
}

.hero-section .hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-section h2 {
    font-size: 9.375rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.8;
    letter-spacing: normal;
    color: var(--wtb);
    text-align: left;
    margin: 0;
}

.hero-section .hero-cta {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 16px 36px;
    border: 2px solid var(--wtb);
    border-radius: 999px;
    background-color: transparent;
    color: var(--wtb);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-section .hero-cta:hover {
    background-color: var(--wtb);
    color: var(--btw);
}

.hero-section .scroll {
    display: block;
    pointer-events: none;
    position: absolute;
    height: 23px;
    bottom: 67px;
    left: -60px;
    margin: auto;
    transform: rotate(-90deg);
    z-index: 1;
}

.hero-section .scroll span {
    font-size: 0.75rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 3px;
    text-align: left;
    color: var(--wtb);
    text-transform: uppercase;
}

.hero-section .scroll div span:first-child {
    transform: translateY(-3px) rotate(180deg);
}

.hero-section .scroll span.line {
    position: relative;
    display: inline-block;
    width: 113px;
    height: 1px;
    margin: 0 18px;
    transform: rotate(180deg);
}

.hero-section .scroll span.line::before {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    background-color: var(--wtb);
}

.hero-section .scroll span.line.animate::before {
    animation: load 5s infinite;
}

@keyframes load {
    0% {
        width: 0%;
    }

    83.333%,
    100% {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-section .hero-content {
        max-width: 650px;
    }

    .hero-section h2 {
        font-size: 55px;
        font-weight: bold;
        line-height: 1;
    }

    .hero-section .hero-cta {
        margin-top: 28px;
        padding: 12px 28px;
        font-size: 0.875rem;
    }

    .hero-section .scroll {
        left: -25px;
		bottom: 45px;
    }
	.hero-section .scroll span.line {
		width: 40px;
		margin: 0;
		margin-right: 20px;
	}

	.hero-section .scroll span.line.animate::before {
		animation: load 3s infinite;
	}
}

/***********************************/
/******** HP MISSION SECTION *******/
/***********************************/

.hp-mission {
    width: 100vw;
    margin-top: 100vh;
    position: relative;
    background-color: transparent;
}

.hp-mission > div {
    height: 100%;
    background-color: var(--bbtw);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

/* .hp-mission > div > p {
    transform: translateY(200px);
    opacity: 0;
} */

.hp-mission > div p {
    font-size: 3.75rem;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: normal;
    text-align: left;
    color: var(--wtb);
    max-width: 960px;
    padding: 0 20px;
    margin: 140px auto 0;
}


.hp-mission > div:last-of-type {
    padding-bottom: 169px;

}

.hp-mission > div:last-of-type div {
    transform: translateY(300px);
    opacity: 0;
    max-width: 1220px;
}

.hp-mission > div:last-of-type div > p {
    font-size: 30px;
    max-width: 750px;
    line-height: 1.33;
    letter-spacing: normal;
    margin: 70px 0 0 auto;
}

.hp-mission > div:last-of-type div > p strong {
    color: var(--bluesoft);
}

.hp-mission > div:last-of-type div > p b {
    font-weight: 900;
    color: var(--bluesoft);
}

.hp-mission > div > span {
    font-size: 280.5px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.87;
    letter-spacing: -7.01px;
    text-align: left;
    color: var(--wtb);
    margin: 280px auto 0;
    display: inline-block;
    max-width: 960px;
    padding: 0 20px;
    width: 100%;
    margin-bottom: -62px;
    /* transform: translateY(200px); */
}

.hp-mission > div > span p {
    display: inline-block;
    margin: 0;
}

.hp-mission > div > span.show {
    transform: translateY(65px);
}

/* .hp-mission > div > span.show p {
    --num: 85;
} */

/* .hp-mission > div > span p::after {
    content: counter(num);
} */

@media (max-width: 991px) {

    .hp-mission > div > span {
        margin: 200px auto -30px;
    }

    .hp-mission > div > span,
    .hp-mission > div p {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
	.hp-mission > div > span,
    .hp-mission > div p {
        padding: 0 20px;
    }

    .hp-mission > div > p {
        font-size: 40px;
        margin: 80px auto 0;
    }

    .hp-mission > div > span {
        font-size: 120px;
        /* transform: translateY(40px); */
        margin: 70px auto -25px;
    }

    .hp-mission > div > span.show {
        transform: translateY(25px);
    }

    .hp-mission > div:last-of-type > p {
        font-size: 25px;
        max-width: unset;
        line-height: 1.4;
        letter-spacing: normal;
        margin: 40px 0 0 0;
    }

    .hp-mission > div:last-of-type {
        padding-bottom: 0;
    }

    .hp-mission > div:last-of-type div {
        transform: translateY(100px);
    }
}

/***********************************/
/********** HP SEO SECTION *********/
/***********************************/

.hp-seo {
    background-color: var(--bbtw);
    position: relative;
    width: 100vw;
    /* height: 900px; */
    display: flex;
    transition: var(--transition);
    padding-block: 100px;
}

.hp-seo .img-wrapper {
    position: relative;
    height: 100%;
    width: 60%;
    pointer-events: none;
    /* max-width: 1400px; */
}

.hp-seo .img-wrapper div {
    transition: var(--transition);
    /* max-height: 900px; */
    width: 100%;
    height: 100%;
    position: relative;
}

.hp-seo .img-wrapper .ipad {
    top: 0;
    left: 0;
    z-index: 0;
}




.hp-seo .img-wrapper .ipad-seo {
    opacity: 0;
}

.hp-seo .img-wrapper .ipad-noseo {
    opacity: 1;
    position: absolute;
    top: 0;
}

.hp-seo div img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hp-seo div .eye-wrapper {
    width: 289px;
    height: 196px;
    position: relative;
}

.hp-seo > div:last-of-type {
    margin: auto;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    align-items: center;
    gap: 0;
    position: relative;
    padding: 0 20px;
    width: 40%;
}

.hp-seo > div:last-of-type p {
    font-size: 22px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -0.22px;
    text-align: center;
    color: var(--wtb);
    transition: var(--transition);
    max-height: 330px;
}

.hp-seo div .eye-wrapper svg {
    fill: #ffffff;
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    transition: var(--transition);
    pointer-events: none;
    width: 289px;
    height: 196px;
}

.white-mode .hp-seo div .eye-wrapper svg {
    fill: #000000;
}

.hp-seo div .eye-wrapper svg#eye-open {
    margin-top: -52px;
    opacity: 0;
    margin-left: -1px;
}

.hp-seo div .eye-wrapper svg#eye-closed {
    max-width: 243px;
    opacity: 1;
}

.hp-seo div .eye-wrapper svg .eye-container {
    position: relative;
    overflow: hidden;
}

.hp-seo div .eye-wrapper svg .eye-container .seo-iris {
    /* position: absolute;
    transform: translate(250px, 0); */
}



.hp-seo.invisible div .eye-wrapper #eye-open {
    opacity: 1;
}

.hp-seo.invisible div .eye-wrapper #eye-closed {
    opacity: 0;
}

.hp-seo.invisible .img-wrapper .ipad-noseo {
    opacity: 0;
}

.hp-seo.invisible .img-wrapper .ipad-seo {
    opacity: 1;
}

.hp-seo .text-wrapper {
    display: flex;
}

.hp-seo .text-wrapper p:first-of-type {
    transition:none;
    opacity: 0;
    max-width: 0;
}

.hp-seo.invisible .text-wrapper p:first-of-type {
    opacity: 1;
    max-width: 500px;
    width: 100%;
}

.hp-seo .text-wrapper p:last-of-type {
    transition:none;
    opacity: 1;
    max-width: 500px;
    width: 100%;
}

.hp-seo.invisible .text-wrapper p:last-of-type {
    opacity: 0;
    max-width: 0;
}



@media (max-width: 1200px) {
    .hp-seo .img-wrapper {
        width: 55%;
    }
    

    .hp-seo > div:last-of-type {
        width: 45%;
        gap: 0;
        right: 0;
    }

    .hp-seo div .eye-wrapper {
        width: 175px;
        height: 135px;
        position: relative;
    }

    
    .hp-seo div .eye-wrapper svg {
        width: 175px;
        height: 135px;
    }

    .hp-seo > div:last-of-type p {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: -0.2px;
        margin: 0;
    }

}

@media (max-width: 991px) {
    .hp-seo {
        flex-direction: column;
        height: unset;
        gap: 100px;
        padding-block: 49px;
    }

    .hp-seo .img-wrapper {
        margin-top: 0;
        width: 100%;
    }

    .hp-seo > div:last-of-type {
        position: relative;
        margin: 0 auto;
        right: unset;
    }

    .hp-seo div .eye-wrapper svg#eye-open {
        margin-top: -35px;
        margin-left: 0;
    }

    .hp-seo div .eye-wrapper::before {
        top: 72px;
    }

    .hp-seo .text-wrapper {
        max-height: 300px;
    }

    .hp-seo div .eye-wrapper {
        width: 152px;
        height: 135px;
    }
    .hp-seo div .eye-wrapper svg {
        width: 152px;
        height: 135px;
    }

    /* .hp-seo > div:last-of-type p {
        font-size: 26px;
    } */
    .hp-seo > div:last-of-type {

        width: 100%;
        max-width: unset;
    }

    .hp-seo .swipe {
        display: block;
        z-index: 1;
        opacity: 0.8;
        animation: none;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
	.hp-seo .img-wrapper {
		aspect-ratio: 10 / 9;
    }

    .hp-seo {
        gap: 50px;
    }
}

/***********************************/
/******** HP CLIENT SECTION ********/
/***********************************/

.hp-clients {
    background-color: var(--bbtw);
    position: relative;
    width: 100vw;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    padding-top: 60px;
}

.hp-clients h2 {
    font-size: 90px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.89;
    letter-spacing: -0.9px;
    text-align: center;
    color: var(--wtb);
    max-width: 893px;
    padding: 0 20px;
    margin: 0 auto 200px;
    /* opacity: 0;
    transform: translateY(200px); */
}

.hp-clients .slider-wrapper {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}


.hp-clients .slider-wrapper > div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    height: 100px;
    max-width: 400px;
    padding-right: 80px;
}

.hp-clients .slider-wrapper img {
    height: 100%;
    width: 100%;
    filter: grayscale(1) contrast(100%) brightness(1) invert(1);
    object-fit: contain;
}

.white-mode .hp-clients .slider-wrapper img {
    filter: grayscale(1) contrast(100%) brightness(1) invert(0);
    opacity: 0.3;
}


@media (max-width: 991px) {

    .hp-clients h2 {
        padding: 0 40px;
        font-size: 89px;
        margin: 0 auto 100px;
    }
}


@media (max-width: 767px) {
    .hp-clients {
        padding-top: 50px;
    }
    .hp-clients h2 {
        font-size: 38px;
        line-height: 1.16;
        letter-spacing: -0.38px;
        margin: 0 auto 70px;
    }

    
.hp-clients .slider-wrapper > div {

    height: 50px;
    max-width: 200px;
    padding-right: 30px;
}

}

/***********************************/
/********** HP HiGHLIGHTS **********/
/***********************************/

.hp-highlights {
    background-color: var(--bbtw);
    position: relative;
    transition: var(--transition);
    padding: 200px 60px 0;
}

.highlight-wrap {
    display: flex;
    flex-direction: column;
}

.highlight-item:first-of-type {
    position: relative;
}

.highlight-item {
    position: relative;
    display: block;
    max-width: 1900px;
    margin: auto;
}


.highlight-item > div {
    position: absolute;
    left: 130px;
    bottom: 140px;
    max-width: 700px;
}

.highlight-item > div > * {
    color: white;
}

.highlight-item > div > p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.56;
    margin: 20px 0 0 0px;
}

.highlight-item > div > p:first-of-type {
    letter-spacing: 3px;
    margin-bottom: 60px;
    line-height: 1;
}

.highlight-item > div > span {
    font-size: 5.625rem;
    font-weight: normal;
    line-height: 0.89;
    letter-spacing: -0.9px;
}

.highlight-item:nth-child(2) > div > p,
.highlight-item:nth-child(2) > div {
    margin-left: auto;
}

.highlight-item:nth-child(2) > div {
    left: unset;
    right: 130px;
    text-align: end;
}

.highlight-item .image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
    transform: translateY(100px);
    opacity: 0;
}

.highlight-item .image.mobile {
    display: none;
}

@media (max-width: 991px) {
    .highlight-item {
        max-width: 100%;
        padding: 0;
    }

    .highlight-item > div > span {
        font-size: 38px;
        line-height: 1.16;
    }

    .highlight-item > div > p {
        font-size: 16px;
        max-width: 80%;
    }

    .highlight-item > div {
        position: absolute;
        top: 45%;
        left: 80px;
    }

    .highlight-item:nth-child(2) > div {
        right: 80px;
    }
}

@media (max-width: 767px) {
    .hp-highlights,
    .highlight-item {
        padding: 0;
    }

    .highlight-item .image {
        display: none;
    }

    .highlight-item .image.mobile {
        display: block;
    }

    .highlight-item > div {
        position: relative;
        top: -60px;
        left: unset;
        padding: 0 20px;
    }

    .highlight-item > div > p:first-of-type {
        margin-bottom: 39px;
    }

    .highlight-item:nth-child(2) > div > p,
    .highlight-item:nth-child(2) {
        margin-left: unset;
    }

    .highlight-item:nth-child(2) > div {
        right: unset;
        left: 0;
        text-align: start;
        margin: 0;
    }

    .highlight-item > div > span,
    .highlight-item > div > p:last-of-type {
        color: var(--wtb);
    }

    
}

/***********************************/
/*********** HP SERVICES ***********/
/***********************************/

.hp-services {
    position: relative;
    background-color: var(--bbtw);
    width: 100vw;
    padding: 120px 120px 100px;
    transition: background-color 0.3s ease-in-out;
}

.hp-services .wrapper {
    height: 100%;
    width: 100%;
    max-width: 1900px;
    margin: 70px auto 0;
}

.hp-services .wrapper > span {
    font-size: 24px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--wtb);
    transition: var(--transition);
}

.hp-services .wrapper > ul {
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.hp-services .wrapper > ul > li {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hp-services .wrapper > ul > li a {
    font-size: 90px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.75;
    letter-spacing: -0.9px;
    text-align: left;
    color: var(--wtb);
    cursor: pointer;
}

.hp-services .wrapper > ul > li > span {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hp-services .wrapper > ul > li > span > span {
    display: none;
}

.hp-services .wrapper > ul > li > ul {
    opacity: 0;
    transition: var(--transition);
    max-width: 270px;
    text-align: end;
    padding: 0;
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: -6px;
}

.hp-services .wrapper > ul > li:hover > ul {
    opacity: 1;
}

.hp-services .wrapper > ul > li > ul > li {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: right;
    color: var(--wtb);
}

.hp-services .wrapper > ul > li a + span {
    display: none;
    width: 21px;
    height: 21px;
    position: relative;
    margin-left: 19px;
}

.hp-services .wrapper > ul > li a + span::after,
.hp-services .wrapper > ul > li a + span::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: var(--bluesoft);
    transition: var(--transition);
    transform: rotate(90deg);
}
.hp-services .wrapper > ul > li a + span::after {
    transform: rotate(0);
}
.hp-services .wrapper > ul > li:hover a + span::after {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .hp-services {
        padding: 50px 40px 80px;
    }

    .hp-services .wrapper > ul > li a {
        line-height: 1;
        font-size: 50px;
    }

    .hp-services .wrapper > ul > li {
        flex-direction: column;
    }

    .hp-services .wrapper > ul > li > ul {
        max-height: 0;
        overflow: hidden;
        max-width: unset;
        position: relative;
        right: 0;
        justify-content: start;
        text-align: start;
        align-items: start;
    }

    .hp-services .wrapper > ul > li:hover > ul {
        opacity: 1;
        max-height: 250px;
        margin-top: 30px;
    }

    .hp-services .wrapper > ul {
        margin-top: 56px;
        gap: 43px;
    }

    .hp-services .wrapper > span {
        font-size: 18px;
    }

    .hp-services .wrapper > ul > li > ul > li {
        font-size: 16px;
        opacity: 0.2;
        text-align: left;
    }

    .hp-services .wrapper > ul > li a + span {
        display: inline-block;
    }
}

@media (max-width: 767px) {

    .hp-services {
        padding: 50px 20px 80px;
    }

    .hp-services .wrapper{
        margin-top: 0px;
    }

    .hp-services .wrapper > ul > li a {
        line-height: 1;
        font-size: 30px;
        white-space: nowrap;
    }
}

/***********************************/
/************* HP TEAM *************/
/***********************************/

.hp-team {
    position: relative;
    background-color: var(--bbtw);
    min-height: calc(100vh + 200px - 73px);
    width: 100vw;
    display: flex;
    padding-block: 100px;
    transition: var(--transition);
}

.hp-team > div {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* transform: translateY(200px);
    opacity: 0; */
}

.hp-team > div:last-of-type {
    justify-content: start;
}

.hp-team > div > a {
    font-size: 24px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: var(--bluesoft);
    transition: var(--bluesoft);
    margin-top: 60px;
    cursor: pointer;
}

.white-mode .hp-team > div > a {
    font-weight: 500;
}

.hp-team > div > span {
    font-size: 90px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.89;
    letter-spacing: -0.9px;
    text-align: center;
    color: var(--wtb);
    max-width: 475px;
    transition: var(--transition);
    margin-top: 70px;
}

.hp-team > div > img {
    width: 100%;
    display: block;
    position: absolute;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.hp-team > div > img:first-of-type {
    opacity: 1;
    pointer-events: all;
}

.hp-team > div .wrapper {
    width: 333px;
    height: 333px;
    margin: 150px auto 0;
    position: relative;
}

.hp-team > div .wrapper > span {
    position: absolute;
    height: 36px;
    width: 26px;
    top: -68px;
    left: 0;
    right: 0;
    margin: auto;
}

.hp-team > div .wrapper > span img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
}

.hp-team > div .wheel {
    width: 333px;
    height: 333px;
    background-color: var(--bbtw);
    border-radius: 50%;
    /* border:15px solid #dde; */
    position: relative;
    overflow: hidden;
    transition: 1s;
}

.hp-team > div .wheel > div {
    height: 51%;
    width: 145px;
    position: absolute;
    clip-path: polygon(100% 0, 50% 100%, 0 0);
    transform: translateX(-50%);
    transform-origin: bottom;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    font-family: sans-serif;
    color: #fff;
    left: 94px;
}

.hp-team > div .wheel > div.one {
    background-color: #ff67ff;
    left: 50%;
}
.hp-team > div .wheel > div.two {
    background-color: #8700f3;
    transform: rotate(45deg);
}
.hp-team > div .wheel > div.three {
    background-color: #3500ff;
    transform: rotate(90deg);
}
.hp-team > div .wheel > div.four {
    background-color: #b4c5f3;
    transform: rotate(135deg);
}
.hp-team > div .wheel > div.five {
    background-color: #b462f5;
    transform: rotate(180deg);
}
.hp-team > div .wheel > div.six {
    background-color: #431d72;
    transform: rotate(225deg);
}
.hp-team > div .wheel > div.seven {
    background-color: #ff0048;
    transform: rotate(270deg);
}
.hp-team > div .wheel > div.eight {
    background-color: #ff00a4;
    transform: rotate(315deg);
}

.hp-team > div .btn-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #121212;
    border: 8px solid #222222;
	font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: bold;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: none;
    outline: none;
    user-select: none;
    letter-spacing: 1px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}



.hp-team > div .wheel > div {
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 20px;
}

.hp-team > div .wheel > div > span {
    height: 60px;
    width: 50px;
    background-color: white;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.hp-team .team-mobile {
    display: none;
}



@media (min-width: 998px) {
    .hp-team > div .btn-wheel:hover {
        width: 100px;
        height: 100px;
    
    }
}

@media (max-width: 991px) {

    .hp-team {
        min-height: unset;
        padding: 50px 0 51px;
    }
    .hp-team > div {
        gap: 50px;
    }

    .hp-team > div > span {
        font-size: 38px;
        line-height: 1.16;
        letter-spacing: -0.38px;
        padding: 0 20px;
        margin-top: 0;
    }

    .hp-team > div .wrapper {
        width: 275px;
        height: 275px;
        margin: 50px 0 0;
    }

    .hp-team > div .wheel {
        width: 275px;
        height: 275px;
    }

    .hp-team > div .wheel > div {
        height: 50%;
        width: 115px;
        left: 80px;
    }

    .hp-team > div .btn-wheel {
        font-size: 13px;
        width: 62px;
        height: 62px;
    }

    .hp-team > div > a {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .hp-team {
        flex-direction: column;
        padding: 0 0 50px 0;
    }

    .hp-team > div {
        width: 100%;
        flex-direction: column-reverse;
        gap: 0;
    }

    .hp-team > div:first-of-type {
        height: 1000px;
        max-height: 50vh;
    }

    .hp-team > div:last-of-type {
        overflow: unset;
    }

    .hp-team .opacity-scroll:last-of-type {
        opacity: 1;
    }

    /* .hp-team > div > img:first-of-type {
        object-fit: contain;
    } */

    .hp-team > div .wheel > div > span {
        height: 45px;
        width: 45px;
    }

    .hp-team > div > a {
        font-size: 22px;
        order: 2;
        margin-top: 60px;
    }

    .hp-team > div .wrapper {
        order: 3;
    }

    .hp-team > div > span {
        margin-top: 30px;
    }

    .hp-team > div .wrapper > span {
        top: -60px;
    }

    .hp-team .team-mobile {
        display: block;
        width: 92px;
        Height: 92px;
        background-color: var(--bluesoft);
        border-radius: 100px;
        margin: 0 auto;
        position: relative;
        margin-top: 45px;
    }
    .hp-team .team-mobile span {
        font-family: var(--font-family-2);
        font-size: 14px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.57;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
    }
}
