/* 
01 Top section CSS 



*/
.section {
    position: relative;
    /*  z-index: 1; */
}

/* .section * {
    will-change: transform;
} */

/* Start 01 Top section CSS*/

.section-top_bg-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    /*  overflow: hidden; */
    z-index: 0;
}

.section-top_bg-outer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(top, rgba(21, 42, 66, 0.5) 0%, rgba(21, 42, 66, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 42, 66, 0.5)), to(rgba(21, 42, 66, 0)));
    background: linear-gradient(180deg, rgba(21, 42, 66, 0.5) 0%, rgba(21, 42, 66, 0) 100%);
    z-index: -1;
}

.section-top_bg-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /*    transition: transform .1s; */

}


.section-top_bg-inner img {
    position: absolute;
    bottom: -23vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 150vw;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    max-width: none;
}

.section-logo_wrapper-outer {
    position: relative;
    padding-top: 180px;
}

.section-logo_wrapper-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-logo_wrapper-inner img {
    width: 100%;
    display: block;
}

.section-top_desc-outer {
    position: relative;
    margin-top: 190px;
    z-index: 1;
}

.section-top_desc-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.section-top_desc-inner .btns-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.section-top_desc-inner .top-btn {
    position: relative;
    display: block;
}

.section-top_desc-inner .top-btn img {
    display: block;
    width: 100%;
}

.section-top_desc-inner .top-btn:after {
    content: attr(data-after);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
    text-align: center;
}

.section-top_bg-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-top_bg-back>div {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.section-top_bg-back .bg-back-1 {
    left: 5%;
    top: 40%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: #3D497E;
    -webkit-filter: blur(250px);
    filter: blur(250px);
}

.section-top_bg-back .bg-back-2 {
    width: 38vw;
    height: 26vw;
    left: -1%;
    top: 50%;
    background: rgba(147, 4, 167, 0.6);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    border-radius: 50%;
}

.section-top_bg-back .bg-back-3 {
    width: 33vw;
    height: 32vw;
    top: 40%;
    right: -2%;
    background: rgba(229, 73, 255, 0.4);
    -webkit-filter: blur(250px);
    filter: blur(250px);
}

.section-top_mouse {
    margin-top: 3vw;
    /*  position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); */
}

.section-top_mouse-inner {
    position: relative;
    width: 2vw;
    height: 3vw;
    border: 1px solid #ffffff;
    border-radius: 50px;
    margin: 0 auto;
}

.section-top_mouse-inner:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 30%;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ffffff;
}

.section-top_mouse-inner>span {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
    background: none repeat scroll 0 0 #ffffff;
    border: 1px solid transparent;
    border-radius: 50%;
    display: block;
    height: 4px;
    margin: 6px auto;
    width: 4px;
    margin-top: 5px;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}


@media screen and (min-width: 1950px) {
    .section-top_bg-inner img {
        width: 145vw;
        max-width: 3150px;
        bottom: -27vw;
    }

    .section-logo_wrapper-outer {
        padding-top: 10vw;
    }

    .section-logo_wrapper-inner .img-wrapper {
        width: 35vw;
        max-width: 800px;
    }

    .section-top_desc-outer {
        /*  position: relative; */
        margin-top: 10vw;
    }

    .section-top_desc-inner .desc-text {
        font-size: 1.2vw;
        line-height: 1.5vw;
    }

    .section-top_desc-inner .top-btn:after {
        font-size: 1vw;
    }

    .section-top_desc-inner .top-btn {
        width: 10vw;
    }
}

@media screen and (min-width: 2600px) {
    .section-top_bg-outer {
        height: 600px;
    }

    .section-top_bg-inner img {
        bottom: -30vw;
        max-width: none;
    }
}

@media screen and (max-width: 1199px) {
    .section-top_bg-inner img {
        bottom: 0;
        max-width: 1152px;
    }

    .section-logo_wrapper-outer {
        padding-top: 90px;
    }

    .section-logo_wrapper-inner .img-wrapper {
        width: 450px;
        /*    max-width: 450px; */
    }

    .section-top_desc-outer {
        margin-top: 110px;
    }

    .section-top_desc-inner .top-btn {
        width: 195px;
    }

    .section-top_desc-inner .top-btn:after {
        font-size: 14px;
    }

    .section-top_mouse {
        margin-top: 50px;
    }

    .section-top_mouse-inner {
        width: 30px;
        height: 50px;
    }

    .section-top_bg-back {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-top_bg-outer {
        height: 100vw;
    }

    .section-top_bg-inner img {
        bottom: 55vw;
        width: 150vw;
    }

    .section-logo_wrapper-outer {
        padding-top: 25vw;
    }

    .section-logo_wrapper-inner .img-wrapper {
        width: 280px;
    }

    .section-top_desc-outer {
        margin-top: 20px;
    }

    .section-top_desc-inner .top-btn {
        width: 100%;
        max-width: 290px;
    }

    .section-top_desc-inner .top-btn:after {
        font-size: 12px;
    }

    .section-top_desc-inner .desc-text {
        font-size: 14px;
    }

    .section-top_desc-inner .desc-text>br {
        display: none;
    }

    .section-top_desc-inner .btns-wrapper {
        margin-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

}

/* End 01 Top section CSS */

/* Start 02 Section Mob App CSS */
.section-app {
    margin-top: 10vw;
}

.double-container_outer,
.double-container_inner {
    position: relative;
}

.double-container_bg-back {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%) translateZ(0);
    z-index: -1;
}

.double-container_bg-back .bg-back-1 {
    width: 53vw;
    height: 40vw;
    top: 0;
    left: 0;
    background: rgba(147, 4, 167, 0.4);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.double-container_inner .mob-app_screen {
    width: 50%;
    /*  height: 31vw; */
    position: absolute;
    top: 0;
    right: 0;
    /* background: rgba(26, 32, 80, 0.4);
    box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12.5px); */
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 10px;
}

.double-container_right .mob-app_screen img {
    display: block;
    width: 100%;
}

.double-container_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 50%;
    min-height: 32vw;
    padding-right: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


.double-container_left .default-text+.default-text {
    margin-top: 10px;
}

.double-container_left .default-text.default-text_hint {
    margin-top: 40px;
}

.mob-app_screen-blind {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 205px;
    height: 40px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: rgba(71, 79, 116, 0.5);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}


.mob-app_screen-blind>span {
    background: #141A35;
    height: 5px;
    border-radius: 30px;
}

.mob-app_screen-blind>span:first-child {
    width: 100px;
}

.mob-app_screen-blind>span:last-child {
    width: 5px;
    border: 2px solid #141A35;
}

.mob-app_screen-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 50px);
    height: calc(100% - 30px);
}

.mob-app_screen-inner img {
    display: block;
}

.mob-app_screen-rare {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 25px;
    line-height: 30px;
    /* identical to box height */
    color: #ffffff;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.mob-app_screen-coins {
    right: 0;
    position: absolute;
    top: 0;
    gap: 17px;
    padding-left: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.mob-app_screen-coin {
    position: relative;
    font-weight: 600;
    padding: 12px 0;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    padding-left: 25px;
}

.mob-app_screen-coin:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
}

.mob-app_screen-coin:first-child:before {
    background: #B9B9B9;
}

.mob-app_screen-coin:not(:first-child):before {
    background: #FFC444;
}

.mob-app_screen-coin-abs {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #ffffff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mob-app_screen-options_outer {
    position: absolute;
    bottom: 10px;
    left: 20px;
    height: 100%;
    padding-top: 4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mob-app_screen-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

.mob-app_screen-options+.mob-app_screen-options {
    margin-top: auto;
}

.mob-app_screen-option {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #2E396B;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mob-app_screen-option>span {
    font-weight: 600;
}

.mob-app_screen-option:after {
    content: attr(data-before);
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    /* identical to box height */
    color: #ffffff;
    letter-spacing: 0.02em;
}

.mob-app_screen-option--lvl {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mob-app_screen-option--lvl:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    border-top-color: transparent;

}

.mob-app_screen-walk {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.mob-app_screen-actions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mob-app_screen-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: -30px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
}

.mob-app_screen-pet {
    width: 17vw;
    position: relative;
}

.mob-app_screen-pet img {
    width: 100%;
}

.mob-app_screen-pet:before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    -webkit-filter: blur(75px);
    filter: blur(75px);
    width: 215px;
    height: 215px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media screen and (min-width: 1950px) {
    .double-container_left .default-text+.default-text {
        margin-top: 1vw;
    }
}

@media screen and (max-width: 1720px) {
    .double-container_left {
        min-height: 35vw;
    }
}

@media screen and (max-width: 1199px) {
    .section-app {
        margin-top: 120px;
    }

    .double-container_inner {
        position: relative;
    }

    .double-container_left h2.heading {
        text-align: center;
        width: 100%;
    }



    .double-container_left {
        width: 100%;
        margin: 0;
        max-width: none;
        margin-top: 30px;
        padding-right: 0;
    }

    .double-container_inner .mob-app_screen {
        position: relative;
        width: calc(100% - 90px);
        margin: 0 auto;
        top: auto;
        right: auto;
        margin-bottom: 30px;
    }

    .double-container_bg-back .bg-back-1 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-app {
        margin-top: 70px;
    }

    .double-container_left h2.heading {
        text-align: left;
    }

    .double-container_inner .mob-app_screen {
        width: 100%;
    }

    .double-container_left .default-text.default-text_hint {
        margin-top: 15px;
    }
}

/* End 02 Section Mob App CSS */

/* Start Section Mission CSS */
.section-mission {
    margin-top: 150px;
}

.mission-outer {
    position: relative;
    /*     z-index: 1; */
}

.mission-inner {
    position: relative;
    font-family: 'Euclid Circular A';
    font-weight: bold;
    z-index: 1;
}

.mission-inner_main {
    font-size: 300px;
    line-height: 100%;
    background: -o-linear-gradient(181.76deg, #6100FF 8.3%, #9522F0 122.74%);
    background: linear-gradient(268.24deg, #6100FF 8.3%, #9522F0 122.74%);
    color: #6100FF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    will-change: animation;
    -webkit-animation: gradient-text 5s ease infinite;
    animation: gradient-text 5s ease infinite;
}

@-webkit-keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mission-inner_center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 35px;
    line-height: 44px;
    /* identical to box height */
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.mission-container_bg-back>* {
    position: absolute;
    z-index: -1;
}

.mission-container_bg-back .bg-back-1 {
    width: 105vw;
    height: 55vw;
    left: -50%;
    top: -100%;
    background: rgba(147, 4, 167, 0.3);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mission-container_bg-back .bg-back-2 {
    width: 33vw;
    height: 31vw;
    right: 0;
    top: 0;
    background: rgba(229, 73, 255, 0.2);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1950px) {
    .mission-inner_main {
        font-size: 16vw;
    }

    .mission-inner_center {
        font-size: 2vw;
        line-height: 100%;
    }
}

@media screen and (max-width: 1500px) {
    .mission-inner_main {
        font-size: 19vw;
    }

    .mission-inner_center {
        font-size: 2vw;
        line-height: 100%;
    }

    .section-mission {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .mission-inner_main {
        font-size: 17vw;
        text-align: center;
    }

    .mission-inner_center {
        position: relative;
        padding-top: 20px;
        font-size: 3.3vw;
        text-align: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: auto;
        left: auto;
    }

    .mission-container_bg-back {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-mission {
        margin-top: 70px;
    }

    .mission-inner_main {
        font-size: 19vw;
    }

    .mission-inner_center {
        font-size: 16px;
        line-height: 20px;
        padding-top: 10px;
        white-space: normal;
    }
}

/* End Section Mission CSS */

/* Start Section Slider CSS */
.section-slider {
    margin-top: 200px;
}

.slider-outer {
    position: relative;
}

.slider-inner {
    width: 50%;
    z-index: 1;
    position: relative;
}

.swiper-pets {
    margin: 0 -40px;
}

.slider-right__bg-back {
    position: absolute;
    top: 50%;
    will-change: transform;
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
    right: -23%;
    /*   z-index: -1; */
}

.slider-right__bg-back .bg-back-1 {
    width: 80vw;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* transition: transform .1s; */
}

.slider-right__bg-back img {
    width: 100%;
    display: block;
}

.swiper-pets-slide {
    width: 245px;
    opacity: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.swiper-pets-slide.swiper-slide-visible {
    opacity: 1;
}

.slider-wrapper-pets .swiper-controls {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
}

.slider-wrapper-pets .swiper-button {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    background: rgba(46, 57, 107, 0.2);
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    margin: 0;
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
}

.slider-wrapper-pets .swiper-button:hover {
    background: rgba(46, 57, 107, 0.5);
}

.slider-wrapper-pets .swiper-button:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
}

.slider-wrapper-pets .swiper-button-prev:before {
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-left: 5px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.slider-wrapper-pets .swiper-button-next:before {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 50%;
    margin-right: 5px;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    -ms-transform: translate(50%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg);
}

.slider-wrapper-pets .swiper-pagination-progressbar {
    width: 275px;
    height: 6px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #FFFFFF;
}

.slider-wrapper-pets .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.slider-outer__bg-back .bg-back-1 {
    background: rgba(34, 167, 240, 0.2);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    position: absolute;
    left: 30%;
    will-change: transform;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 42vw;
    height: 39vw;
    top: -20%;
    z-index: -1;
    border-radius: 50%;
}

.slider-bottom-text {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);

    max-width: 95%;
    margin: 0 auto;
    margin-top: 50px;
}

@media screen and (min-width: 1950px) {
    .slider-right__bg-back .bg-back-1 {
        width: 80vw;
    }

    .slider-wrapper-pets .swiper-pagination-progressbar {
        width: 15vw;
    }

    .slider-bottom-text {
        font-size: 1.5vw;
        line-height: 2vw;
    }
}

@media screen and (max-width: 1500px) {
    .slider-bottom-text {
        font-size: 20px;
        line-height: 120%;
    }

    .slider-wrapper-pets .swiper-button {
        width: 5vw;
        height: 5vw;
    }

    .section-slider {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .slider-inner {
        width: 100%;
    }

    .slider-wrapper-pets {
        width: 80%;
    }

    .slider-right__bg-back {
        right: -40%;
    }

    .slider-wrapper-pets .swiper-button {
        width: 60px;
        height: 60px;
    }

    .slider-wrapper-pets .swiper-controls {
        gap: 25px;
    }

    .slider-wrapper-pets .swiper-pagination-progressbar {
        width: 250px;
    }

    .slider-outer__bg-back {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-slider {
        margin-top: 70px;
    }

    .slider-wrapper-pets {
        width: 100%;
    }

    .swiper-pets {
        margin: 0 -15px;
    }

    .slide-img-wrapper {
        width: 50vw;
        margin: 0 auto;
    }

    .swiper-pets-slide {
        opacity: 1;
    }

    .slider-wrapper-pets .swiper-controls {
        margin-top: 30px;
        gap: 15px;
    }

    .slider-wrapper-pets .swiper-button:before {
        width: 10px;
        height: 10px;
    }

    .slider-wrapper-pets .swiper-button-prev:before {
        margin-left: 2px;
    }

    .slider-wrapper-pets .swiper-button-next:before {
        margin-right: 2px;
    }

    .slider-wrapper-pets .swiper-button {
        width: 40px;
        height: 40px;
    }

    /*   .slider-wrapper-pets .swiper-button {
        display: none;
    } */

    .slider-wrapper-pets .swiper-pagination-progressbar {
        width: 100%;
        flex: 1;
        min-width: 0;
    }

    .slider-bottom-text {
        font-size: 16px;
        line-height: 19px;
        margin-top: 25px;
        max-width: none;
    }
}

/* End Section Slider CSS */


/* Start Section GamePlay CSS */
.section-gameplay {
    margin-top: 200px;
}

.gameplay-outer {
    position: relative;
}

.gameplay-inner {
    position: relative;
    z-index: 1;
}

.gameplay-items {
    gap: 20px;
}

.gameplay-item.w-100 {
    width: 100%
}

.gameplay-item .heading {
    padding-bottom: 40px;
}

.gameplay-item {
    background: rgba(26, 32, 80, 1);
    -webkit-box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    /*     -webkit-backdrop-filter: blur(12.5px);
    backdrop-filter: blur(12.5px); */
    font-size: 20px;
    line-height: 24px;
    /* Note: backdrop-filter has minimal browser support */
    position: relative;
    border-radius: 10px;
    min-width: 0;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.gameplay-item:not(:first-child) {
    padding: 80px 40px 40px;
    min-height: 590px;
}

.gameplay-item:first-child {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 140px 20px 40px;
    width: 100%;
    min-width: 100%;
}

.gameplay-item:first-child .img-wrapper {
    width: 640px;
}

.gameplay-item .gameplay-item_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /*  flex-shrink: 0; */
}

.gameplay-item:first-child .gameplay-item_left {
    padding-right: 75px;
}

.gameplay-item picture,
.gameplay-item img {
    width: 100%;
    display: block;
}


.gameplay-item_text+.gameplay-item_list {
    margin-top: 20px;
}

.gameplay-item_list+.gameplay-item_img {
    margin-top: 60px;
}

.gameplay-item_list li {
    position: relative;
    padding-left: 1vw;
}

.gameplay-item_list li:before {
    content: '';
    position: absolute;
    top: 9px;
    /*  -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); */
    left: 0;
    width: .5vw;
    height: .5vw;
    border-radius: 50%;
    background: -o-linear-gradient(181.76deg, #6100FF 8.3%, #9522F0 122.74%);
    background: linear-gradient(268.24deg, #6100FF 8.3%, #9522F0 122.74%);
}

.gameplay-item_list li+li {
    margin-top: 5px;
}

.gameplay-item_back {
    position: absolute;
    z-index: -1;
}


.gameplay-item:first-child .gameplay-item_back {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 17%;
}

.gameplay-item:first-child .gameplay-item_back picture,
.gameplay-item:first-child .gameplay-item_back img {
    /*  height: 100%; */
    margin-left: auto;
}


.gameplay-item:nth-child(2) .gameplay-item_back {
    bottom: 0;
    left: 20px;
}

.gameplay-item.w-big {
    width: 850px;
    min-width: 850px;
}

.gameplay-item.w-min {
    min-width: 530px;
}

/* .gameplay-item_tabs {
    max-width: 590px;
} */

.gameplay-item_tabs-switchers {
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gameplay-item_tabs-switcher {
    padding: 13px 30px;
    background: rgba(2, 8, 50, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 25px;
    line-height: 30px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.gameplay-item_tabs-switcher.active,
.gameplay-item_tabs-switcher:not(.active):hover {
    background: rgba(2, 8, 50, 0.4);
    color: #ffffff;
}

.gameplay-item_tabs-contents {
    margin-top: 20px;
}

/* .gameplay-item_tabs {
    position: relative;
}
 */
.gameplay-item_tabs-content .gameplay-item_img {
    position: absolute;
    right: 2%;
    top: 0;
    width: 15%;
}

.gameplay-item_tabs-content:nth-child(2) .gameplay-item_img {
    width: 40%;
    top: 100%;
    margin-top: 3%;
}

.gameplay-item_tabs-content {
    position: relative;
}

.gameplay-item_tabs-contents .gameplay-item_tabs-content:not(.active) {
    display: none;
}

.gameplay-item_tabs-content .gameplay-item_text {
    width: 74%;
}

.gameplay-item_tabs-content .gameplay-item_text:not(:first-child) {
    margin-top: 10px;
}

.gameplay-item_text-hint {
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 50px;
    margin-top: 20px !important;
}

.gameplay-item_text-hint:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /*   transform: translateY(-50%); */
    width: 30px;
    height: 30px;
    background-image: url(../img/icons/hint.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.gameplay-item:nth-child(3) .gameplay-item_back {
    bottom: -30px;
    right: 0;
}

.gameplay-item:nth-child(3) .img-wrapper {
    margin-top: 70px;
}

.gameplay-item:nth-child(4) .gameplay-item_back {
    top: 0;
    right: -30px;
}

.gameplay-item:last-child .gameplay-item_back {
    top: 10px;
    left: -30px;
}

.gameplay-outer__bg-back>* {
    position: absolute;
    z-index: -1;
}

.gameplay-outer__bg-back .bg-back-1 {
    background: rgba(71, 105, 255, 0.3);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    width: 43%;
    height: 38%;
    border-radius: 50%;
    top: -4%;
    left: -10%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gameplay-outer__bg-back .bg-back-2 {
    width: 81%;
    height: 61%;
    background: rgba(147, 4, 167, 0.3);
    -webkit-filter: blur(250px);
    filter: blur(250px);
    top: -10%;
    right: -35%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gameplay-outer__bg-back .bg-back-3 {
    width: 50%;
    height: 35%;
    left: -15%;
    border-radius: 50%;
    background: rgba(147, 4, 167, 0.6);
    -webkit-filter: blur(300px);
    filter: blur(300px);
    bottom: -10%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gameplay-item.w-big:last-child .gameplay-item_img {
    width: 90%;
    margin: 45px auto 0;
}

@media screen and (min-width: 1950px) {
    .gameplay-item:first-child .img-wrapper {
        width: 30vw;
    }

    .gameplay-item,
    .gameplay-item_tabs-switcher {
        font-size: 1.2vw;
        line-height: 1.5vw;
    }

    .gameplay-item:first-child {
        padding: 1vw 2vw;
        padding-right: 6vw;
        min-height: 25vw;
    }

    .gameplay-item:not(:first-child) {
        padding: 3vw 2vw;
        min-height: 30vw;
    }

    .gameplay-item_text-hint {
        font-size: 1vw;
        line-height: 1.2vw;
    }

    .gameplay-item.w-big {
        min-width: 46vw;
    }

    .gameplay-item_tabs-contents {
        margin-top: 1.5vw;
    }

    .gameplay-item_tabs-content .gameplay-item_img {
        right: 5%;
        width: 6vw;
    }
}

@media screen and (max-width: 1500px) {
    .gameplay-item.w-big {
        width: 65%;
        min-width: 65%;
    }

    .gameplay-item {
        font-size: 16px;
        line-height: 120%;
    }

    .gameplay-item_text-hint {
        font-size: 14px;
        line-height: 120%;
    }

    .gameplay-item.w-min {
        min-width: 33%;
    }

    .gameplay-item_tabs-content .gameplay-item_img {
        width: 15%;
    }

    .gameplay-item:first-child .gameplay-item_right {
        width: 50%;
    }

    .gameplay-item:first-child .img-wrapper {
        width: 100%;
    }

    .gameplay-item:first-child {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 80px;
    }

    .gameplay-item:not(:first-child) {
        padding: 40px;
    }

    .gameplay-item_tabs-switcher {
        font-size: 20px;
        line-height: 120%;
    }

    .gameplay-item:not(:first-child) {
        height: 45vw;
        min-height: auto;
        max-height: 550px;
    }

    .gameplay-item:nth-child(3) .img-wrapper {
        margin-top: 50px;
    }

    .section-gameplay {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .gameplay-item:first-child {
        padding: 40px 30px;
    }

    .gameplay-item:first-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .gameplay-item:first-child .gameplay-item_left {
        width: 80%;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        padding-right: 0;

    }

    .gameplay-item .heading {
        padding-bottom: 20px;
    }

    .gameplay-item:first-child .gameplay-item_right {
        width: 70%;
        margin-top: 40px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .gameplay-item:first-child .gameplay-item_back {
        width: 30%;
    }

    .gameplay-item_list li {
        padding-left: 25px;
    }

    .gameplay-item_list li:before {
        width: 12px;
        height: 12px;
    }

    .gameplay-item_tabs-switcher {
        font-size: 18px;
    }

    .gameplay-item_tabs-content .gameplay-item_text {
        max-width: 500px;
    }

    .gameplay-item_tabs-content .gameplay-item_img {
        width: 8vw;
        right: 4vw;
        max-width: 70px;
    }

    .gameplay-item_tabs-content:nth-child(2) .gameplay-item_img {
        width: 25%;
        margin-top: 1%;
        max-width: none;
    }

    .gameplay-item:nth-child(2) .gameplay-item_back {
        width: 20%;
        left: 0;
    }

    .gameplay-item.w-min,
    .gameplay-item.w-big {
        min-width: 100%;
        min-height: 400px;
        height: auto;
        max-height: none;
    }

    /*  .gameplay-item picture,
    .gameplay-item img {
        height: 100%;
    } */

    .gameplay-item:last-child .gameplay-item_back {
        top: 0;
        right: 0;
        left: auto;
        width: 35%;
    }

    .gameplay-outer__bg-back {
        display: none;
    }


}

@media screen and (max-width: 767px) {
    .section-gameplay {
        margin-top: 70px;
    }

    .gameplay-item:first-child {
        padding: 30px 10px;
    }

    .gameplay-item:first-child .gameplay-item_left {
        width: 100%;
    }

    .gameplay-item:first-child .gameplay-item_back {
        height: 50%;
        width: 30%;
    }

    .gameplay-item:first-child .gameplay-item_right {
        width: 100%;
    }

    .gameplay-item:not(:first-child) {
        padding: 30px 10px;
    }

    .gameplay-item_tabs-switchers {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 5px
    }

    .gameplay-item_tabs-switcher {
        font-size: 16px;
    }

    .gameplay-item:nth-child(2) .gameplay-item_back {
        top: -2vw;
        right: 0;
        left: auto;
        bottom: auto;
    }

    .gameplay-item_tabs-content .gameplay-item_text {
        width: 60%;
    }

    .gameplay-item_tabs-content .gameplay-item_img {
        width: 20vw;
    }

    .gameplay-item_tabs-content:nth-child(2) .gameplay-item_img {
        margin-top: 0;
        top: 36%;
        width: 50%;
        right: auto;
        left: 0;
    }

    .gameplay-item_tabs-content .gameplay-item_text-hint {
        padding-left: 30px;
        width: 100%;
        margin-top: calc(30vw + 5%) !important;
    }

    .gameplay-item_tabs-content .gameplay-item_text-hint:before {
        width: 15px;
        height: 15px;
    }

    .gameplay-item:nth-child(4) .gameplay-item_back {
        top: 0;
        right: 0;
        width: 30%;
    }

}

/* End Section GamePlay CSS */

/* Start Section RoadMap CSS */
.section-roadmap {
    margin-top: 150px;
    z-index: 0;
}

.roadmap-outer {
    position: relative;
}

.roadmap-inner>.heading {
    background: -o-linear-gradient(181.76deg, #7335D8 -8.52%, #C279FC 122.74%);
    background: linear-gradient(268.24deg, #7335D8 -8.52%, #C279FC 122.74%);
    color: #7335D8;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
    padding-bottom: 110px;
    font-size: 120px;
    line-height: 100%;
    opacity: 0.3;
}

.roadmap-item {
    width: 25%;
    text-align: center;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 240px;
}

.roadmap-item_bounce {
    position: relative;
}

.roadmap-item_bounce:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    height: 7px;
    background: rgba(255, 255, 255, 0.3);
    width: 18vw;
}

.roadmap-items-row:not(:nth-child(2)) .roadmap-item .roadmap-item_bounce:before {
    right: calc(100% - 5px);
}

.roadmap-items-row:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.roadmap-items-row:nth-child(2) .roadmap-item .roadmap-item_bounce:before {
    left: calc(100% - 5px);
}

.roadmap-item_completed .roadmap-item_bounce:before {
    background: #6100FF;
}

.roadmap-items-row:not(:first-child) .roadmap-item:first-child .roadmap-item_bounce:before {
    content: none;
}


.roadmap-items-row:first-child .roadmap-item:first-child .roadmap-item_bounce:before {
    width: 20vw;
}

.roadmap-item .img-wrapper {
    width: 60px;
}

.roadmap-item .img-wrapper img {
    display: block;
    width: 100%;
}

.roadmap-item_title {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 25px;
    line-height: 35px;
    white-space: nowrap;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.roadmap-item_list {
    /*  position: absolute;
    left: 50%;
    width: 100%;
    top: 100%; */
    margin-top: 20px;
    padding: 0 40px;
    /*   transform: translateX(-50%); */
}

.roadmap-item_list li {
    text-align: left;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    font-weight: 400;
    padding-left: 30px;
}

.roadmap-item_list li+li {
    margin-top: 15px;
}

.roadmap-item_list li:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.roadmap-item_list li:before {
    border: 1px solid #E0E2E7;

}

.roadmap-item_list li.active:before {
    border: none;
    background: -o-linear-gradient(181.76deg, #6100FF 8.3%, #9522F0 122.74%);
    background: linear-gradient(268.24deg, #6100FF 8.3%, #9522F0 122.74%);
}

.roadmap-item_list li.active:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    left: 8px;
    top: 0;
}


.roadmap-item_last .roadmap-item_bounce:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    top: 10px;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.roadmap-items-row:not(:nth-child(2)) .roadmap-item_last .roadmap-item_bounce:after {
    border-top: 7px solid #6100FF;
    border-right: 7px solid #6100FF;
    right: 64px;
}

.roadmap-items-row:nth-child(2) .roadmap-item_last .roadmap-item_bounce:after {
    border-bottom: 7px solid #6100FF;
    border-left: 7px solid #6100FF;
    left: 64px;
}


.roadmap-items-row:not(:first-child) {
    margin-top: 120px;
}

.roadmap-items-row:nth-child(2) .roadmap-item:first-child:before,
.roadmap-items-row:last-child .roadmap-item:first-child:before {
    content: '';
    position: absolute;
    width: 65%;
    border: 7px solid rgba(255, 255, 255, 0.3);
    border-radius: 200px;
    bottom: 100%;
    margin-bottom: -35px;
    z-index: -1;
    height: 369px;
}

.roadmap-items-row:nth-child(2) .roadmap-item:first-child:before {
    /*   height: 319px; */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
    right: -15%;
}

.roadmap-items-row:last-child .roadmap-item:first-child:before {

    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    left: -15%;
}


.roadmap-items-row:not(:first-child) .roadmap-item.roadmap-item_completed:first-child:before {
    border-color: #6100FF;
}

.roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    height: 7px;
    background: rgba(255, 255, 255, 0.3);
    width: 19vw;
    left: calc(100% - 5px);
    border-radius: 20px;
}

.roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    top: -17px;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 7px solid rgba(255, 255, 255, 0.3);
    border-right: 7px solid rgba(255, 255, 255, 0.3);
    right: -2px;
}

.roadmap-outer__bg-back>* {
    z-index: -1;
}

.roadmap-outer__bg-back .bg-back-1 {
    position: absolute;
    width: 50%;
    height: 55%;
    background: rgba(147, 4, 167, 0.5);
    -webkit-filter: blur(300px);
    filter: blur(300px);
    top: 10%;
    border-radius: 50%;
    right: -10%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1950px) {
    .roadmap-items-row:first-child .roadmap-item:first-child .roadmap-item_bounce:before {
        width: 21vw;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span {
        width: 20vw;
    }

    .roadmap-item_list li:before {
        width: 1vw;
        height: 1vw;
    }

    .roadmap-item_list li.active:after {
        width: 0.3vw;
        height: 0.6vw;
        left: 0.37vw;
    }

    .roadmap-item_list li {
        font-size: .7vw;
        line-height: 100%;
        padding-left: 1.5vw;
    }

    .roadmap-item_title {
        font-size: 1.5vw;
        line-height: 100%;
    }

    .roadmap-inner>.heading {
        font-size: 6vw;
        line-height: 100%;
        padding-bottom: 6vw;
    }
}

@media screen and (max-width: 1750px) {
    .roadmap-items-row:first-child .roadmap-item:first-child .roadmap-item_bounce:before {
        width: 19vw;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span {
        width: 15vw;
    }

    .roadmap-item_bounce:before {
        width: 19vw;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span:after {
        right: -1%;
    }
}

@media screen and (max-width: 1500px) {
    .roadmap-item_list li {
        font-size: 1vw;
        line-height: 120%;
    }

    .roadmap-inner>.heading {
        font-size: 10vw;
        line-height: 120%;
    }

    .section-roadmap {
        margin-top: 100px;
    }

    .roadmap-item_title {
        font-size: 1.5vw;
        line-height: 120%;
    }
}

@media screen and (max-width: 1199px) {
    .roadmap-inner>.heading {
        font-size: 35px;
        line-height: 120%;
        color: #ffffff;
        text-align: left;
        background: transparent;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        opacity: 1;
        padding-bottom: 40px;
        position: relative;
        padding-left: 15px;
    }

    .roadmap-inner>.heading:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: #6100FF;
    }

    .roadmap-items-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .roadmap-items-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
    }

    .roadmap-item {
        width: 100%;
        min-height: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
        padding-left: 38px;

    }

    .roadmap-item_title {
        position: relative;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        bottom: auto;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 120%;
    }

    .roadmap-item_bounce {
        position: absolute;
        left: -17px;
        top: -5px;
    }

    .roadmap-item .img-wrapper {
        width: 35px;
    }

    .roadmap-item_list {
        margin-top: 0;
        padding: 0;
    }

    .roadmap-item_list li:before {
        width: 15px;
        height: 15px;
        top: 1px;
    }

    .roadmap-item_list li {
        font-size: 16px;
        line-height: 120%;
    }

    .roadmap-item_list li.active:after {
        width: 5px;
        height: 8px;
        left: 5px;
        top: 3px;
    }

    .roadmap-item:not(:first-child) {
        margin-top: 25px;
    }

    .roadmap-item:before,
    .roadmap-items-row:nth-child(2) .roadmap-item:first-child:before,
    .roadmap-items-row:last-child .roadmap-item:first-child:before {
        content: '';
        position: absolute;
        top: -25px;
        left: 0;
        width: 3px;
        height: 30px;
        background: rgba(255, 255, 255, 0.3);
        z-index: -1;
        border: none;
        border-radius: 0;
    }

    .roadmap-item .roadmap-item_bounce:before,
    .roadmap-items-row:first-child .roadmap-item:first-child:before {
        content: none;
    }

    .roadmap-item:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3px;
        height: calc(100% - 20px);
        background: rgba(255, 255, 255, 0.3);
        z-index: -1;
    }

    .roadmap-item:not(:first-child).roadmap-item_completed:before,
    .roadmap-item.roadmap-next-item_completed:after,
    .roadmap-items-row:nth-child(2) .roadmap-item.roadmap-item_completed:first-child:before,
    .roadmap-items-row:last-child .roadmap-item.roadmap-item_completed:first-child:before {
        background: #6100FF;
    }

    .roadmap-item_last .roadmap-item_bounce:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        top: -17px;
        bottom: auto;
        right: auto;
        left: 11px;
    }

    .roadmap-items-row:not(:nth-child(2)) .roadmap-item_last .roadmap-item_bounce:after,
    .roadmap-items-row:nth-child(2) .roadmap-item_last .roadmap-item_bounce:after {
        border-right: 3px solid #6100FF;
        border-bottom: 3px solid #6100FF;
        border-top: none;
        border-left: none;
        left: 11px;
    }

    .roadmap-items-row:not(:first-child) {
        margin-top: 25px;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span {
        width: 3px;
        height: 5vw;
        top: 100%;
        left: 17px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .roadmap-items-row:last-child .roadmap-item:last-child:after {
        content: none;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 15px;
        height: 15px;
        top: 3vw;
        bottom: auto;
        right: auto;
        left: -6px;
        border-right: 3px solid;
        border-bottom: 3px solid;
        border-color: rgba(255, 255, 255, 0.3);
        border-top: none;
        border-left: none;
    }

    .roadmap-item .list-more {
        font-size: 16px;
        line-height: 120%;
        color: rgba(255, 255, 255, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        margin-top: 5px;
    }

    .roadmap-outer__bg-back {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .section-roadmap {
        margin-top: 70px;
    }

    .roadmap-inner>.heading {
        font-size: 25px;
        line-height: 32px;
    }

    .roadmap-inner {
        padding-left: 15px;
    }

    .roadmap-items-row:last-child .roadmap-item:last-child .roadmap-item_bounce>span {
        height: 7vw;
    }
}

/* End Section RoadMap CSS */

/* Start Section Team CSS */
.section-team {
    margin-top: 150px;
}

.team-outer {
    position: relative;
}

.team-inner_items {
    margin: 0 -25px;
}

.team-inner_item {
    width: calc(33.3% - 50px);
    margin: 0 25px;
    overflow: hidden;
    background: rgba(26, 32, 80, 0.6);
    -webkit-box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(12.5px);
    backdrop-filter: blur(12.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.team-inner_item>* {
    width: 100%;
}

.team-inner_item img {
    display: block;
    width: 100%;
}

.team-inner_item--descript {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 15px 20px 30px;
}

.team-inner_item--descript .default-text {
    font-size: 14px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.team-inner_item-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    padding-bottom: 5px;
}

.team-inner_item-sub-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */


    color: rgba(255, 255, 255, 0.8);
}

.team-inner_item-mail {
    margin-top: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    color: rgba(255, 255, 255, 0.6);
}

.team-inner_item-mail:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.team-inner .btn-wrapper {
    margin-top: 150px;
}

.team-outer__bg-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-outer__bg-back .bg-back-1 {
    width: 100%;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /*  transition: transform .1s; */
}

.team-outer__bg-back img {
    display: block;
    width: 100%;
}

@media screen and (min-width: 1950px) {
    .team-inner_item-title {
        font-size: 1.5vw;
        line-height: 1.8vw;
    }

    .team-inner_item-sub-title {
        font-size: .8vw;
        line-height: 1vw;
    }

    .team-inner_item-mail {
        font-size: 1vw;
        line-height: 1.2vw;
        padding: 0.5vw 1vw;
    }

    .team-inner_item--descript {
        padding: 1.5vw 1vw 2vw;
    }
}

@media screen and (max-width: 1500px) {

    .section-team,
    .team-inner .btn-wrapper {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .team-inner_items {
        margin: 0;
        margin: 0 -3px;
    }

    .team-inner_item {
        width: calc(50% - 6px);
        margin: 0 3px 6px;
    }

    .team-inner_item-title {
        font-size: 16px;
        line-height: 120%;
    }

    .team-inner_item-sub-title {
        font-size: 12px;
        line-height: 130%;
    }

    .team-inner_item--descript {
        padding: 20px 10px 25px;
    }

    .team-inner_item-mail {
        margin-top: 20px;
    }

    .team-inner .btn-wrapper {
        margin-top: 70px;
    }

    .team-outer__bg-back {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .section-team,
    .team-inner .btn-wrapper {
        margin-top: 70px;
    }

    .team-inner_items {
        margin: 0;
    }

    .team-inner_item {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
}

/* End Section Tean CSS */