@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body * {
    box-sizing: border-box;
}

body {
    color: #000;
    color: #303030;
    font-family: 'Montserrat', sans-serif;
}

body.menu-open {
    overflow: hidden;
}

.f-end {
    justify-content: flex-end;
}

.bold {
    font-weight: 700;
}

.blue-gradient {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
ul,
li,
label {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
    outline: 0;
    outline-offset: 0;
}

button:active,
input:active,
button:hover,
input:hover,
button:focus,
input:focus {
    outline: 0;
    outline-offset: 0;
}

section {
    position: relative;
}

.loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #51C9EF;
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-block{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: rotate 3s infinite;
    position: relative;
}
.loader-block-item{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    
}

.loader-block-item:first-child{
    left: calc( 50% - 4px );
    top: -4px;
    animation: loaderPulsTop 1s infinite;
}
.loader-block-item:nth-child(2){
    right: -4px;
    top: calc( 50% - 4px );
    animation: loaderPulsTop 1s infinite;
}
.loader-block-item:nth-child(3){
    left: -4px;
    top: calc( 50% - 4px );
    animation: loaderPulsBottom 1s infinite;
}
.loader-block-item:nth-child(4){
    right: calc( 50% - 4px );
    bottom: -4px;
    animation: loaderPulsBottom 1s infinite;
}

@keyframes rotate{
    to{
        transform: rotate(360deg);
    }
}
@keyframes loaderPulsTop{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
    0%{
        transform: translateY(0);
    }
}
@keyframes loaderPulsBottom{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(5px);
    }
    0%{
        transform: translateY(0);
    }
}
.slick-slide:focus {
    outline: none !important;
}

.menu-block {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;

}

.menu-shadow {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
}

.menu {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    width: 250px;
    background: #fff;
    height: 100%;
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #06D2FF;
    animation: menuShow 0.3s;
}

@keyframes menuShow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.menu-item {
    display: block;
    padding: 5px 10px;
    color: #000;
}

.menu-item:hover {
    color: #0B9FA9;
}

.title {
    font-weight: 500;
    font-size: 38px;
    line-height: 120%;
}

.flex-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: 0.4s;
    border: none;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 100%;
}

.gray.flex-btn {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #06D2FF;
    border-radius: 30px;
    width: 200px;
    height: 60px;
}

.blue.flex-btn {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 30px;
    width: 200px;
    height: 60px;
    color: #fff;
}

.blue.flex-btn:hover {
    color: #0B9FA9;
    background: #F9FBFD;
    transition: 0.5s;
}

.gray.flex-btn:hover {
    color: #fff;
    background: #0B9FA9;
}

.up-block {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 10;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding-top: 5vh;
    display: none;
}

.h-modal-content {
    padding: 40px 20px;
    width: 300px;
    max-width: 100%;
    border-radius: 20px;
    background: #fff;
    margin: 0 auto;
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
}

.h-modal-content-title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.008em;
    text-transform: uppercase;
    font-weight: 500;
    color: #0B9FA9;
}

.h-modal-content-text {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.first {
    padding: 75px 0 130px 0;
    overflow: hidden;
}



.logo img {
    max-width: 90%;
}

.logo {
    max-width: 244px;
}

.first-title {
    font-weight: bold;
    font-size: 59px;
    line-height: 117%;
    color: #303030;
    max-width: 535px;
    margin: 20px 0 50px 0;
    text-transform: uppercase;
}

.first-block-row {
    display: flex;
    align-items: center;
}

.bars {
    margin-left: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.bars:hover {
    opacity: 0.5;

}

.bars.active .bars-item-object:last-child {
    display: none;
}

.bars.active .bars-item-object+.bars-item-object {
    margin-top: 0;
}

.bars.active .bars-item-object:first-child {
    transform: rotate(45deg);
}

.bars.active .bars-item-object:nth-child(2) {
    transform: rotate(-45deg);
    top: -1px;

}

.bars-item {
    width: 100%;

}

.bars-item-object {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition: 0.3s;
    position: relative;
}

.bars-item-object+.bars-item-object {
    margin-top: 10px;
}

.first-block-inner {
    display: flex;
    align-items: center;
    margin-bottom: 58px;
}
.first-block-inner:hover{
    .first-block-inner-icon{
        transform: translateX(10px);
    }
}
.first-block-inner:last-child {
    margin-bottom: 0;
}

.first-block-inner-icon {
    margin-right: 20px;
    transition: 0.3s;
}

.first-block-inner-text p {
    font-weight: 300;
    font-size: 32px;
    line-height: 120%;
}

.first-block-inner-img {
    margin-left: -15px;
}

.first-abs {
    position: absolute;
    right: 0;

    width: 50%;
    top: 75px;
    text-align: right;
}

.first-abs img {
    width: 100%;
}



.first-btn {
    position: absolute;
    right: 340px;
    bottom: 113px;
}

.first .col-md-6 {
    position: static;
}

.second {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    padding: 34px 0 41px 0;
    color: #fff;
    z-index: 1;
}
.second-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.second-row-item{
    width: 50%;
}


.second-abs {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 30%;
    max-width: 520px;
}

.second-abs img {
    width: 90%;
}

.second-block .title {
    max-width: 631px;
    margin-bottom: 32px;
}

.second-block-text {
    padding-left: 20px;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 24px;
    position: relative;
}

.second-block-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    background: #F9FBFD;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25), -1px -1px 6px #FFFFFF;
}

.second-block-btn {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #06D2FF;
    border-radius: 30px;
    width: 200px;
    height: 60px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 32px;
}

.second-block-btn:hover {
    color: #fff;
    background: #0B9FA9;
}

.third {
    text-align: center;
    padding: 152px 0 85px 0;
    background: #E5E5E5;
}

.third .title {
    margin-bottom: 64px;
}

.third-block {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 20px;
    padding: 20px 10px;
    transition: 0.3s;
}
.third-block:hover{
    .third-block-img{
        transform: rotate(-15deg);
    }
}

.third-block-img {
    height: 60px;
    transition: 0.3s;
}

.third-block-title {
    margin: 20px 0 10px 0;
    font-size: 18px;
    line-height: 142%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.third-block-text {
    font-size: 15px;
    line-height: 125%;
}

.third-btn {
    margin: 64px auto 0 auto;
}

.fourth {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    padding: 65px 0 30px 0;

}

.fourth .title {
    color: #F9FBFD;
}

.fourth-block {
    display: flex;
    align-items: center;
}

.fourth-block-item {
    margin-right: 43px;
}

.fourth-block-item:last-child {
    margin-right: 0;
}

.fourth-block-text {
    font-size: 33px;
    line-height: 120%;
    color: #F9FBFD;
}

.fourth-btn {
    margin-top: 27px;
}





.fourth-slider-head {
    margin: 40px 0 -100px 0;
}

.items-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
}

.items {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
}

.item {
    flex: 0 0 auto;
    width: 450px;
    height: auto;
    counter-increment: item;
    display: flex;
    justify-content: center;
    margin: 40px 0;
    transition: all 0.1s ease-in-out;
}

.item:hover {
    transform: scale(1.05);
}



.marquee {
    animation: scroll 20s linear infinite;
}

.reverce {
    animation-direction: reverse;
}

.items-wrap:hover .marquee {
    animation-play-state: paused;
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 20px));
    }
}

.fourth-slider-inner {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 24px;
    position: relative;


}

.inner-margin {
    width: 100%;
    padding: 0 20px;
}

.fourth-slider-date {
    font-size: 16px;
    line-height: 120%;
}

.fourth-slider-date span {
    color: #68B568;
    font-weight: 700;
}

.fourth-slider-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    margin: 4px 0;
}

.fourth-slider .slick-slide {
    width: 100%;
}

.fourth-slider-gradient {
    background: linear-gradient(52.65deg, #1758F1 -29.4%, #2596E8 18.31%, #CA63EE 99.62%, #8137E0 99.62%);
    -webkit-background-clip: text;
    font-weight: 600;
    position: relative;
    -webkit-text-fill-color: transparent;
}

.fourth-slider-block {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.fourth-slider-slogan {
    font-size: 16px;
    margin-bottom: 24px;

}

.fourth-slider-block p {
    color: #969696;
    font-size: 14px;
    line-height: 110%;
    font-weight: 600;
}



.fourth-slider-gradient span {
    font-size: 14px;
}

.slider-text {
    margin-bottom: 24px;
    max-width: 240px;
}

.fourth-slider-span {
    margin-left: 5px;
}

.fourth-slider-line {
    background: #D6D6D6;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
}



.fiveth {
    padding: 190px 0 164px 0;
}

.fiveth .title {
    text-align: center;
    margin-bottom: 48px;
}

.fiveth-block {
    display: flex;
    align-items: center;
}
.fiveth-block:hover{
    .fiveth-block-inner{
        background: transparent;
    }
    .fiveth-block-item{
        transform: translateX(10px);
    }
}
.fiveth-block-item{
    transition: 0.3s;
}

.fiveth-gradient {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    -webkit-background-clip: text;
    font-weight: 600;
    position: relative;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 69px;
    margin-right: 30px;
    width: 40px;
}

.fiveth-block-inner {
    display: flex;
    align-items: center;
    padding: 12px;
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: inset 2px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #FFFFFF;
    border-radius: 20px;
    width: 390px;
    max-width: 100%;
    transition: 0.3s;
}


.fiveth-block-inner-text-title {
    font-size: 24px;
    margin-bottom: 6px;
}

.fiveth-block-inner-text-slogan {
    font-size: 16px;
}

.fiveth-margin {
    margin-bottom: 99px;
}

.fiveth-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.fiveth-btns .gray {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    margin-right: 48px;
}



.sixth {
    padding: 62px 0 102px 0;
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
}

.sixth .title {
    color: #F9FBFD;
}

.sixth-stats {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    box-shadow: inset 7px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #0BA6C8;
    border-radius: 20px;
    padding: 24px;
    max-width: 325px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.sixth-stats-title p {
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    color: #F9FBFD;
}

.sixth-stats-star {
    display: flex;
    margin-left: 20px;
}

.sixth-stats-star img {
    width: 30px;
    height: 30px;
}

.sixth-block {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: 0.3s;
}
.sixth-block:hover{
    box-shadow:  2px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #FFFFFF;
}


.sixth-block-flex {
    display: flex;
    align-items: center;
}

.sixth-block-flex-img {
    margin-right: 24px;
}

.sixth-block-flex-img img {
    position: relative;
    top: -3px;
}

.sixth-block-flex-stats {
    display: flex;
    align-items: center;
    position: relative;
    left: -5px;
    margin-top: 6px;
}

.sixth-block-flex-name {
    font-size: 24px;
    line-height: 100%;
}

.sixth-block-text {
    font-size: 16px;
    line-height: 125%;
    margin-top: 24px;
}

.sixth .row:last-child {
    margin-top: 42px;
}


.seventh {
    padding: 124px 0 0 0;
}

.seventh-mob {
    display: none;
    margin-top: 40px;
}

@keyframes render {
    0% {
        stroke-dasharray: 0 100;
    }
}

.canvas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    position: relative;

}

.canvas-one {
    transform: rotate(220deg);
}

.canvas-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-220deg);
    left: calc(50% - 85px);
}

.chart-item {
    transform: rotate(-220deg);
    position: absolute;
    padding-bottom: 5px;
    border-bottom: 1px dashed #3CBCE5;
}

.chart-item:after {
    content: "";
    background: #F9FBFD;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25), -1px -1px 6px #FFFFFF;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    display: block;
    right: 0;
    bottom: -6px;
}

.chart-one {
    width: 192px;
    top: 44%;
    left: 69%;
}

.chart-two {
    width: 132px;
    top: 26%;
    left: 72%;
}

.chart-three {
    width: 143px;
    top: 10%;
    left: 60%;
}

.chart-four {
    width: 210px;
    top: -2%;
    left: 38%;
}

.chart-item p {
    font-size: 16px;
    line-height: 125%;
}

.legend {
    max-width: 250px;
    margin-left: 30px;
}

.chart {
    min-width: 500px;
}

.unit {
    fill: none;
    stroke-width: 10;
    cursor: pointer;

    animation-name: render;
    animation-duration: 1.5s;
    transition-property: all;
    transition-duration: 1.5s;
}

/*.unit:hover,
.hovered {
  opacity: 0.8;
  stroke-width: 12;
}
*/
.canvas-one .unit:nth-child(1) {
    stroke: #0BA0A9;
    stroke-dasharray: 70 100;
    stroke-dashoffset: 0;
}

.canvas-one .unit:nth-child(2) {
    stroke: #0D88BC;
    stroke-dasharray: 12 100;
    stroke-dashoffset: 42;
}

.canvas-one .unit:nth-child(3) {
    stroke: #01498B;
    stroke-dasharray: 10 100;
    stroke-dashoffset: 28;
}

.canvas-one .unit:nth-child(4) {
    stroke: #002766;
    stroke-dasharray: 8 100;
    stroke-dashoffset: 16;
}


.canvas-two .unit:nth-child(1) {
    stroke: radial-gradient(at top, #FEFFFF, #A7CECC);
    ;
    stroke-dasharray: 70 100;
    stroke-dashoffset: 0;
}

.canvas-two .unit {
    position: relative;
}

.canvas-two .unit:nth-child(2) {
    stroke: #0D88BC;
    stroke-dasharray: 12 100;
    stroke-dashoffset: 42;
}

.canvas-two .unit:nth-child(3) {
    stroke: #01498B;
    stroke-dasharray: 10 100;
    stroke-dashoffset: 28;
}

.canvas-two .unit:nth-child(4) {
    stroke: #002766;
    stroke-dasharray: 8 100;
    stroke-dashoffset: 16;
}


.diagram {
    position: relative;
    width: 266px;
    margin: 0 auto;
    top: 20%;
}

.diagram .chart-item {

    z-index: 5;
}

.diagram-title {
    position: absolute;
    top: 118px;
    left: 88px;
    font-size: 24px;
    line-height: 34px;

}

.diagram-item {
    position: absolute;
    cursor: pointer;
    transition: 0.5s;
}

.diagram-item p {
    transition: 0.2s;
}

.d-one {
    top: 5px;
    left: 0;
    transform: rotate(-1deg);
}

.d-two {
    right: 17px;
    top: -4px;
    transform: rotate(60deg);
}

.d-three {
    right: -47px;
    top: 90px;
    transform: rotate(119deg);
}

.d-four {
    right: -3px;
    top: 194px;
    transform: rotate(176deg);
}

.d-five {
    left: 20px;
    top: 208px;
    transform: rotate(238deg);
}

.d-six {
    left: -50px;
    top: 113px;
    transform: rotate(298deg);
}

.ch-one {
    width: 164px;
    top: 10%;
    left: -80%;
    transform: rotate(0);
}

.ch-two {
    width: 164px;
    top: -54%;
    left: 22%;
    transform: rotate(-60deg);
    text-align: right;
}

.ch-two:after {
    left: 0;
    right: auto;
}

.ch-three {
    width: 120px;
    top: -20%;
    left: -26%;
    transform: rotate(-119deg);
    text-align: right;

}

.ch-three:after {
    left: 0;
    right: auto;

}

.ch-four {
    width: 193px;
    top: 31%;
    left: -80%;
    transform: rotate(-176deg);
    text-align: right;

}

.ch-four:after {
    left: 0;
    right: auto;

}

.ch-five {
    width: 193px;
    top: -30%;
    left: 21%;
    transform: rotate(-238deg);
}

.ch-six {
    width: 121px;
    top: -16%;
    left: -8%;
    transform: rotate(-298deg);
}

.diagram-item:hover .chart-item {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    -webkit-background-clip: text;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
}

























.eighth {
    padding: 90px 0 160px 0;
}

.eighth-block {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: inset 2px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #FFFFFF;
    border-radius: 20px;
    padding: 32px;
}

.eighth-block-flex {
    display: flex;
    align-items: center;
}

.eighth-block-flex-item {
    margin-left: 32px;
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 8px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: #303030;
}

.eighth-block-flex-item:hover {
    color: #303030;
}

.eighth-block-flex-item-icon {
    margin-right: 8px;
}

.eighth-block-flex-item-icon img {
    width: 24px;
    height: 24px;
}

.eighth-block-flex-item-text p {
    font-weight: 600;
    font-size: 14px;
    line-height: 110%;
}

.eighth-inner {
    padding-bottom: 26px;
}
.eighth-inner:hover{
    .eighth-inner-img img{
        transform: scale(1.1);
    }
}

.eighth-inner-img{
    overflow: hidden;
}
.eighth-inner-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.3s;
}

.eighth-inner-date {
    font-size: 12px;
    line-height: 1.68;
    margin-top: 12px;
}

.eighth-inner-title {
    font-weight: 300;
    font-size: 24px;
    line-height: 130%;
}

.eighth-inner-tag {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    line-height: 125%;
}

.eighth-inner-text {
    font-size: 16px;
    line-height: 125%;
    margin: 26px 0;
}

.eighth-inner-link {
    display: flex;
    align-items: center;
    color: #303030;
    text-decoration: none !important;
}
.eighth-inner-link:hover{
    img{
        transform: translateX(5px);
    }

}

.eighth-inner-link img {
    margin-left: 10px;
    transition: 0.3s;
}

.eighth-inner-link:hover {
    color: #303030;
}

.eighth-block .row {
    margin-top: 28px;
}

.nineth {
    padding: 86px 0 67px 0;
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    color: #F9FBFD;
}

.ninieth-abs {
    position: absolute;
    left: 0;
    top: -15%;

}

.ninieth-abs img {

    max-width: 613px;
    max-height: 550px;
}



.nineth-block-icon {
    min-width: 140px;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-right: 55px;
    margin-left: 74px;
    background: #F9FBFD;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25), -1px -1px 6px #FFFFFF;
    border-radius: 20px;
    position: relative;
}

.nineth-block-icon:after {
    content: "";

    display: block;
    position: absolute;
    left: 20px;
    bottom: -20px;
    width: 10px;
    border: 20px solid transparent;
    border-left: 20px solid #F9FBFD;
}

.nineth-block {
    display: flex;
    align-items: center;
}

.nineth-block-btn {
    margin-top: 40px;
}


.tenth {
    padding: 183px 0 104px 0;
}

.tenth-block {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 20px;
    padding: 50px;
}

.tenth-block-top {
    display: flex;
    align-items: center;
    margin-bottom: 67px;
}

.tenth-block-top-btn {
    display: flex;
    align-items: center;
    margin: 0 62px 0 32px;
}

.tenth-block-top-btn div {
    padding: 6px 20px;
    font-weight: 600;
    font-size: 24px;
}

/*.tenth-block-top-btn-left {
    color: #969696;
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 20px 0px 0px 20px;
}*/
.tenth-block-top-btn div {
    color: #969696;
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 20px 0px 0px 20px;
    cursor: pointer;
}

.tenth-block-top-btn div.tenth-block-top-btn-right {
    border-radius: 0 20px 20px 0;
}

.tenth-block-top-btn div.active {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: inset 2px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #FFFFFF;
    border-radius: 0px 20px 20px 0px;
}

.tenth-block-top-btn div.active.tenth-block-top-btn-left {
    border-radius: 20px 0 0 20px;
}

.tenth-block-top-btn div.active p {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tenth-block-top-input {
    margin-left: auto;
}

.tenth-block-top-input-inner {
    position: relative;

}

.tenth-block-top-input-inner .tenth-block-top-input-inner-text {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    box-shadow: inset 2px 2px 7px rgba(0, 0, 0, 0.25), inset -3px -2px 11px #FFFFFF;
    border-radius: 30px;
    width: 345px;
    height: 50px;
    padding: 0 38px;
    line-height: 125%;
    font-size: 16px;
    color: #969696;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.tenth-block-top-input-inner-text.war {
    border-color: red;
}

.tenth-block-top-input-inner-text.accept {
    border-color: #51C9EF;
}

.tenth-block-top-input-inner-abs {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
    border-radius: 0px 30px 30px 0px;
    width: 112px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: none;
    color: #fff;
}

.tenth-block .col-12 {
    border-right: 1px solid #D6D6D6;
}

.tenth-heading-block {
    padding: 117px 48px 0 0;
}

.tenth-heading-block-text {
    font-size: 16px;
    line-height: 125%;
    color: #969696;
    text-align: right;
    margin-bottom: 31px;
}

.tenth-heading-block-text:first-child {
    margin-bottom: 50px;
}

.tenth-heading-block-text:last-child {
    margin-top: 60px;
}

.tenth-inner-head {
    position: relative;
    height: 100%;
    padding-bottom: 164px;
}

.tenth-inner {
    display: flex;
    align-items: center;
}

.tenth-inner .tenth-inner-left {
    display: none;
}

.tenth-inner-price-top {
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    text-decoration-line: line-through;
    color: #969696;
    margin: 6px 0;
}

.tenth-inner-price-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 125%;
}

.enth-inner-name {
    font-size: 16px;
    line-height: 115%;
}

.tenth-inner-price-slogan {
    font-size: 12px;
    line-height: 110%;
    max-width: 129px;
    color: #969696;
}

.tenth-inner-limit {
    font-weight: bold;
    font-size: 16px;
    line-height: 125%;
}

.tenth-inner-limit-margin,
.tenth-inner-connections-margin {
    margin: 6px 0 24px 0;
}

.tenth-inner-connections {
    font-size: 16px;
    line-height: 115%;

}

.tenth-inner-connections span {
    font-weight: bold;
}

.tenth-inner-flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.tenth-inner-flex+.tenth-inner-flex {
    margin-top: 10px;
}

.tenth-inner-flex-text {
    margin-left: 9px;
    font-size: 16px;
    line-height: 115%;
}

.tenth-bots {
    margin: 35px 0 50px 0;
    display: flex;
    flex-wrap: wrap;
}

.tenth-bots-pro {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0 26px 0;
    align-items: flex-start;
}

.tenth-inner-flex-icon {
    width: 28px;
    text-align: center;
}

.tenth-bots-pro .tenth-inner-flex:nth-child(3) {
    margin-top: 15px;
}

.tenth-inner-btns {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 90%;
}

.tenth-inner-btns button {
    max-width: 100%;
    width: 135px;
    margin: 0 auto;
}

button.tenth-inner-btns-one {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF !important;
    margin-top: 24px;
}

.tenth-modes-pro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}





.pro .tenth-inner-btns {
    margin-top: 28px;
}

.tenth-block-bottom {
    margin-top: 48px;
}

.tenth-block-bottom-title {
    font-weight: bold;
    font-size: 16px;
}

.tenth-block-bottom-flex {

    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.tenth-block-bottom-flex-block {
    display: flex;
}



.tenth-block-bottom-flex-block-text p {
    font-size: 16px;
    line-height: 125%;
    margin-left: 9px;
    width: 146px;
}

.eleventh {
    padding-bottom: 160px;
}

.eleventh-left-block {
    text-align: center;
}

.eleventh-left-block img {
    max-width: 100%;
}

.eleventh-left-block-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 125%;
    margin-top: 45px;
}

.feedback {
    padding: 50px;
    border-radius: 20px;
    max-width: 630px;
    margin-left: auto;
}

.feedback.blue {
    background: linear-gradient(90deg, #51C9EF 0%, #0B9FA9 100%);
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
}

.feedback.gray {
    background: #E5E5E5;
}

.feedback.blue {
    color: #fff;
}

.feedback-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 120%;
}

.feedback-bold {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    margin: 6px 0 34px 0;
}

.feedback-block {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    border-radius: 30px;
    padding: 20px 25px;
    width: 280px;
    max-width: 100%;
    text-decoration: none !important;
}

.feedback.blue .feedback-block {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #06D2FF;
}

.feedback.gray .feedback-block {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
}

.feedback-block-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 125%;
    margin-left: 20px;
    color: #303030;
    position: relative;
    top: 2px;
}

.feedback-text {
    font-size: 16px;
    line-height: 110%;
    margin: 27px 0 17px 0;
}

.feedback-text a {
    color: #fff;
    text-decoration: none !important;
}

.feedback-text:last-child {
    margin: 0;
}

.feedback-input {
    background: linear-gradient(90deg, #FEFEFF 0%, #F3F5FE 100%);
    border-radius: 30px;
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 14px;
    padding-left: 33px;
    color: #000;
    border: none;
}

.feedback.blue .feedback-input {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #06D2FF;
}

.feedback.gray .feedback-input {
    box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
}

.feedback-sub {
    width: 134px;
    height: 40px;
    margin: 36px 0 36px auto;
}


@media screen and (max-width: 1400px) {
    .ninieth-abs {
        top: -15%;
        width: 40%
    }

    .ninieth-abs img {
        width: 100%;
    }

    .first {
        overflow: hidden;
    }



    .first-title {
        font-size: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .ninieth-abs {
        top: 5%;
    }

    .first-btn {
        right: 100px;
        bottom: 113px;
    }



    .first-title {
        font-size: 45px;
    }



    .third-block-title {
        margin: 10px 0;
        font-size: 14px;
    }

    .third-block-text {
        font-size: 13px;
    }

    .sixth-block-flex-img {
        margin-right: 10px;
    }

    .sixth-block-flex-stats img {
        width: 24px;
        height: 24px;
    }

    .sixth-block-flex-name {
        font-size: 20px;
    }

    .tenth-block-bottom-flex {
        flex-wrap: wrap;
    }



    .canvas-one {
        top: -100px;
        left: -5%;
    }

    .chart-one {
        top: 45%;
        left: 46%;
    }

    .canvas-logo {
        left: calc(34% - 85px);
    }

    .chart-two {
        top: 28%;
        left: 49%;
    }

    .chart-three {
        top: 14%;
        left: 42%;
    }

    .chart-four {
        width: 190px;
        top: 4%;
        left: 30%;
    }

    .seventh {
        padding-bottom: 270px;
    }

    

    .diagram {
        margin-top: 40px;
    }

    .first-abs {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 992px) {
    .nineth-block-icon {
        margin-bottom: 30px;
        justify-content: center;
    }

    .ninieth-abs {
        top: 20%;
    }

    .first-title {
        font-size: 38px;
    }
    .second-row-item{
        width: 100%;
    }
    .second-abs {
        width: 100%;
        max-width: 300px;
        position: static;
        transform: none;
        text-align: center;
        margin: 0 auto;
    }
    .second-abs img{
        width: 100%;
    }

    .title {
        font-size: 30px;
    }

    .eighth-inner-title {
        font-size: 16px;
    }

    .eighth-inner-text {
        margin: 15px 0;
    }

    .tenth-heading-block-text {
        font-size: 12px;
    }



    .tenth-block-top-input-inner .tenth-block-top-input-inner-text {
        width: 270px;
        padding-left: 15px;
    }

    .tenth-block-top-input-inner-abs {
        width: 80px;
    }

    .tenth-block-top-btn {
        margin: 0 30px;
    }

    .tenth-block-top-btn div {
        font-size: 16px;
    }

    .blue.flex-btn,
    .gray.flex-btn {
        height: 40px;
        width: 180px;
    }

    .eleventh-left-block-title {
        font-size: 30px;
    }

    .sixth-block-flex {
        display: block;
        text-align: center;
    }

    .sixth-block-flex-stats {
        justify-content: center;
    }

    .sixth-block-flex-img {
        margin-right: 0;
    }

    .fiveth-block-inner-text-title {
        font-size: 20px;
    }

    .fiveth-block-inner-img img {
        width: 100%;
    }

    .fiveth-block {
        justify-content: center;
        margin-bottom: 20px;
    }

    .fiveth-margin {
        margin-bottom: 20px;
    }

    .flex-btn {
        font-size: 12px;
    }

    .nineth-block {
        display: block;
    }

    .feedback-title {
        font-size: 28px;
    }

    .feedback-bold {
        font-size: 20px;
    }

    .chart-one {
        top: 46%;
        left: 51%;
    }

    .canvas-logo {
        left: calc(39% - 85px);
    }

    .chart-two {
        top: 27%;
        left: 56%;
    }

    .chart-three {
        top: 12%;
        left: 50%;
    }

    .chart-four {
        width: 190px;
        top: 0%;
        left: 35%;
    }

    .third-block-title {
        font-size: 16px;
    }

    .third-block {
        margin-bottom: 20px;
    }

    .canvas-one {
        top: -40px;
    }

    .tenth-block .col-12 {
        padding: 0 5px;
    }

    .item {
        width: 350px;
    }

    .sixth-block-text {
        font-size: 11px;
    }

    .sixth-stats {
        display: none;
    }

    .sixth .row:last-child {
        margin-top: 0;
    }

    .sixth .col-12 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .nineth-block-icon {
        margin: 30px auto;
    }

    .seven-none {
        display: none;
    }

    .tenth-inner .tenth-inner-left {
        display: block;
        width: 110px;
        margin-right: 20px;
    }

    .tenth-heading-block-text:last-child,
    .tenth-heading-block-text:first-child {
        margin: auto;
    }

    .tenth-block {
        padding: 24px;
    }

    .first-abs {
        display: none;
    }

    .second-abs {
        position: relative;
        margin-top: -74px;
        text-align: center;
    }

    .second-block .title {
        font-size: 32px;
    }

    .second-block-text {
        font-size: 16px;
        margin-bottom: 19px;
    }

    .blue.flex-btn,
    .gray.flex-btn,
    .second-block-btn {
        width: 100%;
        height: 46px;
    }

    .third-block {
        margin-bottom: 28px;
        padding: 30px 12px 12px 12px;
    }

    .third-btn {
        margin-top: 0;
    }

    .first {
        padding: 65px 0 110px 0;
    }

    .first-block {
        padding: 0 20px;
    }

    .fourth-block {
        margin-top: 20px;
    }

    .tenth-block-top {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
    }

    .tenth-block-top-input-inner .tenth-block-top-input-inner-text {
        width: 320px;
    }

    .tenth-block-top-input-inner {
        margin-top: 20px;
    }

    .tenth-inner-btns {
        margin: 20px 0;
    }

    .tenth-block {
        box-shadow: none;
        background: #fff;
        padding: 0;
    }

    .tenth-block .col-12 {
        margin: 20px 0;
        box-shadow: 4px 8px 21px rgba(0, 0, 0, 0.1), -6px -7px 23px #FFFFFF;
        border-radius: 20px;
        padding-top: 86px;
    }

    .tenth-inner-name {
        font-weight: 500;
        font-size: 32px;
    }

    .tenth-inner {
        margin-bottom: 24px;
    }

    .tenth-block-bottom-flex-block-text p {
        max-width: 96px;
    }

    .feedback {
        padding: 24px;
    }

    .nineth-block {
        text-align: center;
    }

    .nineth,
    .tenth,
    .eighth,
    .third {
        padding: 40px 0;
    }

    .first-btn {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
    }

    .first-block-inner-text p {
        font-size: 24px;
    }

    .first-block-inner {
        margin-bottom: 44px;
    }

    .canvas-one {
        top: -10%;
    }

    .chart-one {
        top: 167px;
        left: 316px;
    }

    .chart-two {
        top: 101px;
        left: 337px;
    }



    .chart-three {
        top: 50px;
        left: 285px;
    }

    .chart-four {
        top: 6px;
        left: 194px;
    }

    .canvas-logo {
        left: 140px;
    }

    .seventh {
        overflow: hidden;
        padding-bottom: 320px;
    }

    .chart {
        min-width: 300px
    }
}

@media screen and (max-width: 574px) {
    .title br {
        display: none;
    }

    .canvas-one {
        left: 10%;
    }

    .chart-item p {
        font-size: 14px;
    }

    .ch-one {
        width: 111px;
        top: 11%;
        left: -61%;
        transform: rotate(0);
    }

    .ch-six {
        width: 90px;
        top: -23%;
        left: 6%;
    }

    .ch-five {
        width: 110px;
        top: -26%;
        left: 42%;
    }

    .ch-two {
        width: 105px;
        top: -42%;
        left: 22%;
    }

    .ch-three {
        width: 93px;
        top: -12%;
        left: -17%;
    }

    .ch-four {
        width: 134px;
        top: 22%;
        left: -49%;
    }

    .eighth-block-flex {
        display: block;
    }

    .eighth-block-flex-item {
        margin-left: 0;
    }

    .up-block{
        right: 5px;
    }
}

@media screen and (max-width: 470px) {
    .title br {
        display: none;
    }

    .chart {
        min-width: 100px;
        width: 300px;
    }

    .canvas-one {
        top: 0%;
    }

    .canvas-logo {
        left: 87px;
    }

    .seventh-mob {
        display: block;
    }

    .seventh-mob img {
        width: 100%;
        margin-bottom: 40px;
    }

    .seventh-mob img:last-child {
        margin-bottom: 0;
    }

    .mob-none {
        display: none;
    }
    .seventh{
        padding-bottom: 40px;
    }

}

@media screen and (max-width: 400px) {
    .logo{
        max-width: 150px;
    }
    .bars{
        margin-left: auto;
        width: 50px;
        height: 50px;
    }
}