@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/GreycliffCF-Medium.woff2') format('woff2'),
        url('/fonts/GreycliffCF-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/GreycliffCF-Light.woff2') format('woff2'),
        url('/fonts/GreycliffCF-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/GreycliffCF-Bold.woff2') format('woff2'),
        url('/fonts/GreycliffCF-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/GreycliffCF-Regular.woff2') format('woff2'),
        url('/fonts/GreycliffCF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('/fonts/GreycliffCF-DemiBold.woff2') format('woff2'),
        url('/fonts/GreycliffCF-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quincy CF';
    src: url('/fonts/QuincyCF-Bold.woff2') format('woff2'),
        url('/fonts/QuincyCF-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quincy CF';
    src: url('/fonts/QuincyCF-Medium.woff2') format('woff2'),
        url('/fonts/QuincyCF-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quincy CF';
    src: url('/fonts/QuincyCF-Regular.woff2') format('woff2'),
        url('/fonts/QuincyCF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quincy CF';
    src: url('/fonts/QuincyCF-Black.woff2') format('woff2'),
        url('/fonts/QuincyCF-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Light.woff2') format('woff2'),
        url('/fonts/Manrope-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Bold.woff2') format('woff2'),
        url('/fonts/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraBold.woff2') format('woff2'),
        url('/fonts/Manrope-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Medium.woff2') format('woff2'),
        url('/fonts/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.woff2') format('woff2'),
        url('/fonts/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Thin.woff2') format('woff2'),
        url('/fonts/Manrope-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Semibold.woff2') format('woff2'),
        url('/fonts/Manrope-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    background: none;
    border: none;
}

:root {
    --akcent: #096A8C;
    --color: #000229;
    --violet: #573AA0;
    --greycliff: 'Greycliff CF', sans-serif;
    --quincy: 'Quincy CF', sans-serif;
    --manrope: 'Manrope', sans-serif;
    --title-size: 58px;
    --title-size-small: 45px;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 1600px) {
    :root {
        --title-size: 45px;
        --title-size-small: 35px;
    }
}

@media (max-width: 1400px) {
    :root {
        --title-size: 40px;
        --title-size-small: 30px;
    }
}

@media (max-width: 1200px) {
    :root {
        --title-size: 30px;
        --title-size-small: 25px;
    }
}

@media (max-width: 550px) {
    :root {
        --title-size: 8.7vw;
        --title-size-small: 10vw;
    }
}

body {
    font-family: var(--manrope);
    font-size: 15px;
    line-height: 1.5;
    color: var(--color);
    scroll-behavior: smooth;
    background: #f2f2f2;
}

a {
    color: var(--color);
    text-decoration: none;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

sup {
    line-height: 0;
    vertical-align: super;
    font-size: 60%;
}
h2 sup {font-size: 60%;}
p sup {font-size: inherit;}

h2.title {
    font-size: var(--title-size);
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--manrope);
}
h2.title span {
    font-weight: 300;
}
h2.title b {font-weight: 600;}

p, span, li {font: inherit;}

p.sub {
    font-size: 22px;
    margin-top: 30px;
    color: #6F707F;
}
p.sub b {font-weight: 600;}

section {margin: 0;}

.rounded {
    border-radius: 30px;
    margin-top: 30px;
}

.tx-c {text-align: center;}
.tx-r {text-align: right;}

.overflow-hidden {overflow-x: hidden;}

.center {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 15px;
}
.wrapper {overflow-x: hidden;}
.d-none {display: none !important;}

@media (max-width: 1600px) {
    .center {max-width: 1200px;}
    p.sub {font-size: 17px;}
}

@media (max-width: 1400px) {
    .center {max-width: 1000px;}
    p.sub {font-size: 15px;}
}

@media (max-width: 767px) {
    .s-767 {display: block !important;}
    .h-767 {display: none !important;}

    .rounded {
        border-radius: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 550px) {
    .s-550 {display: block !important;}
    .h-550 {display: none !important;}
}

.btn-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0 15px;
}

.btn-group > p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 18px;
}
.btn-group > p svg {
    width: 15px;
    height: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    min-height: 62px;
    padding: 0 30px;
    font-family: var(--greycliff);
    font-family:'Manrope';
    font-size: 19px;
    font-weight: 500;
    color: var(--color);
    border: 1px solid transparent;
    border-radius: 30px;
    background: #fff;
    min-width: 350px;
}
.btn > div {
    position: relative;
    top: 0px;
    overflow: hidden;
    max-height: 29px;
}
.btn > div > div {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    transition: all 0.2s ease-out;
}
.btn > div > div span:nth-of-type(1) {
    top:1px;
    position:relative;
}
.btn svg {
    width: 8px;
    height: 14px;
}
.btn:hover {color: var(--color);}
.btn:hover > div > div {transform: translateY(-50%);}
.btn.glass {
    background: black;
    backdrop-filter: blur(7px);
    color: #fff;
}
.btn.blue {
    background: linear-gradient(90deg, #2273B5 0%, #43A7DE 100%);
    color: #fff;
}

@supports (-webkit-backdrop-filter: none) {
    .btn.glass {
        box-shadow: none;
        border-top: 1px solid rgba(255,255,255,.5);
        border-left: 0.5px solid rgba(255,255,255,.5);
        border-right: 0.5px solid rgba(255,255,255,.5);
        border-bottom: 1px solid rgba(255,255,255,.5);
    }
}

.btn.black {
    background: #000229;
    color: #fff;
}
.btn.ghost {
    background: transparent;
    color: var(--color);
    border-color: var(--color);
}

@media (max-width: 1600px) {
    .btn {zoom: 0.85;}
    .btn-group > p {
        font-size: 12px;
        margin-top: 20px;
    }
    .btn-group > p svg {width: 13px; height: 13px;}
}

@media (max-width: 1400px) {
    .btn {zoom: 0.8;}
    .btn-group > p {font-size: 12px;}
}

@media (max-width: 1024px) {
    .btn {zoom: 0.7;}
    .btn-group > p {
        font-size: 11px;
        margin-top: 15px;
    }
    .btn-group > p svg {
        zoom: 0.8;
        position: relative;
        top: -1px;
    }
}

@media (max-width: 767px) {
    .btn {zoom: 0.8;}
    .btn-group > p {font-size: 12px;}
    .btn-group > p svg {zoom: 0.9;}
}

@media (max-width: 550px) {
    .btn {zoom: 0.9;}
    .btn > div {max-height: 30px;}
    .btn-group {
        max-width: 100%;
        width: 100%;
    }
    .btn-group .btn {width: 100%;}
    .btn-group > p svg {
        zoom: 1;
        top: 0;
    }
    .btn-group > p {
        font-size: 3.4vw;
        gap: 5px;
    }
}

/* ------------------ HEADER ------------------ */
#header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 991;
    padding: 14px 0;
    box-shadow: rgba(0, 2, 41, 0.04) 0px 10px 24px 0px;
    border-radius: 0 0 20px 20px;
    background: #fff;
}
#header .center {
    max-width: 1535px;
    display: flex;
    align-items: center;
}

.logo {
    line-height: 0;
}
.logo img {
    height:100%;
    max-height:30px;
    width:auto;
}
.logo svg {
    width: 245px;
    height: 45px;
}
.logo:last-of-type {
    margin-left:30px;
}
#header .btn {
    margin-left: auto;
    min-height: 47px;
    font-size: 15px;
    font-weight: 600;
    padding: 0 20px;
    min-width: inherit;
}
#header .btn > div {max-height: 25px;}

@media (max-width: 1600px) {
    #header .center {max-width: 1300px;}
    .logo, 
    .novo {zoom: 0.7;}
}

@media (max-width: 1400px) {
    #header .center {max-width: 1100px;}
}

@media (max-width: 1100px) {
    #header {padding-bottom: 10px;}

    .logo {zoom: 1;}

    .novo {zoom: 1;}

    #header .inner {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 550px) {
    #header .btn {display: none;}
    .logo:last-of-type {
        margin:0;
        margin-left:auto;
    }
}

/* ------------------ HOME ------------------ */
.home {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}
.home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(272.15deg, #61B7E7 1.81%, #2273B5 98.19%);
}

.home .slick-ticker {
    margin-bottom: 40px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.home .slick-list {margin-bottom: 0;}

.label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F5F5F6;
    border-radius: 30px;
    padding: 0 11px;
    min-height: 30px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(153,154,169,.8);
}
.label span {
    position: relative;
    top: 0.5px;
}
.label svg {
    width: 12px;
    height: 12px;
    position: relative;
    top: 0.5px;
}

.home-content {
    width: 50%;
    position: relative;
    z-index: 2;
    padding: 120px 0 150px 0;
}
.home-content .label {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
}
.home-content h1 {
    font-size: 62px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 25px;
}
.fact {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    border-left: 2px solid #fff;
    padding-left: 13px;
}

.home-content .fact {max-width: 575px;}

.home-content .text {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 575px;
}

.home-content .foot {
    display: flex;
    align-items: start;
    gap: 25px;
}

.home-content .btn {
    min-width: 320px;
    min-height: 55px;
}

.home-content .icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 7px;
}
.home-content .icons > div {
    display: flex;
    align-items: center;
    gap: 7px;
}
.home-content .icons > div:last-child img {
    position: relative;
    top: -4px;
}
.home-content .icons span {
    position: relative;
    top: 2px;
}

.home-content .list {
    margin: 25px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}
.home-content .list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-content .list li .icon {
    min-width: 28px;
    line-height: 0;
    text-align: center;
}

.home-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url(../img/home/bg.webp) no-repeat center top;
    background-size: cover;
    overflow: hidden;
}

@media (max-width: 1600px) {
    .home-content {
        padding: 100px 0 140px 0;
        zoom: 0.9;
    }
    .home-content h1 {font-size: 55px;}
    .fact {font-size: 16px;}
    .home-content .fact {max-width: 520px;}
    .home-content .text {
        font-size: 15px;
        max-width: 510px;
    }
    .home-content .foot {gap: 15px;}
    .home-content .icons {
        margin-top: 5px;
        zoom: 0.9;
        gap: 15px;
    }

    .home .slick-ticker {margin-bottom: 30px;}
    .slick-ticker .list-item {zoom: 0.9;}

    .home-image {
        padding-top: 40px;
        padding-left: 50px;
    }

    .label {
        zoom: 0.8;
        gap: 3px;
    }
}

@media (max-width: 1400px) {
    .home-content {
        padding: 75px 0 100px 0;
        zoom: 1;
    }
    .home-content h1 {font-size: 45px;}
    .home-content .text {
        font-size: 13px;
        margin-bottom: 25px;
        max-width: 450px;
    }
    .home-content .btn {min-width: 290px;}
    .home-content .icons {
        margin-top: 10px;
        zoom: 0.75;
        gap: 10px;
    }

    .fact {
        font-size: 13px;
        padding-top: 2px;
    }
    .home-content .fact {max-width: 425px;}

    .slick-ticker .list-item {zoom: 0.8;}
}

@media (max-width: 1300px) {
    .home .slick-ticker {margin-bottom: 20px;}
    .slick-ticker .list-item {zoom: 0.7;}
}

@media (max-width: 1024px) {
    .home-content {padding: 20px 15px 80px 0;}
    .home-content h1 {font-size: 37px;}
    .home-content .text {
        font-size: 11px;
        max-width: 370px;
    }
    .home-content .foot {flex-direction: column;}
    .home-content .icons {
        margin-top: 10px;
        zoom: 0.8;
        gap: 10px;
    }
    .home-content .list {
        margin: 20px 0 0;
        gap: 10px 0;
    }
    .home-content .list li {font-size: 12px;}
    .home-content .list li .icon {zoom: 0.8;}
    .home-image {
        padding-top: 25px;
        padding-left: 25px;
        background-position: top right -100px;
    }

    .home-content .fact {max-width: 350px;}
}

@media (max-width: 767px) {
    .home-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 0 40px 0;
    }
    .home-content h1 {
        font-size: 45px;
        max-width: 500px;
    }
    .fact {
        text-align: left;
        font-size: 15px;
    }
    .home-content .fact {max-width: 400px;}
    .home-content .text {
        font-size: 14px;
        max-width: 475px;
    }
    .home-content .list li {font-size: 13px;}
    .home-image {
        position: relative;
        margin-left: -15px;
        margin-right: -15px;
        width: auto;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        min-height: 500px;
        background-position: top center;
    }
    .home-content .foot {align-items: center;}
    .home-content .icons {
        zoom: 1;
        gap: 25px;
    }

    .home .slick-ticker {
        margin-bottom: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 15px;
    }

    .home-content .list li {font-size: 15px;}
    .home-content .list li .icon {zoom: 1;}
}

@media (max-width: 550px) {
    .home:before {background: linear-gradient(166.81deg, #2273B5 0%, #61B7E7 64.27%);}
    .home-content {
        padding: 30px 0 30px 0;
        align-items: start;
        text-align: start;
    }

    .label {
        zoom: 1;
        padding: 0 15px;
        min-height: 30px;
        font-size: 11px;
        font-weight: 500;
    }

    .home-content h1 {
        font-size: 9.5vw;
        line-height: 1.3;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .home-content .fact {
        font-size: 4vw;
        max-width: 350px;
    }
    .home-content .text {
        font-size: 3.8vw;
        line-height: 1.7;
        max-width: 370px;
        margin-bottom: 30px;
    }
    .home-content .foot {width: 100%;}
    .home-content .btn-group {width: 100%;}
    .home-content .btn {width: 100%;}

    .home-content .icons > div {
        flex-direction: column;
        text-align: center;
        gap: 7px;
    }
    .home-content .icons > div.d-none {display: flex !important;}
    .home-content .icons > div:nth-child(2) {order: -1;}
    .home-content .icons > div:last-child img {
        top: 0;
        max-width: 40px;
    }

    .home-content .icons {
        zoom: 0.8;
        gap: 35px;
    }

    .home-content .list {
        margin: 25px 0 0;
        gap: 17px 0;
    }

    .fact {
        font-size: 4vw;
        max-width: initial;
        font-weight: 600;
        padding-left: 10px;
    }

    .home-image {
        background: url(../img/home/bg-mob.webp) no-repeat top right;
        background-size: cover;
        min-height: 550px;
        padding-top: 20px;
        padding-left: 15px;
    }
}


.stype {
    width:95%;
    max-width:800px;
    margin:0 auto;
    text-align:center;
    font-size:11px;
    margin:30px auto 0;
    opacity: 0.6;
    color: #0A1533;
}
/* ------------------ CONNECTING ------------------ */
.connecting {padding: 50px 0 55px 0;}
.connecting .logo {
    display:flex;
    justify-content:space-between;
}

.connecting .logo img {
    max-height: 45px;
}
.connecting .logo:last-of-type {
    margin: 0 186px;
}
.connecting .logo svg {width: 380px; height: 68px;}
.connecting h2.title {margin-top: 40px;}
.connecting h2.title b {font-weight: 500;}
.connecting .sub {
    max-width: 955px;
    margin: 30px auto 0 auto;
    color: #6F707F;
}
.connecting .sub b {font-weight: 600;}

.connecting-grid {
    margin: 40px auto 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.connecting-item {
    background: #FAFBFD;
    border-radius: 24px;
    border: 1.5px solid #E8EDF4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 25px 10px;
} 

.connecting-item .icon i {
    width: 47px;
    height: 47px;
    display: inline-block;
}

.connecting-item h3 {
    font-size: 23px;
    font-weight: bold;
    margin-top: 10px;
}
.connecting-item p {
    font-size: 19px;
    margin-top: 10px;
    color: #888888;
    text-align: center;
}

.connecting .btn {min-width: 350px;}

@media (max-width: 1600px) {
    .connecting .sub {max-width: 750px;}
    .connecting-grid {gap: 15px;}
    .connecting-item {
        border-radius: 15px;
        padding: 20px 10px 20px 10px;
    }
    .connecting-item .icon {zoom: 0.8;}
    .connecting-item h3 {font-size: 18px;}
    .connecting-item p {font-size: 15px;}
}

@media (max-width: 1400px) {
    .connecting .sub {max-width: 650px;}
}

@media (max-width: 1300px) {
    .connecting .logo img,
    .connecting .logo svg {
        max-height: 30px;
    }
}

@media (max-width: 991px) {
    .connecting h2.title {margin-top: 30px;}
    .connecting-item .icon {zoom: 0.7;}
    .connecting-item h3 {font-size: 15px;}
    .connecting-item p {font-size: 13px;}
}

@media (max-width: 767px) {
    .connecting-grid {grid-template-columns: repeat(2, 1fr);}
    .connecting .logo:last-of-type {
        margin: 0;
    }
}

@media (max-width: 550px) {
    .connecting .tx-c {text-align: left;}
    .connecting .logo svg {
        width: 220px;
        height: 40px;
    }
    .connecting h2.title {
        margin-top: 20px;
        font-size: 9.5vw;
    }
    .connecting .sub {
        margin-top: 25px;
        font-size: 3.8vw;
    }

    .connecting-grid {gap: 10px;}
    .connecting-item {
        border-radius: 15px;
        padding: 15px 10px 15px 10px;
        border-width: 1px;
    }
    .connecting-item h3 {margin-top: 7px;}
    .connecting-item p {margin-top: 7px;}
    .connecting .connecting-grid + .tx-c {text-align: center;}
}

/* ------------------ COMPLETE ------------------ */
.complete {
    position: relative;
    color: #fff;
}
.complete .label {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
}
.complete h2.title {margin: 15px 0 20px 0;}
.complete .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1620px;
}
.complete-image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: url(../img/connecting/bg.webp?1) no-repeat center top;
    background-size: cover;
}
.complete:after {
    content: '';
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #3F92CC;
}
.complete-image svg {
    position: relative;
    z-index: 3;
    width: 304px;
    height: 88px;
    margin-top: 50px;
}

.complete-content {
    padding: 70px 0 50px 75px;
    position: relative;
    z-index: 2;
}
.complete-content .fact {
    max-width: 620px;
    font-size: 20px;
}

.table {
    display: grid;
    grid-template-columns: 1fr 145px 145px;
    margin-top: 35px;
    font-size: 18px;
    font-weight: 500;
}
.table .col .td:nth-child(even) {background: rgba(255,255,255,.06);}
.table .col .td:nth-child(odd) {background: rgba(255,255,255,.11);}
.table .col .td:first-child {
    background: none;
    border: none;
}
.table .col .td:nth-child(2) {border: none;}
.table .col:nth-child(2) .td:nth-child(2),
.table .col:nth-child(3) .td:nth-child(2) {border-top: 1px solid rgba(255,255,255,.1);}

.table .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.table .col:first-child .td:nth-child(2) {border-radius: 20px 0 0 0;}
.table .col:first-child .td:last-child {border-radius: 0 0 0 20px;}
.table .col:nth-child(2) {border-radius: 20px 20px 0 0;}
.table .col:nth-child(3) {
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .11);
}
.table .col:nth-child(2) .td,
.table .col:nth-child(3) .td {justify-content: center;}
.table .col:nth-child(2) {background: #297AB9;}

/* Border */
.table .col:nth-child(2),
.table .col:nth-child(3) {position: relative;}
.table .col:nth-child(2):after,
.table .col:nth-child(3):after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border: 1px solid #69acd8;
    border-radius: 20px 20px 0 0;
}

.table .col:nth-child(2) .border-bottom,
.table .col:nth-child(3) .border-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, #caf8fc, transparent);
}

.table .col:nth-child(2) .border-right,
.table .col:nth-child(3) .border-right {
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 0;
    width: 1px;
    z-index: 2;
    background: linear-gradient(0, transparent, #d0fbfe, transparent);
}

.table small {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    margin-top: 30px;
    grid-column: 1 / 4;
}
.table svg {
    width: 27px;
    height: 27px;
}
.table .col:nth-child(3) svg {opacity: 0.5;}
.table .td {
    min-height: 85px;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.table .td b {font-weight: 600;}
.table .heading {
    text-align: center;
    flex-direction: column;
}
.table .heading h4 {
    font-weight: 500;
    font-size: 17px;
    text-align: center;
}
.table .heading b,
.table .heading span {
    font-weight: 900;
    font-size: 14px;
}
.table .heading span {
    font-weight: normal;
    margin-top: 5px;
}
.table .heading b {margin-top: 3px;}
.table h3 {
    font-size: 23px;
    font-weight: 600;
}
.table .hyphen {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.5);
}

@media (max-width: 1600px) {
    .complete h2.title {max-width: 600px;}
    .complete-content {padding: 40px 0 40px 40px;}
    .complete-content .fact {
        max-width: 500px;
        font-size: 15px;
    }
    .complete-image svg {
        width: 230px;
        height: 65px;
        margin-top: 35px;
        margin-left: 20px;
    }

    .table {font-size: 15px;}
    .table .td {min-height: 70px;}
    .table .heading h4 {font-size: 14px;}
    .table .heading b, 
    .table .heading span {font-size: 12px;}
    .table h3 {font-size: 18px;}
    .table small {font-size: 12px;}
}

@media (max-width: 1400px) {
    .complete h2.title {max-width: 550px;}
    .complete-content .fact {
        max-width: 465px;
        font-size: 14px;
    }

    .table {
        font-size: 14px;
        grid-template-columns: 1fr 120px 120px;
    }
    .table .heading h4 {font-size: 13px;}
    .table h3 {font-size: 15px;}
}

@media (max-width: 1300px) {
    .complete-content {padding: 30px 0 30px 15px;}
    .table {
        font-size: 12px;
        grid-template-columns: 1fr 90px 90px;
    }
    .table h3 {font-size: 13px;}
    .table .td {min-height: 75px;}
    .table .heading h4 {font-size: 11px;}
    .table small {
        font-size: 10px;
        margin-top: 20px;
    }
    .table .heading b, 
    .table .heading span {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .complete:after {display: none;}
    .complete .center {grid-template-columns: 1fr;}
    .complete-content .fact {font-size: 12px;}

    .complete-image {
        min-height: 900px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0 0 15px 15px;
        overflow: hidden;
        margin-bottom: -15px;
        position: relative;
        z-index: 3;
    }
    .complete-image:before {
        position: static;
        width: 100%;
        height: 100%;
    }

    .complete-image svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 180px;
        height: 55px;
        margin-top: 20px;
    }

    .complete h2.title {max-width: inherit;}
    .complete-content {
        padding: 50px 15px 50px 15px;
        background: #3F92CC;
        margin-left: -15px;
        margin-right: -15px;
    }
    .complete-content .fact {max-width: inherit;}

    .table {
        font-size: 13px;
        grid-template-columns: 1fr 120px 120px;
    }
    .table .heading h4 {font-size: 13px;}
    .table .heading b, 
    .table .heading span {
        font-size: 12px;
    }
    .table h3 {font-size: 16px;}
    .table small {font-size: 11px;}
    .table svg {width: 20px; height: 20px;}
}

@media (max-width: 767px) {
    .complete-image {min-height: 700px;}
}

@media (max-width: 550px) {
    .complete h2.title {font-size: 10.8vw;}
    .complete-image {min-height: 465px;}
    .complete-image svg {
        width: 140px;
        height: 40px;
    }
    .complete-image:before {
        background: url(../img/connecting/bg-mob.webp) no-repeat center top;
        background-size: cover;
    }
    .complete-content .fact {font-size: 4.3vw;}

    .complete-content .btn-group {
        margin: 30px auto 0 auto;
        display: block !important;
    }
    .complete-content .btn-group > p {justify-content: center;}

    .table {
        grid-template-columns: 1fr 90px 90px;
        font-size: 3.6vw;
        line-height: 1.3;
    }
    .table .td {
        padding: 10px 13px;
        min-height: 100px;
    }
    .table .td:first-child {
        min-height: 70px;
        padding: 0;
    }
    .table .heading h4 {font-size: 12px;}
    .table .heading b, 
    .table .heading span {
        font-size: 11px;
    }
    .table .col:first-child .td:nth-child(2) {border-radius: 15px 0 0 0;}
    .table .col:first-child .td:last-child {border-radius: 0 0 0 15px;}
    .table .col:nth-child(3) {border-radius: 15px 15px 15px 0;}
    .table .col:nth-child(2) {border-radius: 15px 15px 0 0;}

    .table small {
        font-size: 11px;
        line-height: 1.6;
        font-weight: normal;
        max-width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin: 30px auto 0 auto;
    }

    .table .col:nth-child(2):after,
    .table .col:nth-child(3):after {
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 380px) {
    .table {
        grid-template-columns: 1fr 80px 80px;
        font-size: 3.3vw;
    }
    .table .heading h4 {font-size: 11px;}
}

/* ------------------ PRICE ------------------ */
.price {padding: 40px 0 20px 0;}
.price .title {
    margin-top: 25px;
    font-weight: 500;
}
.price .sub {margin-top: 20px;}
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 17px;
    margin-top: 40px;
}
.price-grid .item {
    background: #F0F2F5;
    border-radius: 17px;
    padding: 25px;
    min-height: 315px;
}
.price-grid .item:first-child {
    background: linear-gradient(160deg, #4A9FD4 8.49%, #2D7AB8 91.51%);
    color: #DEEDF8;
}
.price-grid .item:first-child strong {color: #DEEDF8;}
.price-grid .item:first-child .head {color: #fff;}
.price-grid .item .head {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-grid .item .head span {
    font-size: 33px;
    font-weight: 600;
    position: relative;
}
.price-grid .item .head span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 3px;
    margin-top: -2.5px;
    background: #FF0000;
    transform: rotate(-10deg);
}
.price-grid .item h3 {
    font-size: 70px;
    font-weight: 900;
}
.price-grid .item strong {
    text-transform: uppercase;
    color: #3A8FD1;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}
.price-grid .item p {
    font-size: 15px;
    margin-top: 20px;
}

.price .fee {
    margin-top: 20px;
    background: rgba(74,159,212,.61);
    display: flex;
    align-items: center;
    border-radius: 17px;
    color: #fff;
    padding: 15px 27px;
    font-size: 20px;
    margin-bottom: 55px;
}
.price .fee h4 {
    font-size: 32px;
    font-weight: bold;
    padding-right: 13px;
    margin-right: 20px;
    position: relative;
    letter-spacing: 0.5px;
}
.price .fee h4:after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    background: #fff;
}

.price .foot {text-align: center;}
.price .foot > p {
    margin-top: 45px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.6;
    color: #0A1533;
}
.price .foot > p sup {font-size: 80%;}

@media (max-width: 1600px) {
    .price-grid .item {min-height: 270px;}
    .price-grid .item h3 {font-size: 55px;}
    .price-grid .item .head {margin-bottom: 10px;}
    .price-grid .item strong {font-size: 10px;}
    .price-grid .item p {font-size: 13px;}
    .price-grid .item .head span {font-size: 30px;}
    .price .fee {
        border-radius: 15px;
        padding: 13px 20px;
        font-size: 16px;
    }
    .price .fee h4 {font-size: 25px;}
}

@media (max-width: 1400px) {
    .price-grid {gap: 10px;}
    .price-grid .item {min-height: 240px;}
    .price-grid .item h3 {font-size: 45px;}
    .price-grid .item strong {
        font-size: 10px;
        letter-spacing: 0.3px;
        line-height: 1.4;
        display: inline-block;
    }
    .price-grid .item .head span {font-size: 25px;}
    .price .fee {
        padding: 13px 15px;
        font-size: 14px;
    }
    .price .fee h4 {
        font-size: 18px;
        padding-right: 10px;
        margin-right: 15px;
    }
}

@media (max-width: 1300px) {
    .price-grid .item .head span {font-size: 20px;}
    .price-grid .item {padding: 15px;}
}

@media (max-width: 991px) {
    .price-grid .item .head span {font-size: 18px;}
    .price .fee h4 {
        font-size: 15px;
        padding-right: 5px;
        margin-right: 10px;
    }
    .price .fee {
        padding: 10px 10px;
        font-size: 11px;
        border-radius: 10px;
        margin-bottom: 40px;
    }
    .price .fee h4 {
        font-size: 15px;
        padding-right: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .price-grid {
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }
    .price-grid .item {min-height: 200px;}
    .price-grid .item h3 {font-size: 50px;}
    .price-grid .item .head span {font-size: 25px;}
    .price-grid .item strong {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .price-grid .item p {font-size: 15px;}

    .price .fee {
        padding: 15px 20px;
        font-size: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .price .fee h4 {
        font-size: 25px;
        padding-right: 0;
        margin-right: 0;
    }
    .price .fee h4:after {display: none;}
}

@media (max-width: 550px) {
    .price {padding-bottom: 30px;}
    .price .tx-c {text-align: left;}
    .price .title {
        margin-top: 15px;
        font-size: 9.5vw;
    }
    .price p.sub {
        font-size: 4vw;
        color: #474747;
    }

    .price-grid {
        margin-top: 30px;
        gap: 13px;
    }
    .price-grid .item {border-radius: 13px;}
    .price-grid .item h3 {font-size: 40px;}
    .price-grid .item strong {
        font-size: 2.55vw;
        letter-spacing: 0.3px;
    }
    .price-grid .item .head {margin-bottom: 10px;}
    .price-grid .item p {
        margin-top: 10px;
        font-size: 2.75vw;
    }
    .price-grid .item .head span {font-size: 19px;}

    .price .fee {
        padding: 20px 20px;
        font-size: 12px;
        gap: 13px;
        margin-top: 10px;
        background: #89c1e3;
        margin-bottom: 35px;
    }
    .price .fee h4 {font-size: 20px;}

    .price .foot > p {
        margin-top: 30px;
        font-size: 10px;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 380px) {
    .price-grid .item .head span {font-size: 15px;}
}

/* ------------------ TREATABLE ------------------ */
.treatable {
    color: #fff;
    background: url(../img/treatable/bg.webp) no-repeat right top;
    background-size: cover;
    padding: 80px 0 100px 0;
}
.treatable .list {
    margin: 45px 0 75px 0;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 55px;
}
.treatable .list li .head {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
}
.treatable .list li .head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 10px;
    color: #000229;
}
.treatable .list li .head p {
    font-weight: 600;
    font-size: 24px;
}
.treatable .list li > p {
    margin-top: 5px;
    padding-left: 54px;
    font-size: 18px;
}

@media (max-width: 1600px) {
    .treatable {padding: 65px 0 80px 0;}
    .treatable .list {
        margin: 40px 0 55px 0;
        max-width: 390px;
        gap: 40px;
    }
    .treatable .list li .head {gap: 15px;}
    .treatable .list li .head span {
        width: 27px;
        height: 27px;
    }
    .treatable .list li .head p {font-size: 18px;}
    .treatable .list li > p {
        padding-left: 43px;
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .treatable {
        background: url(../img/treatable/bg-mob.webp) no-repeat right top;
        background-size: cover;
        padding: 45px 0 60px 0;
    }
    .treatable h2.title {font-size: 11vw;}
    .treatable .list {
        margin: 340px 0 55px 0;
        max-width: inherit;
        gap: 60px;
    }
    .treatable .list li .head p {font-size: 5vw;}
    .treatable .list li > p {
        font-size: 4vw;
        line-height: 1.8;
        max-width: 320px;
    }
    .treatable .btn-group {
        margin: 0 auto;
        display: block;
    }
    .treatable .btn-group > p {justify-content: center;}
}

/* ------------------ GIVES ------------------ */
.gives {padding: 70px 0 80px 0;}
.gives h2.title {margin-top: 30px;}
.gives .sub {font-size: 20.5px;}

.gives-options {
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.gives-options .col:first-child:after {
    content: 'or';
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    line-height: 52px;
    background: #16499A;
    color: #fff;
    box-shadow: 0px 5.23361px 7.85041px -1.3084px rgba(0, 0, 0, 0.1), 0px 2.6168px 5.23361px -2.6168px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: 3;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
}
.gives-options .col {
    padding: 40px;
    position: relative;
}
.gives-options .col:first-child {
    background: #F5F5F6;
    border: 1px solid #E5E7EB;
    border-radius: 30px 0 0 30px;
}
.gives-options .col:last-child {
    background: #000229;
    border: 1px solid #000229;
    border-radius: 0 30px 30px 0;
    color: #fff;
}
.gives-options p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2A7CC7;
}
.gives-options .col:last-child p {color: #5BA3D9;}
.gives-options h3 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: bold;
}
.gives-options h3 span {color: #06B535;}
.gives-options strong {
    font-size: 22px;
    font-weight: bold;
}

.gives-options ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}
.gives-options ul li {
    display: flex;
    gap: 13px;
}
.gives-options ul li svg {
    color: #2A7CC7;
    min-width: 16px;
    position: relative;
    top: 8px;
}
.gives-options .col:last-child ul li svg {color: #5BA3D9;}
.gives-options ul li b {font-weight: bold;}

@media (max-width: 1600px) {
    .gives {padding: 50px 0 70px 0;}
    .gives .sub {font-size: 16px;}
    .gives-options ul {font-size: 18px;}
    .gives-options ul li svg {top: 7px;}
    .gives-options p {font-size: 13px;}
    .gives-options h3 {font-size: 30px;}
    .gives-options strong {font-size: 18px;}
}

@media (max-width: 1400px) {
    .gives .sub {font-size: 14px;}
    .gives-options h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .gives-options p {font-size: 11px;}
    .gives-options ul {
        gap: 15px;
        font-size: 15px;
    }
    .gives-options ul li {gap: 10px;}
    .gives-options ul li svg {top: 4px;}
    .gives-options strong {font-size: 15px;}
    .gives-options .col:first-child:after {zoom: 0.8;}
    .gives-options .col {padding: 30px;}
    .gives-options .col:first-child {border-radius: 20px 0 0 20px;}
    .gives-options .col:last-child {border-radius: 0 20px 20px 0;}
}

@media (max-width: 991px) {
    .gives-options strong {font-size: 12px;}
    .gives-options h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .gives-options p {font-size: 10px;}
    .gives-options ul {font-size: 13px;}
    .gives-options ul li {gap: 5px;}
    .gives-options ul li svg {top: 3px;}
}

@media (max-width: 767px) {
    .gives-options {grid-template-columns: 1fr;}
    .gives-options .col:first-child:after {
        top: 100%;
        left: 50%;
    }
    .gives-options .col {padding: 20px;}
    .gives-options .col:first-child {border-radius: 20px 20px 0 0;}
    .gives-options .col:last-child {border-radius: 0 0 20px 20px;}
}

@media (max-width: 550px) {
    .gives {padding: 40px 0 50px 0;}
    .gives .tx-c {text-align: left;}
    .gives h2.title {font-size: 9.5vw;}
    .gives p.sub {
        margin-top: 20px;
        font-size: 3.8vw;
    }

    .gives-options {
        margin-top: 35px;
        margin-bottom: 45px;
    }
    .gives-options .col {padding: 40px 20px;}
    .gives-options h3 {
        font-size: 4.9vw;
        margin-bottom: 10px;
    }
    .gives-options ul {
        font-size: 11.5px;
        gap: 20px;
        margin-top: 20px;
    }
    .gives-options ul li svg {
        zoom: 0.8;
        top: 4px;
    }
    .gives-options .col:last-child {background: #0D1F3C;}

    .gives .btn-group {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .gives .btn-group > p {justify-content: center;}
}

/* ------------------ SCROLL ------------------ */
.scroll {
    background: #fff;
    padding: 100px 0;
    margin-left: auto;
    margin-right: auto;
}
.scroll .label {text-transform: uppercase;}
.scroll .center {max-width: 1510px;}
.scroll .center.tx-c h2.title {
    margin-top: 30px;
    margin-bottom: 30px;
}
.scroll .center:last-of-type {
    display: inline-flex;
    font-size: 13px;
    color: #001F29;
    display:block;
    text-align:center;
}
.scroll .center.tx-c {margin-bottom: 55px;}
.scroll .important {
    display:inline-block;
    margin:0;
    padding:0;
}
.section {
    position: relative;
}
.section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    border-radius: 30px;
    color: #fff;
    transition: all 0.3s linear;
    will-change: transform;
    position: sticky;
}
.section.first {
    background: linear-gradient(138deg, #2273B5, #61B7E7);
    top: 90px;
}
.section.second {
    background: #4295CE;
    top: 150px;
    margin-top: 55px;
}
.section.third {
    background: #5CB1E3;
    margin-top: 55px;
    top: 130px;
}
.section.fourth li a {
    color:inherit;
}
.section.fourth {
    margin-top: 55px;
    top: 210px;
}
.section-content {
    padding: 55px 15px 55px 44px;
    text-align: left;
}
.section-content .label {
    color: rgba(255,255,255,.8);
    background: rgba(245,245,245,.1);
}
.section-content h6 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-content h2.title {
    font-size: 62px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 5px;
}
.section.third .section-content h2.title span {
    position: relative;
    text-fill-color: inherit;
    -webkit-text-fill-color: inherit;
}
.section.third .section-content h2.title span sup {
    font-size: 0.4em;
    position: absolute;
    top: 27px;
    left: 5px;
    font-weight: 300;
}
.section-content h2.title sub {
    line-height: 0;
    font-size: 0.4em;
    font-weight: 300;
    display: inline-block;
    position: relative;
    top: -40px;
}
.section-content p.sub {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}
.section-content p.sub b {font-weight: 600;}
.section-content .list {
    margin-top: 30px;
    margin-bottom: 30px;
}
.section-content .list li {
    display: flex;
    align-items: center;
    gap: 0 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.section-content .list li + li {margin-top: 15px;}
.section-content .list li .ic {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.section-content .list li .ic svg {
    width: 9px;
    height: 17px;
}

.section-content .list + p {
    font-size: 12px;
    margin-top: -20px;
    margin-bottom: 20px;
}
.section-content .list + p small {
    font-size:12px;
}

.section.first .section-content .list li .ic svg {color: #3081bf;}
.section.second .section-content .list li .ic svg {color: #4295ce;}
.section.third .section-content .list li .ic svg {color: #5db1e3;}

.section-content .btn {min-width: 290px;}

.section-content .small {
    margin-top: 20px;
    font-size: 12px;
}
.section-content .small small {
    font-size:12px;
}

.section-product {padding: 10px;}
.section-product .inner {
    border-radius: 20px;
    background: rgba(255,255,255,.2);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.section-product .speed {
    min-width: 900px;
    position: absolute;
    top: 15px;
    left: 50%;
    animation: rotate 150s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    0% {transform: translateX(-50%) rotate(0);}
    100% {transform: translateX(-50%) rotate(-360deg);}
}

.section-product .label {
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}
.section-product .label:before {background: rgba(255,255,255,.8);}
.section-product h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 8px;
}
.section-product h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-product h4 sup {
    font-size: 0.2em;
    position: relative;
}
.section-product .image {
    max-width: 550px;
}

.section.second .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section.second .inner .label {margin-top: auto;}
.section.second .inner .image {
    margin-top: -105px;
    position: relative;
    bottom: -5.2rem;
    max-width: 100%;
}
.section.first .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/slide-1.webp);
    background-size: cover;
}
.section.second .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/slide-2.webp);
    background-size: cover;
}
.section.third .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/scroll/slide-3.webp) no-repeat center bottom;
    background-size: cover;
}

.box-phone {
    max-width: 410px;
    position: relative;
    margin: 20px auto 0 auto;
}
.box-phone > img {display: block;}
.box-phone .inner {
    width: 250px;
    height: 545px;
    border-radius: 30px;
    margin-top: -8px;
    margin-left: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #eae7ed;
    display: flex;
    flex-direction: column;
}
.box-phone .inner > small {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
    font-size: 7px;
    font-weight: 600;
    color: #A6A4A4;
}
.box-phone .lifemd {
    max-width: 61px;
    position: absolute;
    top: 53px;
    left: 50%;
    transform: translateX(-50%);
}
.box-phone .head {
    display: flex;
    align-items: center;
    padding: 18px 16px 0 16px;
    position: relative;
}
.box-phone .head:after {
    content: '';
    display: block;
    width: 84px;
    height: 22px;
    background: #000;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 8px;
}
.box-phone .time {
    margin-right: auto;
    font-size: 9px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #474747;
}
.box-phone .head img:last-child {margin-left: 5px;}

.box-phone .doctor {
    max-width: 192px;
    margin: auto;
    position: relative;
}
.box-phone .doctor img {
    position: relative;
    z-index: 2;
}
.box-phone .message-small {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: -25px;
    margin-left: -21px;
    background: linear-gradient(135deg, #2273B5, #61B7E7);
    border-radius: 10px;
    color: #fff;
    padding: 8px;
    max-width: 150px;
    font-size: 10px;
    z-index: 1;
    line-height: 1.2;
    text-align: left;
}
.box-phone .message-small time {
    font-size: 7px;
    font-weight: 600;
    margin-top: 7px;
    display: inline-block;
}
.box-phone .message-large {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -25px;
    margin-right: -12px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    border-radius: 11px;
    padding: 5px 7px 5px 7px;
    font-size: 10px;
    max-width: 152px;
    line-height: 1.2;
    color: #474747;
    text-align: left;
}
.box-phone .message-large > div {
    display: flex;
    align-items: center;
    gap: 0 7px;
    margin-bottom: 5px;
    margin-left: -2px;
}
.box-phone .message-large > div span {
    font-weight: 600;
    font-size: 7px;
}
.box-phone .message-large time {
    font-size: 7px;
    font-weight: 600;
    margin-top: 7px;
    display: inline-block;
}

.box-phone ul {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 11px;
    padding: 10px 17px;
    font-size: 6px;
    font-weight: 600;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 38px auto;
    color: #474747;
}
.box-phone ul li {text-align: center;}
.box-phone ul li:nth-child(2) {animation-delay: 0.5s !important;}
.box-phone ul li:nth-child(3) {animation-delay: 0.7s !important;}
.box-phone ul li:nth-child(4) {animation-delay: 0.9s !important;}
.box-phone ul .ic {
    min-height: 17px;
    text-align: center;
    line-height: 0;
}

.section-product .foot {
    margin-top: auto;
    display: flex;
    background: rgba(13,13,13,.47);
    backdrop-filter: blur(5px);
    color: #fff;
    position: relative;
    z-index: 10;
}
.section-product .foot > div {
    width: 33.33%;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.section-product .foot > div h4 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 0;
}
.section-product .foot > div p {
    font-size: 15px;
}

.section-product .foot-text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.section-product .foot-text p {
    font-size: 31px;
    font-weight: 600;
}
.section-product .foot-text small {
    font-size: 28px;
    font-weight: 500;
}

.section.fourth {
    background: linear-gradient(135deg, #3EA2A0, #A1BDE1);
}
.section.fourth .section-content .list li .ic svg {
    stroke: #02A0A3;
}
.section.fourth .section-product .inner:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(/assets/img/wegovy-pill/fourth-blue.webp) center;
    background-size: cover;
}
.section.fourth .section-product .label {
    position: absolute;
    top: 40px;
    left: 48px;
    z-index: 10;
    background: #F5F5F6;
    color: #999AA9;
    height: 40px;
}
.section.fourth .section-product .label:before {background: #999AA9;}

.section.fourth .section-product img {
    max-width: 215px;
    position: absolute;
    top: 20px;
    right: 35px;
    z-index: 10;
}

@media (max-width: 1600px) {
    .scroll {padding: 75px 0;}
    .scroll .center.tx-c h2.title {
        margin-top: 35px;
        margin-bottom: 50px;
    }
    .scroll .center {max-width: 1200px;}
    .section-content {padding: 35px 15px 50px 35px;}
    .section-content h2.title {font-size: 42px;}
    .section-content p.sub {font-size: 20px;}
    .section-content .list {margin-bottom: 30px;}
    .section-content .list li {
        gap: 0 10px;
        font-size: 14.5px;
    }
    .section-product .speed {
        top: 15px;
        zoom: 0.78;
    }
    .section-product .image {max-width: 350px;}
    .section-product h3 {font-size: 14px;}
    .section-product h4 {font-size: 19px;}

    .box-phone {zoom: 0.77;}

    .section-product .foot > div h4 {font-size: 26px;}
    .section-product .foot > div p {font-size: 12px;}

    .section.second .inner .image {
        margin-top: -95px;
        bottom: -4.5rem;
    }

    .section-product .foot-text {padding: 15px;}
    .section-product .foot-text p {font-size: 23px;}
    .section-product .foot-text small {font-size: 20px;}

    .section.fourth .section-product .label {
        top: 30px;
        left: 35px;
        zoom: 0.8;
    }

    .section.fourth .section-product img {
        zoom: 0.8;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 1400px) {
    .scroll {padding: 50px 0;}
    .scroll .center.tx-c h2.title {
        margin-top: 25px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1300px) {
    .section-content {padding-top: 25px;}
    .section.first {top: 65px;}
    .section.second {top: 110px;}
    .section.fourth {top: 155px;}
}

@media (max-width: 1024px) {
    .scroll {border-radius: 20px;}
}

@media (max-width: 1200px) {
    .section-product .speed {zoom: 0.8;}
    .section-content {padding-bottom: 50px;}
    .section-content h2.title {font-size: 4.2vw;}
    .section-content p.sub {font-size: 1.9vw;}
    .section-content p.sub br {display:none;}
    .section-content .list {margin-bottom: 40px;}
    .section-content .list li {font-size: 1.5vw;}
    .section-product .image {max-width: 400px;}
    .section-product h3 {font-size: 16px;}
    .section-product h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .box-phone {zoom: 0.61;}

    .section-product .foot > div {padding: 15px 0;}
    .section-product .foot > div h4 {font-size: 21px;}
    .section-product .foot > div p {font-size: 11px;}
    .section.fourth .section-product .label {
        top: 20px;
        left: 25px;
        zoom: 0.7;
    }

    .section.fourth .section-product img {
        zoom: 0.7;
    }

    .section.second .inner {padding-bottom: 35px;}
}

@media (max-width: 991px) {
    .section-product .image {max-width: 360px;}
    .section-product h3 {font-size: 1.25vw;}
    .section-product h4 {font-size: 1.85vw;}
    .section-content h6 {font-size: 18px;}
    .section-content {padding: 25px 15px 25px 25px;}
    .section-content .list li + li {margin-top: 10px;}
    .section + .section {margin-top: 30px;}
    .section-product .image {max-width: 320px;}
    .section-product .speed {zoom: 0.7;}
    .section-product .foot > div h4 {font-size: 16px;}
    .section-product .foot > div p {font-size: 8px;}

    .section-product .foot-text p {font-size: 17px;}
    .section-product .foot-text small {font-size: 13px;}
}

@media (max-width: 825px) {
    .section.second .inner .image { max-width: 130%; margin-bottom: -1rem;}
}
@media (max-width: 767px) {
    .section.second .inner .image { margin-bottom: -3rem;}
    .scroll .center {max-width: 600px;}
    .section {
        grid-template-columns: 1fr;
        border-radius: 20px;
        position: static;
    }
    .section-content {padding: 35px 15px 35px 25px;}
    .section-content h2.title {font-size: 7vw;}
    .section-content p.sub {font-size: 3vw;}
    .section-content .list {margin-bottom: 25px;}
    .section-content .list li {font-size: 2.2vw;}
    .section-content .list li + li {margin-top: 15px;}
    .section-product h3 {font-size: 2vw;}
    .section-product h4 {font-size: 3vw;}
    .section-product .image {max-width: 400px;}
    .section-product .speed {zoom: 0.86;}

    .section.second .inner {padding-top: 95px;}

    .box-phone {zoom: 0.8;}

    .section-product .foot > div h4 {font-size: 23px;}
    .section-product .foot > div p {font-size: 12px;}

    .section.first .section-product .inner,
    .section.third .section-product .inner,
    .section.second .section-product .inner {min-height: 450px;}
    .section.fourth .section-product .inner {min-height: 450px;}
}

@media (max-width: 550px) {
    .scroll {padding: 50px 0;}
    .scroll .center.tx-c {
        text-align: left;
        margin-bottom: 40px;
    }
    .scroll .center.tx-c h2.title {
        margin-top: 20px;
        margin-bottom: 30px;
        text-align: left;
        font-size: 8.5vw;
    }
    .scroll .tx-c p.sub {
        border-left: 2px solid #6F707F;
        padding-left: 10px;
        font-size: 16px;
    }
    .scroll .center.tx-c:last-child {text-align: center;}
    .section.second .inner .label {
        font-size: 3.5vw;
    }
    .section.second .inner {
        padding-top: 90px;
        padding-bottom: 35px;
    }
    .section.second .inner .image {
        margin-bottom: -1rem;
        max-width: 132%;
        width: auto;
    }
    .section {border-radius: 20px;}
    .section-content {padding: 35px 20px 25px 20px;}
    .section-content h6 {font-size: 3.7vw;}
    .section-product .speed {zoom: 0.67;}
    .section-content > img {
        max-width: 90px;
        margin-bottom: 15px;
    }
    .scroll .center:last-of-type {
        font-size:3.1vw;
    }
    .section-content h2.title {
        font-size: 8vw;
        margin-bottom: 15px;
    }
    .section-content p br {
        display:none;
    }
    .section-content p.sub {
        font-size: 3.95vw;
        margin-top: 20px;
    }
    .section.first .section-content p.sub {
        font-size: 3.6vw;
        margin-top: 20px;
    }
    .section-content .list {
        margin-bottom: 0;
        margin-top: 25px;
    }
    .section-content .btn {display: none;}
    .section-content .list li {font-size: 3.3vw;}
    .section-content .list li b {font-weight: normal;}
    .section-content .list li + li {margin-top: 17px;}
    .section-product .image {
        width: 100%;
        max-width: 75%;
    }
    .section-content .list + p {
        margin-bottom: 0;
        margin-top: 15px;
    }
    .section-product .speed {zoom: 0.6;}
    .section-product h3 {
        font-size: 3vw;
        font-weight: normal;
    }
    .section-product h4 {
        font-size: 4vw;
        font-weight: normal;
    }
    .section-product .section-product > .inner {border-radius: 15px;}

    .section-content h2.title sub:last-child {top: -25px;}

    .box-phone {
        zoom: 0.55;
        margin-top: 0;
    }   

    .section.first .section-product .inner,
    .section.third .section-product .inner,
    .section.second .section-product .inner {min-height: 350px;}
    .section.fourth .section-product .inner {min-height: 350px;}
    .section-product .foot > div h4 {font-size: 4.5vw;}
    .section-product .foot > div p {font-size: 2vw;}
    .section-product .foot > div {padding: 15px 0 20px 0;}

    .section-product .foot-text p {font-size: 4.6vw;}
    .section-product .foot-text small {font-size: 3.5vw;}
    .section.fourth .section-product img {zoom: 0.5;}

    .section.second .section-content .list li .ic svg {stroke: #3467a6;}
    .section.third .section-content .list li .ic svg {stroke: #092554;}

    .scroll .tx-c.d-none {
        display: block !important;
        margin-top: 50px;
    }
}

@media (max-width: 400px) {
    .section.second .inner .image {
        margin-bottom: 0;
    }
}

@media (max-width: 390px) {
    .section.fourth .section-product .inner {
        min-height: 300px;
    }
}

/* ------------------ PROVIDER ------------------ */
.provider {padding: 50px 0 65px 0;}
.provider h2.title {margin-top: 15px;}

.provider-grid {
    margin: 40px 0 60px 0;
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
}

.provider-grid.splide.is-initialized:not(.is-active) .splide__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}
.provider-grid .item {
    border-radius: 17px;
    padding: 40px 25px 30px 25px;
    background: #dae4f5;
    height: 100%;
    cursor: pointer;
}
.provider-grid .item h3 {
    font-size: 21px;
    font-weight: 900;
}
.provider-grid .item h3:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2F74A5;
    margin-bottom: 10px;
    transition: all 0.3s;
}
.provider-grid .item:hover h3:before {animation: pulse-dot 1.2s infinite;}

@keyframes pulse-dot {
    0% {box-shadow: 0 0 0 0 rgba(47, 116, 165, 0.6);}
    70% {box-shadow: 0 0 0 10px rgba(47, 116, 165, 0);}
    100% {box-shadow: 0 0 0 0 rgba(47, 116, 165, 0);}
}

.provider-grid .item p {
    margin: 30px 0 25px 0;
    font-size: 18px;
    color: #4A5568;
}
.provider-grid .item strong {
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #3A8FD1;
    display: inline-block;
}
.provider-grid .item .percent {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
}

.provider-grid .item-1 {
    background: linear-gradient(160deg, #4A9FD4 8.49%, #2D7AB8 91.51%);
    color: #fff;
}
.provider-grid .item-1 h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
}
.provider-grid .item-1 p {
    margin: 20px 0 0;
    color: #DEEDF8;
    font-size: 15px;
}

.provider-grid .item-3 {background: #deecf6;}
.provider-grid .item-4 {background: #eef5fc;}
.provider-grid .item-5 {background: #def1e9;}
.provider-grid .item-6 {background: #f2ebf3;}
.provider-grid .item-7 {background: #ebd4e1;}
.provider-grid .item-8 {background: #e3e7f8;}
.provider-grid .item-3 h3:before {background: #3F92CC;}
.provider-grid .item-4 h3:before {background: #7FB5E6;}
.provider-grid .item-5 h3:before {background: #2FA578;}
.provider-grid .item-6 h3:before {background: #A67CAE;}
.provider-grid .item-7 h3:before {background: #C583A9;}
.provider-grid .item-8 h3:before {background: #5B6FD8;}

.splide__pagination {
    position: absolute;
    left: 50%;
    right: initial;
    bottom: 0;
    transform: translateX(-50%);
    background: #F5F5F6;
    padding: 0;
    gap: 6px;
    min-height: 45px;
    border-radius: 20px;
    margin-bottom: -75px;
    padding: 0 15px;
}
.splide__pagination li {line-height: 0;}
.splide__pagination button {margin: 0;}
.splide__pagination__page {background: #D9D9D9;}
.splide__pagination__page.is-active {
    transform: none;
    background: #000229;
}

@media (max-width: 1600px) {
    .provider-grid .item h3 {font-size: 18px;}
    .provider-grid .item p {font-size: 14px;}
    .provider-grid .item strong {font-size: 10px;}
    .provider-grid .item .percent {font-size: 60px;}
    .provider-grid .item-1 h4 {font-size: 20px;}
    .provider-grid .item-1 p {
        margin: 15px 0 0;
        font-size: 12px;
    }
}

@media (max-width: 1400px) {
    .provider-grid {gap: 15px;}
    .provider-grid .item {
        border-radius: 15px;
        padding: 30px 15px 50px 15px;
    }
    .provider-grid .item h3 {font-size: 15px;}
    .provider-grid .item h3:before {
        width: 6px;
        height: 6px;
    }
    .provider-grid .item p {
        font-size: 12px;
        margin: 25px 0 20px 0;
    }
    .provider-grid .item .percent {font-size: 50px;}
    .provider-grid .item-1 h4 {font-size: 17px;}
}

@media (max-width: 991px) {
    .provider-grid {gap: 10px;}
    .provider-grid .item {padding: 15px;}
    .provider-grid .item h3 {font-size: 12px;}
    .provider-grid .item .percent {font-size: 35px;}
    .provider-grid .item-1 h4 {font-size: 13px;}
}

@media (max-width: 767px) {
    .provider-grid.splide.is-initialized:not(.is-active) .splide__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .provider-grid .item {padding: 20px;}
    .provider-grid .item h3 {font-size: 15px;}
    .provider-grid .item p {
        font-size: 14px;
        margin: 15px 0 15px 0;
    }
    .provider-grid .item strong {font-size: 12px;}
}

@media (max-width: 550px) {
    .provider {padding: 40px 0 50px 0;}
    .provider .tx-c:first-child {text-align: left;}
    .provider h2.title {font-size: 9vw;}
    .provider p.sub {
        border-left: 2px solid #6F707F;
        text-align: left;
        padding-left: 10px;
        font-weight: 600;
        font-size: 4vw;
    }

    .provider-box {
        display: block !important;
        background: linear-gradient(160deg, #4A9FD4 8.49%, #2D7AB8 91.51%);
        color: #fff;
        border-radius: 20px;
        padding: 40px 25px 30px 25px;
        margin-top: 30px;
    }
    .provider-box .percent {
        font-size: 75px;
        line-height: 1;
        font-weight: bold;
    }
    .provider-box h3 {
        font-size: 6.1vw;
        margin: 25px 0;
    }
    .provider-box p {
        font-size: 4.1vw;
        color: #DEEDF8;
    }

    .provider-grid {margin: 20px 0 125px 0;}
    .provider-grid .splide__track {overflow: visible;}
    .provider-grid .item {padding: 35px 20px;}
    .provider-grid .item h3 {font-size: 17px;}
    .provider-grid .item p {
        font-size: 15px;
        margin: 30px 0 30px 0;
    }
}

/* ------------------ TOURNAMENT ------------------ */
.tournament {position: relative;}
.tournament .center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1450px;
}
.tournament-image:before {
    content: '';
    background: url(../img/tournament/bg.webp) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
}

.tournament:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: #3F92CC;
}

.tournament-content {
    position: relative;
    z-index: 3;
    padding: 40px 0 30px 55px;
    color: #fff;
}

.tournament .label {
    background: rgba(245,245,246,.10);
    color: rgba(255,255,255,.8);
}
.tournament h2.title {
    margin-top: 20px;
    line-height: 1.1;
}
.tournament .fact {
    margin: 25px 0 30px 0;
    font-weight: normal;
}
.tournament .fact b {font-weight: 600;}

.networks {
    background: #fff;
    color: #101828;
    border-radius: 23px;
    border: 1px solid #E5E7EB;
    padding: 25px 15px 10px 30px;
    margin-bottom: 30px;
    max-width: 615px;
}
.networks .heading {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #99A1AF;
}
.networks ul {
    margin: 30px 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.networks ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.networks ul li .icon {
    line-height: 0;
    max-width: 50px;
}
.networks ul li .icon object {
    width: 100%;
    height: 100%;
}
.networks h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}
.networks ul li p {
    font-size: 18px;
    color: #4A9FD4;
    margin-top: 5px;
}
.networks small {
    font-size: 14px;
    color: #99A1AF;
}

@media (max-width: 1600px) {
    .tournament-content {padding: 35px 0 30px 40px;}
    .networks {
        padding: 20px 15px 10px 25px;
        border-radius: 15px;
        max-width: 480px;
    }
    .networks .heading {font-size: 15px;}
    .networks ul {
        margin: 25px 0 35px 0;
        gap: 20px;
    }
    .networks h3 {font-size: 20px;}
    .networks ul li p {font-size: 16px;}
}

@media (max-width: 1400px) {
    .networks {max-width: 410px;}
    .networks ul {
        margin: 20px 0 30px 0;
        gap: 15px;
    }
    .networks ul li {gap: 15px;}
    .networks ul li .icon {max-width: 40px;}
    .networks h3 {font-size: 16px;}
    .networks ul li p {font-size: 14px;}
    .networks small {font-size: 11px;}
}

@media (max-width: 991px) {
    .tournament-content {padding: 25px 0 25px 25px;}
    .networks {padding: 15px 15px 10px 15px;}
    .networks ul {
        margin: 20px 0 20px 0;
        gap: 10px;
    }
    .networks .heading {font-size: 12px;}
    .networks h3 {font-size: 14px;}
    .networks ul li p {font-size: 13px;}
}

@media (max-width: 767px) {
    .tournament .fact {font-size: 14px;}
    .tournament .fact br {display: none;}

    .tournament .center {grid-template-columns: 1fr;}
    .tournament-image {
        min-height: 700px;
        background: url(../img/tournament/bg-mob.webp) no-repeat center;
        background-size: cover;
        margin-left: -15px;
        margin-right: -15px;
    }
    .tournament-image:before,
    .tournament:after {display: none;}
    .tournament-content {
        padding: 50px 15px 50px 15px;
        background: #3F92CC;
        margin-left: -15px;
        margin-right: -15px;
        text-align: center;
    }

    .networks {
        margin-left: auto;
        margin-right: auto;
    }
    .networks .heading {text-align: left;}
    .networks ul li {gap: 10px;}
    .networks ul li .icon {max-width: 30px;}
    .networks ul li p {
        font-size: 12px;
        text-align: left;
    }
    .networks h3 {font-size: 13px;}
    .networks small {
        display: block;
        text-align: left;
    }
}

@media (max-width: 550px) {
    .tournament h2.title {
        line-height: 1.1;
        font-size: 10.5vw;
    }
    .tournament .fact {font-size: 4vw;}
    .tournament-image {min-height: 450px;}
    .tournament-content {text-align: left;}

    .networks {padding: 20px 20px 10px 20px;}
    .networks .heading {font-size: 13px;}
    .networks ul {
        gap: 20px;
        margin: 25px 0 25px 0;
    }
    .networks ul li {gap: 15px;}
    .networks ul li .icon {max-width: 40px;}
    .networks h3 {font-size: 3.9vw;}
    .networks ul li p {font-size: 3.2vw;}

    .tournament .btn-group {
        display: block;
        margin: 0 auto;
    }
    .tournament .btn-group > p {justify-content: center;}
}

/* ------------------ FAQ ------------------ */
.faq {padding: 100px 0;}
.faq .center {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
    max-width: 1660px;
}
.faq h2.title {
    font-size: 77px;
    font-weight: 600;
}

.accordion .question h6 {
    font-size: 26px;
    font-weight: 600;
}
.accordion .answer {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .faq {padding: 70px 0;}
    .faq h2.title {font-size: 60px;}
    .faq .center {max-width: 1200px;}
    .accordion .question h6 {font-size: 20px;}
    .accordion .answer {font-size: 19px;}
}

@media (max-width: 1300px) {
    .faq h2.title {font-size: 50px;}
    .accordion .question h6 {font-size: 15px;}
    .accordion .answer {font-size: 15px;}
}

@media (max-width: 991px) {
    .faq h2.title {font-size: 40px;}
}

@media (max-width: 767px) {
    .faq h2.title {font-size: 35px;}
}

@media (max-width: 550px) {
    .faq {padding: 50px 0;}
    .faq h2.title {font-size: 10vw;}
    .faq .center {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .accordion.open .answer p, 
    .accordion.open .answer span, 
    .accordion.open .answer li {
        line-height: 1.6;
    }

    .faq .tx-c.d-none {
        display: block !important;
        margin-top: 40px;
    }
}

/* ------------------ BOARD ------------------ */
.board {
    background: linear-gradient(180deg, #2273B5 0%, #61B7E7 100%);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    color: #fff;
    padding: 130px 0 125px 0;
}
.board .center {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
}

.board-content {padding-top: 135px;}
.board-content .label {
    background: rgba(245,245,246,.10);
    color: rgba(255,255,255,.8);
}
.board-content h2.title {margin: 35px 0;}
.board-content h2.title b {font-weight: 600;}

.board-content .fact {
    max-width: 600px;
    margin-bottom: 45px;
    font-size: 22px;
    font-weight: 500;
}
.board-content .fact + p{
    font-size:13px;
    margin-bottom:45px;
}

.board-mobile {position: relative;}
.board-mobile:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -160px;
    right: -160px;
    bottom: 0;
    background: linear-gradient(0, #5aafe2, transparent);
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.board-mobile .phone {
    max-width: 500px;
    width: 100%;
    display: block;
}

.wrap-notification {
    position: absolute;
    left: 0;
    bottom: 75px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: -150px;
    max-width: 445px;
    width: 100%;
}

.notification {
    border-radius: 19px;
    background: rgba(0,2,41,.10);
    backdrop-filter: blur(20px);
    padding: 20px;
    display: flex;
    gap: 20px;
    max-width: 390px;
}
.notification:first-child {margin-left: auto;}
.notification .avatar {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-radius: 50%;
    overflow: hidden;
    overflow: hidden;
}
.notification p {
    font-size: 18px;
    font-weight: 600;
}
.notification time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.4;
    margin-top: 10px;
}
.notification time svg {
    width: 19px;
    height: 14px;
}
.notification h4 {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.4;
    margin-bottom: 10px;
}

@media (max-width: 1600px) {
    .board {padding: 100px 0 100px 0;}
    .board-content {padding-top: 50px;}
    .board-content .fact {
        max-width: 425px;
        margin-bottom: 35px;
        font-size: 15px;
    }
    .board-mobile .phone {max-width: 350px;}
    .board-mobile:after {background: linear-gradient(0, #59aee1, transparent);}

    .wrap-notification {
        bottom: 40px;
        margin-left: -150px;
        max-width: 360px;
    }
    .notification {
        border-radius: 15px;
        padding: 15px;
        gap: 15px;
        max-width: 295px;
    }
    .notification .avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .notification h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .notification p {font-size: 13px;}
    .notification time {
        margin-top: 5px;
        font-size: 12px;
    }
    .notification time svg {
        width: 16px;
        height: 11px;
    }
}

@media (max-width: 991px) {
    .board {padding: 60px 0 80px 0;}
    .board-content {padding-top: 30px;}
    .board-content .fact {
        font-size: 13px;
        max-width: 330px;
        margin-bottom: 25px;
    }
    .board-mobile:after {background: linear-gradient(0, #59aee1, transparent);}
    .wrap-notification {
        bottom: 15px;
        margin-left: -85px;
        max-width: 400px;
    }
    .notification {
        padding: 10px;
        gap: 10px;
        max-width: 265px;
    }
    .notification p {font-size: 12px;}
    .notification time {font-size: 10px;}
    .notification time svg {
        width: 13px;
        height: 8px;
    }
    .board-content .fact + p{
        font-size:13px;
        margin-bottom:30px;
    }
}

@media (max-width: 767px) {
    .board .center {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .board-content {padding-top: 0;}
    .board-content .fact {max-width: inherit;}

    .board-mobile {
        max-width: 350px;
        margin-left: auto;
    }
    .board-mobile:after {background: linear-gradient(0, #5db1e3, transparent);}

    .wrap-notification {
        bottom: 50px;
        margin-left: -160px;
    }
}

@media (max-width: 550px) {
    .board {padding: 50px 0 50px 0;}
    .board-content h2.title {
        margin: 20px 0 30px 0;
        font-size: 10.5vw;
    }
    .board-content .fact {
        font-size: 4vw;
    }
    .board-content .fact + p { margin-bottom:0; }
    .board-content .btn {display: none;}
    .board-content h2.title b {letter-spacing: 0.4px;}
    .board-mobile .phone {max-width: 300px;}

    .wrap-notification {
        bottom: 30px;
        margin-left: -65px;
        max-width: 280px;
    }
    .notification .avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .notification {max-width: 245px;}
}

@media (max-width: 380px) {
    .wrap-notification {margin-left: -25px;}
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #000229;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 99;
    padding-top: 0 !important;
    margin-top: -50px;
    color: #fff;
}

.footer .center {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.footer-main h3 {
    color: #6F707F;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-main ul a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}
.footer-main ul a svg {
    width: 13px;
    height: 13px;
}
.footer-main ul li + li {margin-top: 20px;}
.main-hover {color: #fff;}
.main-hover > div {
    overflow: hidden;
    max-height: 28px;
}
.main-hover > div > div {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    transition: all 0.2s ease-out;
}
.main-hover:hover > div > div {transform: translateY(-50%);}

.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
    margin-top: 145px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    background: #151637;
    border-radius: 24px;
    padding: 0 32px;
    min-height: 88px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease-out;
}
.footer-social a:hover {
    background: #fff;
    color: #151637;
}
.footer-social a img {display: none;}

.footer-address {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-address a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
}
.footer-address a:first-child svg {
    width: 16px;
    height: 16px;
}
.footer-address a:last-child svg {
    width: 18px;
    height: 18px;
}

.footer-logo {
    padding: 220px 0 60px 0;
    line-height: 0;
}
.footer-logo svg {
    width: 300px;
    height: 50px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 165px 0;
    font-size: 19px;
    font-weight: 600;
    color: #66677f;
}
.footer-bottom .copy {text-transform: uppercase;}
.footer-bottom a {color: #66677f;}
.footer-bottom ul {
    display: flex;
    gap: 20px;
}
.footer-bottom ul li {position: relative;}
.footer-bottom ul li:last-child:after {display: none;}
.footer-bottom ul a {font-size: 17px !important;}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom > div img:first-child {max-width: 120px;}
.footer-bottom > div img:last-child {max-width: 65px;}

.footer-btns {display: none;}

.footer-text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}
.footer-text p + p {margin-top: 20px;}
.footer-text p a {color: #fff;}
.footer-text p a:hover {text-decoration: underline;}

#cannellamedia {display: none !important;}

.btn-save {
    position: fixed;
    right: 0;
    bottom: 15%;
    background: #BB0078;
    border-radius: 40px 0 0 40px;
    display: flex;
    align-items: center;
    padding: 6px 20px 6px 6px;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    min-width: 220px;
    color: #fff;
    z-index: 98;
    transition: all 0.3s ease-out;
    transform: translateX(0);
}
.btn-save img {
    display: inline-block;
    max-width: 54px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.btn-save.active {transform: translateX(155px);}
.btn-save:hover {transform: translateX(0);}
.btn-save span {opacity: 0.8;}
.btn-save svg {
    margin-left: auto;
    width: 7px;
    height: 12px;
}

@media (max-width: 500px) {
    .btn-save {zoom: 0.8;}
}

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: all 0.3s;
    z-index: 992;
    padding: 13px 10px;
    background: #3F92CC;
    display: none;
    backdrop-filter: blur(5px);
}
.btn-fix.show {bottom: 0;}
.btn-fix .btn {
    width: 100%;
    border-radius: 15px;
    min-height: 65px;
    font-weight: 600;
}
.btn-fix .btn > div {
    max-height: 28px;
    font-size:18px;
}

@media (max-width: 500px) {
    .btn-fix {display: block;}
}

.footer-logo {
    display:flex;
    justify-content:space-between;
}
.footer-logo img,
.footer-logo svg {
    width: auto;
    height: 35px;
}
@media (max-width: 1600px) {
    .footer-logo {
        padding: 150px 0 40px 0;
    }
    .footer-text {font-size: 14px;}
    .footer-bottom {
        padding: 40px 0 120px 0;
        font-size: 14px;
    }
    .footer-bottom ul a {font-size: 14px !important;}
    .main-hover > div {max-height: 20px;}
}

@media (max-width: 1300px) {
    .footer-logo {padding: 100px 0 40px 0;}
    .footer-bottom {padding: 40px 0 100px 0;}
}

@media (max-width: 991px) {
    .footer-logo {padding: 70px 0 30px 0;}
    .footer-bottom {padding: 30px 0 50px 0;}
}

@media (max-width: 550px) {
    .footer {padding-bottom: 130px;}
    .footer-logo {
        padding: 35px 0 30px 0;
        text-align: center;
    }
    .footer-text {font-size: 13px;}
    .footer-bottom {
        padding: 30px 0 0 0;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: 11px;
    }
    .footer-bottom ul a {font-size: 11px !important;}
    .main-hover > div {max-height: 17px;}
}

/* POPUP
-------------------------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9991;
    background: rgba(0,0,0,.8);
}

.popup {
    position: absolute;
    left: 50%;
    z-index: 9992;
    transform: translateX(-50%);
}

.popup-overlay,
.popup {
    display: none;
    opacity: 0;
}

.popup-overlay.active,
.popup.active {
    display: block;
    animation: opacity 0.5s linear forwards;
}

.universal_popup > .universal_popup-close {background: none !important;}

/* POPUP INFO */
.popup-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--akcent);
    border-color: var(--akcent);
}
.popup-close svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-info {
    background: #fff;
    max-width: 800px;
    width: 100%;
}
.modal-header {
    overflow: hidden;
    padding: 0;
    display: block;
}
.modal-title {
    background: var(--akcent);
    padding: 30px 30px 30px 30px;
    font-size: 43px;
    line-height: 1.3;
    color: #fff;
    min-height: 65px;
    margin-right: -2px;
    margin-left: -2px;
}
.popup-info .modal-header .wrap {
    max-height: calc(100vh - 205px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 30px 30px 30px;
}
.popup-info h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-info h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-info ul {
    margin-top: 20px;
    margin-left: 25px;
}
.popup-info ul li {
    position: relative;
    padding-left: 25px;
}
.popup-info ul li + li {
    margin-top: 10px;
}
.popup-info p u {text-decoration: underline;}
.popup-info p a,
.popup-info ul a {color: var(--akcent);}
.popup-info p a:hover,
.popup-info ul a:hover {text-decoration: underline;}
.popup-info p {margin-top: 20px;}
.popup-info p span {color: #a20e1e;}

.popup-text h1 {
    margin: 0 0 30px 0;
    line-height: 1.2;
    font-size: 40px; 
    color: #003e52;
}
.popup-text p {
    margin-bottom: 25px;
    margin-top: 0;
}
.popup-text h2 {
    font-size: 25px;
    line-height: 1.2;
    margin: 20px 0;
}
.popup-text h3 {
    font-size: 20px;
    line-height: 1.2;
}
.popup-text ul {
    margin: 25px 0 25px 30px;
}
.popup-text ul li {
    position: relative;
    padding-left: 15px;
}
.popup-text ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}
.popup-text ul li.circle-none:before {display: none;}

.popup-info .tx-c .popup-close {
    background: var(--color);
    position: relative;
    left: inherit;
    top: inherit;
    right: inherit;
    border-radius: 0;
    min-width: 170px;
    width: inherit;
    height: inherit;
    border: 0;
    color: #fff;
    display: inline-flex;
}

body .universal_popup .body {max-height: calc(100vh - 255px);}
.universal_popup h1 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    color: #03052a;
}

@media screen and (max-width: 1200px) {
    /* POPUP */
    .modal-title {
        font-size: 35px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 990px) {
    /* POPUP */
    .modal-title {font-size: 29px;}
}

@media screen and (max-width: 810px) {
    body .universal_popup .body {max-height: calc(100vh - 165px);}
}

@media screen and (max-width: 767px) {
    /* POPUP */
    .popup-info {
        max-width: inherit;
        width: inherit;
        top: 30px !important;
        position: fixed;
        bottom: 30px;
        left: 30px;
        right: 30px;
        transform: none;
    }
    .popup-info .modal-header .wrap {
        max-height: calc(100vh - 139px);
    }
    .modal-title {
        padding: 10px 45px 15px 15px;
        font-size: 16px;
        min-height: auto;
        line-height: inherit;
    }
    .popup-info h5 {
        font-size: 20px;
        line-height: 25px;
        padding: 10px 0;
        margin-top: 10px;
    }
    .popup-info ul {margin-left: 0;}
    .popup-close {
        top: -60px;
        right: 0;
    }
    .popup-info .popup-close {
        top: 10px;
        right: 10px;
    }

    .popup-text h2 {font-size: 17px;}
    .popup-text h1 {
        margin: 0 0 20px 0;
        font-size: 25px;
    }
}

@media screen and (max-width: 550px) {
    body .universal_popup .body {max-height: calc(100vh - 140px);}
}

/* ANIMATION
-------------------------------------- */
.animated {
    opacity: 0;
    transition: opacity 500ms;
}

.animated.show {
    animation: fade-bottom 0.6s ease-in-out both;
}

.animated.fade-right.show {
    animation: fade-right 0.6s ease-in-out both;
}

.animated.left.show {
    animation: fade-left 0.6s 0.6s ease-in-out both;
}
.animated.right.show {
    animation: fade-right 0.6s 0.6s ease-in-out both;
}
.animated.scale.show {
    animation: fade-scale 0.3s 0.3s ease-in-out both;
}
.animated.fade-up-slow.show {
    animation: fade-up-slow 2s ease-in-out both;
}
.animated.fade-up.show {
    animation: fade-up 0.3s ease-in-out both;
}
.animated.fade.show {
    animation: fade 0.2s ease-in-out both;
}

.animated.fade-smoke.show {
    opacity: 1;
    animation: fade-smoke 0.3s 0.3s ease-in-out both;
}

.animated.fade-medal {opacity: 1;}
.animated.fade-medal.show {
    animation: fade-medal 1s 1s ease-out both;
}

@keyframes fade {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fade-smoke {
    0% {
        will-change: transform;
        filter: blur(30px);
        transform: translateY(30px);
    }

    100% {
        will-change: transform;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes fade-up {
    0% {
        will-change: transform;
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        will-change: transform;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up-slow {
    0% {
        will-change: transform;
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        will-change: transform;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-left {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

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

@keyframes fade-scale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fade-medal {
    100% {transform: rotate3d(0, 1, 0, 360deg);}
}

@media screen and (max-width: 500px) {
    .item.item-1{
        display:none !important;
    }
}

#header .logo img.attLogo {
    max-height: 34px;
}
.connecting .logo img.attLogo {
    max-height: 50px;
}
.footer-logo img.attLogo {
    height: 40px;
}
@media (max-width: 1300px) {
    .connecting .logo img.attLogo {
        max-height: 40px;
    }
}
@media(max-height:1100px) {
    #header .logo img.attLogo {
        max-height: 38px;
    }
}
@media(max-width:500px) {
    .connecting .logo {
        margin:0 4px !important;
    }
    .footer-logo img {
        zoom:0.8;
    }
}
