@font-face {
    font-family: "PT Astra Fact regular";
    src: url(../fonts/PTAstraFact-Regular.ttf);
}

@font-face {
    font-family: "PT Astra Fact";
    src: url(../fonts/PTAstraFact-Bold.ttf);
}

html {
    scroll-padding-top: 55px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PT Astra Fact regular";
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
    margin: 0;
}

body {
    overflow-x: hidden;
    background-color: #03122e;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.locked {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/*wrapper*/
/* .wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background: url("../img/Desktop-bg.jpg") top center/cover no-repeat;
} */
/*header*/
.header {
    padding: 14px 20px;
    background-color: #03122e;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-img {
    width: 180px;
    height: 36px;
}

.header-menu-list {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.header-burger-menu {
    display: none;
}

.header-menu-item {
    padding: 0 6px;
    position: relative;
}

.header-menu-item:first-of-type {
    display: none;
}

.header-menu-link {
    font-size: 14px;
    color: #d0d5e1;
    display: flex;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.header-burger-menu-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-burger-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 8px;
    background-color: #43f0a8;
    color: #1f293d;
    font-size: 12px;
    font-family: "PT Astra Fact";
    gap: 20px;
}

.header-burger-link-wrap-arrow {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    background-color: rgba(31, 41, 61, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-burger-link-arrow {
    background: url("../img/header-green-arrow.svg") center center/cover no-repeat;
    width: 5px;
    height: 7px;
}

.header-burger-link:hover {
    background-color: #7afbc9;
}

.header-burger-link:hover .header-menu-link-arrow {
    background: url("../img/header-green-arrow-hover.svg") center center/cover no-repeat;
    width: 5px;
    height: 7px;
}

.header-menu-link-arrow.active {
    transform: rotate(180deg);
}

.header-menu-item:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -14px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: linear-gradient(90deg,
            rgba(46, 187, 255, 0) 0%,
            #2ebbff 50%,
            rgba(46, 187, 255, 0) 100%);

    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.header-menu-item:hover:after {
    width: 100%;
    left: 0;
}

.header-menu-item.active:after {
    width: 100%;
    left: 0;
}

.header-menu-list-extra {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 35px;
    left: 0;
    padding: 8px 12px;
    z-index: 1;
    border: 1px solid rgba(48, 60, 86, 1);
    border-radius: 12px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);
    background-color: #03122e;
    width: 316px;
}

.header-menu-list-extra.active {
    display: flex;
}

.header-menu-item-extra {
    padding: 12px;
}

.header-menu-link-extra {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #939cb1;
    font-size: 14px;
    line-height: 1.5;
}

.header-menu-item-extra:hover .header-menu-link-extra {
    color: #2ebbff;
}

.header-logo-img-mobile {
    display: none;
}

/*адаптив header*/

@media (max-width: 1150px) {
    .header {
        padding: 8px 40px;
    }

    .header-logo-img {
        display: none;
    }

    .header-logo-img-mobile {
        display: block;
    }

    .header-menu-item:first-of-type .header-logo-img-mobile {
        display: flex;
        width: 100%;
        max-width: 57px;
        height: 27px;
    }

    .header-menu-item:hover:after {
        width: 0;
        left: 0;
    }

    .header-menu-list-extra {
        display: none;
        position: static;
        padding: 0;
        width: 100%;
        max-width: 316px;
    }

    .header-menu-item.active:after {
        width: 0;
        left: 0;
    }

    /* .header-menu-item-extra {
    padding: 16px 24px;
    border-bottom: 1px solid #4e5563;
  } */
    .header-menu {
        position: absolute;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        transition: all 0.2s;
    }

    .header-menu-item:first-of-type {
        display: flex;
        padding: 16px 24px;
    }

    .header-menu-item:nth-child(2) {
        margin-top: 32px;
    }

    .header-menu.active {
        left: 0;
        margin-top: 0;
        margin-right: 0;
        z-index: 10;
    }

    .header-menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        height: 100%;
        width: 60%;
        background-color: #03122e;
        overflow: auto;
        margin: 0;
        backdrop-filter: blur(20px);
    }

    .header-burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #035a5d;
        border-radius: 100%;
        position: relative;
        z-index: 49;
    }

    .header-burger-icon {
        display: block;
        width: 16px;
        height: 10px;
        position: relative;
        z-index: 50;
        cursor: pointer;
        float: right;
    }

    .header-burger-icon span {
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        width: 100%;
        min-height: 2px;
        max-height: 2px;
        background-color: #fff;
        transition: all 0.2s;
    }

    .header-burger-icon span:first-child {
        top: 0;
    }

    .header-burger-icon span:last-child {
        top: auto;
        bottom: 0;
    }

    /* .header-menu-item:last-of-type {
      padding: 0 40px;
      margin-top: 40px;
    } */
    /* .header-menu-item:last-of-type .header-menu-link {
    margin: 20px 24px;
    max-width: 92%;
    text-align: center;
    height: 68px;
    font-size: 16px;
    justify-content: center;
  } */

    .header-menu-item {
        padding: 0 20px;
        width: 100%;
        display: flex;
        flex-direction: column;

        /* align-items: center;
        justify-content: center; */
    }

    /* .header-menu-item-wrap-arrow {
    min-width: 28px;
    max-width: 28px;
    height: 28px;
  } */
    .header-menu-link {
        padding: 20px 0;
        color: #fff;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .header-burger-icon.active span {
        background-color: #fff;
        transform: scale(0);
    }

    .header-burger-icon.active span:first-child {
        transform: rotate(-45deg);
        top: calc(50% - 1px);
    }

    .header-burger-icon.active span:last-child {
        transform: rotate(45deg);
        bottom: calc(50% - 1px);
        width: 100%;
    }
}

@media (max-width: 500px) {
    .header {
        padding: 8px 20px;
    }

    .header-burger-menu-wrap {
        gap: 16px;
    }

    .header-menu-list {
        width: 100%;
    }
}

/*завершение адаптива*/
/*main*/
.main {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

/*main-btn*/
.main-btn {
    position: fixed;
    bottom: 50px;
    right: 40px;
    padding: 12px 16px;
    background-color: #009cfe;
    box-shadow: 0px 4px 20px 0px #001b3633;
    display: flex;
    gap: 13px;
    align-items: center;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 14px;
    color: #ffffff;
    font-family: "PT Astra Fact";
    z-index: 999;
}

.main-btn-wrap-arrow {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*banner*/
.banner {
    padding: 67px 0;
    background: url("../img/banner-bg.png") center center/ contain no-repeat;
    height: 661px;
}

.banner .container {
    height: 100%;
}

.banner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner-content {
    width: 100%;
    max-width: 600px;
}

.banner-title {
    font-size: 60px;
    line-height: 1.5;
    color: #ffffff;
}

.banner-subtitle {
    margin-top: 20px;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
}

.banner-link {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    background-color: #43f0a8;
    color: #1f293d;
    font-size: 18px;
    font-family: "PT Astra Fact";
    gap: 20px;
    width: 100%;
    max-width: 344px;
}

.banner-link-wrap-arrow {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-color: rgba(31, 41, 61, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-link-arrow {
    background: url("../img/header-green-arrow.svg") center center/cover no-repeat;
    width: 7px;
    height: 10px;
}

.banner-link:hover {
    background-color: #7afbc9;
}

.banner-link:hover .banner-link-arrow {
    background: url("../img/header-green-arrow-hover.svg") center center/cover no-repeat;
    width: 7px;
    height: 10px;
}

@media (max-width: 1040px) {
    .banner {
        height: 500px;
    }
}

@media (max-width: 769px) {
    .banner {
        padding: 40px 0 0px 0;
        background: url("../img/banner-bg-tablet.png") top center/ contain no-repeat;
        height: 534px;
    }

    .banner-wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }

    .banner-title {
        text-align: center;
    }

    .banner-subtitle {
        text-align: center;
    }

    .banner-content {
        width: 100%;
        max-width: 688px;
    }

    .banner-link {
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 48px;
    }

    .banner-subtitle {
        font-size: 18px;
    }
}

/*reason*/
.reason {
    padding: 90px 0;
}

.reason-wrap {
    display: flex;
    flex-direction: column;
}

.reason-title {
    font-size: 40px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    align-self: center;
    position: relative;
}

.reason-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg,
            rgba(46, 187, 255, 0) 0%,
            #2ebbff 50%,
            rgba(46, 187, 255, 0) 100%);
    width: 100%;
}

.reason-items {
    margin-top: 85px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 212px);
    column-gap: 32px;
    row-gap: 20px;
}

.reason-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.reason-item-wrap {
    border-radius: 24px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* cursor: pointer; */
}

.reason-item {
    padding: 61px 40px;
    display: flex;
    /* flex-direction: column; */
    z-index: 2;
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 24px;
}

.reason-item-wrap {
    opacity: .8;
    transition: all ease .4s;
}

.reason-item-wrap:hover {
    opacity: 1;
}

.reason-item:hover {}

.reason-item-wrap:hover::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background-image: conic-gradient(transparent,
            transparent,
            transparent,
            #2ebbff);
    animation: rotate 4s linear infinite;
}

.reason-item-wrap:hover::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background-image: conic-gradient(transparent,
            transparent,
            transparent,
            #44df78);
    animation: rotate 4s linear infinite;
    animation-delay: -2s;
}

.reason-item-wrap:first-of-type .reason-item {
    background: url("../img/reason-item-1.png") center center/cover no-repeat;
}

.reason-item-wrap:nth-child(2) .reason-item {
    background: url("../img/reason-item-2.png") center center/cover no-repeat;
    justify-content: end;
}

.reason-item-wrap:nth-child(2) .reason-item .reason-item-text {
    text-align: end;
}

.reason-item-wrap:nth-child(3) .reason-item {
    background: url("../img/reason-item-3.png") center center/cover no-repeat;
}

.reason-item-wrap:last-of-type .reason-item {
    background: url("../img/reason-item-4.png") center center/cover no-repeat;
    justify-content: end;
}

.reason-item-wrap:last-of-type .reason-item .reason-item-text {
    text-align: end;
}

.reason-item-text {
    width: 100%;
    max-width: 356px;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 769px) {
    .reason {
        padding: 70px 0;
    }
}

@media (max-width: 960px) {
    .reason-img {
        display: none;
    }
}

@media (max-width: 830px) {
    .reason-items {
        margin-top: 64px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 212px);
        row-gap: 24px;
    }

    .reason-item-text {
        width: 100%;
        max-width: 312px;
        margin: auto;
        text-align: center;
    }

    .reason-item-wrap:nth-child(2) .reason-item .reason-item-text {
        text-align: center;
    }

    .reason-item-wrap:last-of-type .reason-item .reason-item-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .reason-title {
        font-size: 36px;
    }
}

/*solution*/
.solution {
    padding-top: 100px;
}

.solution-title {
    width: 100%;
    max-width: 622px;
    margin: auto;
    text-align: center;
    color: #d0d5e1;
    font-size: 32px;
    line-height: 1.5;
}

.solution-wrap {
    margin-top: 60px;
    border-radius: 24px;
    background: linear-gradient(102.57deg, #1f293d 0.44%, #1f293d 99.56%);
    padding: 60px;
}

.solution-items-title {
    font-size: 24px;
    line-height: 1.5;
    color: #939cb1;
    text-align: center;
}

.solution-items {
    margin: 63px auto 0 auto;
    display: flex;
    width: 100%;
    max-width: 1120px;
    align-items: center;
}

.solution-item:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 423px;
    position: relative;
    /* overflow: hidden; */
}

.solution-item:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 300px;
    padding: 45px;
    margin-left: 70px;
    border-radius: 32px;
    background-color: rgba(46, 187, 255, 0.1);
    overflow: hidden;
}

.solution-item:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(225deg, #88edc6 0%, #89d1ff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.solution-item-text {
    margin-top: 15px;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
}

.solution-item-content {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 1px solid rgba(46, 187, 255, 1);
    background-color: rgba(0, 156, 254, 0.75);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-item-content-text {
    margin-top: 33px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.solution-item svg {
    margin-left: -30px;
}

.solution-item-img-desctop {
    width: 100%;
    max-width: 330px;
}

.solution-item-img-tablet {
    display: none;
}

.solution-item-animation-tablet {
    display: none;
}

@keyframes draw-loop {
    from {
        stroke-dashoffset: -1000;
    }

    to {
        stroke-dashoffset: 990;
    }
}

@media (max-width: 1300px) {
    .solution-items {
        margin-top: 24px;
        flex-direction: column;
    }

    .solution-item-animation {
        display: none;
    }

    .solution-item-animation-tablet {
        display: block;
    }

    .solution-item-img-desctop {
        display: none;
    }

    .solution-item-img-tablet {
        display: block;
    }

    .solution-item:nth-child(2) {
        margin-left: 0;
        margin-top: 24px;
    }

    .solution-item-content {
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .solution-item svg {
        margin-left: 0;
    }
}

@media (max-width: 1040px) {
    .solution {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .solution-title {
        font-size: 28px;
    }

    .solution-wrap {
        margin-top: 40px;
        padding: 56px 17px;
    }
}

/*components*/
.components {
    padding: 200px 0;
    background: url("../img/components-bg.png") center center/cover no-repeat;
}

.components-wrap {
    display: flex;
    flex-direction: column;
}

.components-title {
    font-size: 32px;
    text-align: center;
    color: #d0d5e1;
    line-height: 1.5;
}

.components-items {
    width: 100%;
    max-width: 895px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.components-item {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("../img/components-item-bg.svg") center center/contain no-repeat;
    width: 100%;
    max-width: 223px;
    height: 223px;
    transition: all ease .8s;
    opacity: 0.8;
}

.components-item-desc {
    margin-top: 12px;
    color: #d0d5e1;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    transition: all ease .8s;
}

.components-icon {
    min-width: 40px;
    height: 40px;
    fill: #939cb1;
    transition: all ease .8s;
}

.components-item:hover {
    background: url("../img/components-item-bg-hover.svg") center center/contain no-repeat;
    opacity: 1;
}

.components-item:hover .components-item-desc {
    color: #2ebbff;
}

.components-item:hover .components-icon {
    fill: #2ebbff;
}

@media (max-width: 1040px) {
    .components {
        padding: 140px 0;
    }

    .components-item {
        background: url("../img/components-item-bg-hover.svg") center center / contain no-repeat;
    }
}

@media (max-width: 576px) {
    .components {
        background: url("../img/components-bg-mobile.png") center center/cover no-repeat;
    }
}

/*stack*/
.stack {
    padding-bottom: 100px;
}

.stack-title {
    text-align: center;
    font-size: 32px;
    color: #d0d5e1;
    line-height: 1.5;
}

.stack-wrap {
    border-radius: 24px;
    background: url("../img/stack-bg.png") top center/cover no-repeat;
    padding: 50px 15px 34px 15px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 2;
}

.stack-wrap-border {
    margin-top: 60px;
    border-radius: 24px;
    height: 546px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* cursor: pointer; */
}

.stack-wrap-border::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: conic-gradient(transparent,
            transparent,
            transparent,
            #2ebbff);
    animation: anim 6s linear infinite;
}

.stack-wrap-border::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: conic-gradient(transparent,
            transparent,
            transparent,
            #44df78);
    animation: anim 6s linear infinite;
    animation-delay: -3s;
}

@keyframes anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.stack-items {
    width: 100%;
    max-width: 874px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 45px;
}

.stack-item {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.stack-item-unit {
    width: 223px;
    border: 1px solid #677697;
    background: linear-gradient(179.79deg, #03122e 0.18%, #07193e 103.97%);
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.stack-item:first-of-type .stack-item-unit.element-animation {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1.5s;
}

.stack-item:first-of-type .stack-item-unit:last-of-type.element-animation {
    transition-delay: 1s;
}

.stack-item:first-of-type .stack-item-unit.element-animation.element-show {
    opacity: 1;
    transform: translateX(0);
}

.stack-item:last-of-type .stack-item-unit.element-animation {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1.5s;
}

.stack-item:last-of-type .stack-item-unit:first-of-type.element-animation {
    transition-delay: 1s;
}

.stack-item:last-of-type .stack-item-unit.element-animation.element-show {
    opacity: 1;
    transform: translateX(0);
}

.stack-link {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #43f0a8;
    color: #1f293d;
    font-size: 18px;
    font-family: "PT Astra Fact";
    gap: 20px;
    /* width: 100%;
  max-width: 417px; */
}

.stack-link-wrap-arrow {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-color: rgba(31, 41, 61, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-link-arrow {
    background: url("../img/header-green-arrow.svg") center center/cover no-repeat;
    width: 7px;
    height: 10px;
}

.stack-link:hover {
    background-color: #7afbc9;
}

.stack-link:hover .banner-link-arrow {
    background: url("../img/header-green-arrow-hover.svg") center center/cover no-repeat;
    width: 7px;
    height: 10px;
}

@media (max-width: 1040px) {
    .stack {
        padding-bottom: 70px;
    }
}

@media (max-width: 830px) {
    .stack-items {
        gap: 16px;
        flex-direction: column;
        margin: 0;
    }

    .stack-wrap {
        padding: 56px 28px;
    }

    .stack-item-unit {
        width: 100%;
        max-width: 448px;
    }

    .stack-item:nth-child(2) {
        order: 1;
    }

    .stack-item:first-child {
        order: 2;
    }

    .stack-item:last-child {
        order: 3;
    }

    .stack-item-img {
        width: 156px;
    }

    .stack-wrap-border {
        height: 730px;
    }
}

@media (max-width: 576px) {
    .stack-title {
        font-size: 28px;
    }

    .stack-link {
        font-size: 14px;
    }
}

@media (max-width: 535px) {
    .stack-wrap-border {
        height: 800px;
    }
}

/*choice*/
.choice {
    padding: 100px 0;
}

.choice-wrap {
    display: flex;
    flex-direction: column;
}

.choice-title {
    align-self: center;
    text-align: center;

    font-size: 40px;
    color: #ffffff;
    position: relative;
}

.choice-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg,
            rgba(46, 187, 255, 0) 0%,
            #2ebbff 50%,
            rgba(46, 187, 255, 0) 100%);

    width: 100%;
}

.choice-items {
    width: 100%;
    max-width: 1094px;
    margin: 84px auto 0 auto;
    display: flex;
    align-items: center;
    /* background: linear-gradient(
    269.91deg,
    rgba(76, 90, 121, 0.5) 0.07%,
    rgba(76, 90, 121, 0) 99.91%
  );
  border-radius: 20px;
  height: fit-content; */
}

.choice-item {
    padding: 25px 60px 34px 60px;
    width: 100%;
    height: fit-content;
}

.choice-item:first-of-type {
    background-color: rgba(0, 72, 116, 1);
    border-radius: 20px;
    padding: 14px 15px 34px 29px;
    display: flex;
    flex-direction: column;
}

.choice-item:last-of-type {
    background: linear-gradient(269.91deg,
            rgba(76, 90, 121, 0.5) 79.27%,
            rgba(76, 90, 121, 0) 99.91%);
    border-radius: 0 20px 20px 0;
    padding: 25px 60px 34px 60px;
    display: flex;
    flex-direction: column;
}

.choice-item-title {
    margin-top: 24px;
    font-size: 28px;
    color: #ffffff;
}

.choice-item-logo {
    width: 240px;
}

.choice-item:first-of-type .choice-item-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
}

.choice-item:first-of-type .choice-item-glow {
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(46, 187, 255, 1) 0%,
            rgba(41, 44, 52, 0) 100%);
    z-index: 1;
    filter: blur(30px);
}

.choice-item:last-of-type .choice-item-img-wrap {
    position: relative;
    width: 100%;
    display: flex;
}

.choice-item:last-of-type .choice-item-glow {
    width: 70%;
    height: 100px;
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(3, 18, 46, 1) 0%,
            rgba(41, 44, 52, 0) 100%);
    z-index: 1;
    filter: blur(10px);
    bottom: 0;
}

.choice-item:first-of-type .choice-item-img {
    position: relative;
    z-index: 2;
    padding: 37px 0 24px;
    width: 247px;
}

.choice-item-content {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
}

.choice-item:first-of-type .choice-item-content {
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 35px;
}

.choice-item-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choice-item:first-of-type .choice-item-list {
    justify-content: flex-end;
    align-items: flex-end;
}

.choice-item:last-of-type .choice-item-list {
    margin-top: 46px;
}

.choice-item-list-unit {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.choice-item-list-unit-span {
    color: #009cfe;
}

@media (max-width: 1040px) {
    .choice {
        padding: 70px 0;
    }
}

@media (max-width: 790px) {
    .choice-items {
        flex-direction: column;
    }

    .choice-item:first-of-type .choice-item-content {
        justify-content: center;
        align-items: center;
    }

    .choice-item:last-of-type .choice-item-list {
        text-align: center;
    }

    .choice-item-content {
        align-items: center;
        justify-content: center;
    }

    .choice-item:first-of-type {
        position: relative;
    }

    .choice-item:first-of-type .choice-item-list {
        justify-content: center;
        align-items: center;
    }

    .choice-item:last-of-type .choice-item-img-wrap {
        justify-content: center;
    }

    .choice-item:last-of-type {
        margin-top: -18px;
        padding-top: 40px;
        background: linear-gradient(180deg, #4c5a79 0%, rgba(76, 90, 121, 0) 100%);
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .choice-title {
        font-size: 36px;
    }

    .choice-items {
        margin-top: 64px;
    }

    .choice-item:first-of-type {
        padding: 60px 20px;
    }

    .choice-item:first-of-type .choice-item-content {
        padding-right: 0;
    }

    .choice-item-list-unit {
        text-align: center;
    }

    .choice-item:last-of-type {
        padding: 60px 20px;
    }
}

/*substitution*/
.substitution {
    padding: 100px 0;
}

.substitution-wrap {
    display: flex;
    flex-direction: column;
}

.substitution-title {
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    position: relative;
    align-self: center;
}

.substitution-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg,
            rgba(46, 187, 255, 0) 0%,
            #2ebbff 50%,
            rgba(46, 187, 255, 0) 100%);

    width: 100%;
}

.substitution-bg {
    margin-top: 84px;
}

.substitution-items {
    margin-top: 40px;
    display: flex;
    gap: 32px;
}

.substitution-item {
    width: 100%;
    position: relative;
}

.substitution-item-content {
    width: 100%;
    background-color: rgba(48, 60, 86, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    height: 100%;
}

.substitution-item:first-of-type .substitution-item-bg {
    position: absolute;
    background: linear-gradient(52.41deg,
            #2ebbff 0%,
            rgba(46, 187, 255, 0) 30.11%);
    width: 152px;
    height: 117px;
    border-radius: 0 0 0 20px;
    bottom: -2px;
    left: -2px;
    z-index: 1;
}

.substitution-item:last-of-type .substitution-item-bg {
    position: absolute;
    background: linear-gradient(52.41deg,
            #44df78 0%,
            rgba(68, 223, 120, 0) 30.11%);
    width: 152px;
    height: 117px;
    border-radius: 0 20px 0 20px;
    transform: rotate(180deg);
    top: -2px;
    right: -2px;
    z-index: 1;
}

.substitution-item-title {
    margin-top: 32px;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(208, 213, 225, 1);
}

.substitution-item-desc {
    margin-top: 12px;
    color: rgba(208, 213, 225, 1);
    font-size: 14px;
    line-height: 1.5;
}

.substitution-bottom {
    margin-top: 80px;
    padding: 40px 60px;
    align-self: center;
    background-color: rgba(0, 72, 116, 1);
    border-radius: 20px;
    display: flex;
    gap: 32px;
}

.substitution-bottom-icon {
    min-width: 72px;
    max-width: 72px;
}

.substitution-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.substitution-bottom-link {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 156, 254, 1);
    display: flex;
    gap: 4px;
    align-items: center;
}

.substitution-bottom-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #d0d5e1;
}

.substitution-bg-mobile {
    display: none;
}

@media (max-width: 1040px) {
    .substitution {
        padding: 70px 0;
    }
}

@media (max-width: 950px) {
    .substitution-items {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .substitution-item {
        max-width: 528px;
    }

    .substitution-item-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .substitution-item-title {
        text-align: center;
    }

    .substitution-item-desc {
        text-align: center;
    }

    .substitution-bottom {
        margin-top: 40px;
        padding: 40px 28px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 528px;
    }

    .substitution-bottom-link {
        justify-content: center;
    }

    .substitution-bottom-desc {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .substitution-title {
        font-size: 36px;
    }

    .substitution-bg-mobile {
        margin-top: 64px;
    }

    .substitution-bg-mobile {
        display: block;
    }

    .substitution-bg {
        display: none;
    }
}

@media (max-width: 377px) {
    .substitution-title {
        word-break: break-all;
    }
}

/*advantages*/
.advantages {
    padding-top: 100px;
}

.advantages-wrap {
    display: flex;
    flex-direction: column;
}

.advantages-title {
    text-align: center;
    font-size: 32px;
    color: #d0d5e1;
}

.advantages-items {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
}

.advantages-item {
    display: flex;
    gap: 20px;
    padding: 32px 40px;
    border: 1px solid #009cfe;
    border-radius: 20px;
    background-color: rgba(0, 156, 254, 0.2);
}

.advantages-item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantages-item-title {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
}

.advanteages-item-desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

.advantages-item-icon {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
}

@media (max-width: 1040px) {
    .advantages {
        padding-top: 70px;
    }

    .advantages-items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 770px) {
    .advantages-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .advantages-item-title {
        text-align: center;
    }

    .advanteages-item-desc {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .advantages-items {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .advantages-title {
        font-size: 28px;
    }

    .advantages-items {
        margin-top: 40px;
    }
}

/*functionality*/
.functionality {
    padding: 200px 0;
    background: url("../img/functionality-bg.png") center center/cover no-repeat;
}

.functionality-wrap {
    display: flex;
    flex-direction: column;
}

.functionality-title {
    text-align: center;
    color: #d0d5e1;
    font-size: 32px;
}

.functionality-items {
    margin-top: 60px;
    display: flex;
    gap: 32px;
}

.functionality-item {
    border: 1px solid #677697;
    background-color: rgba(3, 18, 46, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.functionality-item-icon {
    width: 54px;
    height: 54px;
}

.functionality-item-title {
    margin-top: 32px;
    font-size: 20px;
    color: #d0d5e1;
}

.functionality-item-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.functionality-item-list-unit {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    display: flex;
    gap: 6px;
}

.functionality-item-list-unit::before {
    margin-top: 4px;
    content: "";
    background: url("../img/blue-arrow-list.svg") center center/cover no-repeat;
    min-width: 16px;
    height: 16px;
}

@media (max-width: 1040px) {
    .functionality {
        padding: 140px 0;
    }
}

@media (max-width: 950px) {
    .functionality-items {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .functionality-item {
        width: 100%;
        max-width: 508px;
    }
}

@media (max-width: 576px) {
    .functionality {
        background: url("../img/functionality-bg-mobile.png") center center/cover no-repeat;
    }
}

/*benefits*/
.benefits {
    padding-bottom: 100px;
}

.benefits-title {
    text-align: center;
    color: #d0d5e1;
    font-size: 32px;
}

.benefits-wrap {
    border-radius: 24px;
    background-color: #1f293d;
    padding: 60px 35px 72px 35px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.benefits-items {
    width: 100%;
    max-width: 988px;
    margin: auto;
    display: flex;
    gap: 48px;
}

.benefits-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefits-item-unit {
    display: flex;
    gap: 79px;
    position: relative;
    height: 120px;
}

.benefits-item-unit-desc {
    padding: 24px;
    background: rgba(76, 90, 121, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(103, 118, 151, 1);
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 287px;
}

.benefits-item-unit-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefits-item-unit-result {
    padding: 24px;
    background-color: rgba(0, 156, 254, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 208, 1);
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    max-width: 287px;
    align-self: center;
    align-items: center;
}

.benefits-item-unit-result-span {
    font-family: "PT Astra Fact";
}

.benefits-item:last-child {
    /* width: 100%;
    max-width: 287px;
    gap: 20px;
    background: linear-gradient(15deg, #03BEC8 0%, #0080D0 50%, #0064A2 100%);
    background-size: 400% 400%;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    padding: 38px;
    margin: 11px 0;
    animation: gradient 8s ease infinite; */
}

.benefits-item-icon {
    width: 54px;
    height: 54px;
}

.benefits-item-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
}

.benefits-link {
    margin-top: 80px;
    padding: 16px 20px;
    border-radius: 12px;
    background-color: #009cfe;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: "PT Astra Fact";
    align-self: center;
}

.benefits-item-unit-arrow-tablet {
    display: none;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 1040px) {
    .benefits {
        padding-bottom: 70px;
    }
}

@media (max-width: 950px) {
    .benefits-items {
        flex-direction: column;
    }

    .benefits-item-unit-arrow {
        display: none;
    }

    .benefits-item-unit-arrow-tablet {
        display: block;
    }

    .benefits-item-unit {
        flex-direction: column;
        height: auto;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .benefits-item {
        gap: 72px;
    }

    .benefits-item:last-child {
        align-self: center;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .benefits-title {
        font-size: 28px;
    }

    .benefits-wrap {
        padding: 44px 20px;
        margin-top: 40px;
    }
}

/*licensing*/
.licensing {
    padding: 100px 0;
}

.licensing-wrap {
    width: 100%;
    max-width: 1096px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.licensing-img {
    width: 76px;
    height: auto;
}

.licensing-title {
    margin-top: 60px;
    font-size: 40px;
    color: #ffffff;
    position: relative;
    width: fit-content;
}

.licensing-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgba(46, 187, 255, 0) 0%, #2ebbff 100%);
    width: 100%;
}

.licensing-desc {
    margin-top: 84px;
    display: flex;
    gap: 80px;
}

.licensing-texts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.licensing-text {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
}

.licensing-text-span {
    color: #2ebbff;
}

@media (max-width: 1040px) {
    .licensing {
        padding: 70px 0;
    }
}

@media (max-width: 840px) {
    .licensing-wrap {
        justify-content: center;
        align-items: center;
    }

    .licensing-desc {
        flex-direction: column;
    }

    .licensing-texts {
        text-align: center;
    }

    .licensing-title::after {
        background: linear-gradient(90deg,
                rgba(46, 187, 255, 0) 0%,
                #2ebbff 50%,
                rgba(46, 187, 255, 0) 100%);
    }
}

@media (max-width: 576px) {
    .licensing-title {
        font-size: 36px;
    }

    .licensing-desc {
        margin-top: 64px;
    }
}

/*news*/
.news {
    padding: 100px 0;
}

.news-wrap {
    display: flex;
    flex-direction: column;
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-title {
    font-size: 40px;
    color: #ffffff;
    position: relative;
}

.news-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgba(46, 187, 255, 0) 0%, #2ebbff 100%);
    width: 100%;
}

.news-link {
    border: 1px solid rgba(0, 156, 254, 1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-family: "PT Astra Fact";
}

.news-items {
    margin-top: 84px;
    display: flex;
    gap: 32px;
}

.news-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 418px;
}

.news-item-wrap {
    margin-top: -50px;
    display: flex;
    flex-direction: column;
}

.news-item-date {
    background: url("../img/news-vector.svg") left top/contain no-repeat;
}

.news-item-date-text {
    font-size: 12px;
    color: #d0d5e1;
    padding-left: 32px;
    padding-top: 20px;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    padding: 24px 32px 40px 32px;
    background-color: rgba(25, 36, 60, 1);
    border-radius: 0 20px 20px 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-title {
    /* margin-top: 24px; */
    color: #d0d5e1;
    font-size: 20px;
    line-height: 1.5;
}

.news-item-desc {
    margin-top: 12px;
    font-size: 14px;
    color: #d0d5e1;
    line-height: 1.5;
    /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.news-link-tablet {
    display: none;
}

@media (max-width: 1040px) {
    .news {
        padding: 70px 0;
    }

    .news-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 910px) {
    .news-items {
        align-items: center;
        justify-content: center;
    }

    .news-link {
        display: none;
    }

    .news-link-tablet {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 60px auto 0 auto;
        width: 100%;
        max-width: 608px;
    }

    .news-title {
        text-align: center;
    }

    .news-top {
        justify-content: center;
    }

    .news-title::after {
        background: linear-gradient(90deg,
                rgba(46, 187, 255, 0) 0%,
                #2ebbff 50%,
                rgba(46, 187, 255, 0) 100%);
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 36px;
    }
}

/*connect*/
.connect {
    padding: 100px 0;
}

.connect-title {
    font-size: 40px;
    color: #ffffff;
    position: relative;
    width: fit-content;
}

.connect-title::after {
    bottom: -24px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgba(46, 187, 255, 0) 0%, #2ebbff 100%);
    width: 100%;
}

.connect-wrap {
    margin-top: 84px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(73.05deg,
            #005647 -2.02%,
            #002a43 21.43%,
            #002a43 67.84%,
            #006eb3 99.6%);
    border-radius: 20px;
    padding: 60px 40px;
}

.connect-content {
    width: 100%;
    max-width: 1110px;
    margin: auto;
    position: relative;
    display: block;
}

.connect-content.remove {
    display: none;
}

.connect-content-title {
    font-size: 32px;
    color: rgba(208, 213, 225, 1);
    line-height: 1.5;
}

.connect-form-error {
    display: none;
}

.connect-form-error.active {
    display: block;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #ffffff;
    background-color: #ea3e32;
    padding: 12px 16px;
    border-radius: 8px;
}

.connect-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.connect-form p.connect-form-p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    box-sizing: border-box;
    font-family: "PT Astra Fact regular";
}

.connect-form-top {
    display: flex;
    gap: 40px;
}

.connect-form-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.connect-form-input {
    width: 100%;
    border-radius: 12px;
    background: rgba(3, 18, 46, 0.2);
    height: 60px;
    padding-left: 20px;
    outline: none;
    border: none;
    font-size: 16px;
    color: #fff;
}

.connect-form-custom-input {
    border: 1px solid #4c5a79;
    height: 60px;
    position: relative;
    width: 100%;
    background: rgba(3, 18, 46, 0.2);
    border-radius: 12px;
}

.connect-form-custom-input.error {
    border: 1px solid #ea3e32;
}

.connect-form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: #b3b9ca;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
}

.connect-form-custom-textarea .connect-form-label {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    left: 20px;
    color: #b3b9ca;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
}

.connect-form-custom-textarea {
    border: 1px solid #4c5a79;
    height: 144px;
    position: relative;
    width: 100%;
    background: rgba(3, 18, 46, 0.2);
    border-radius: 12px;
}

.connect-form-textarea {
    width: 100%;
    border-radius: 12px;
    background: rgba(3, 18, 46, 0.2);
    height: 144px;
    padding: 15px 20px;
    outline: none;
    border: none;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    resize: none;
}

.connect-form-group {
    position: relative;
}

.connect-form-checkbox-label {
    font-size: 12px;
    color: #d0d5e1;
    line-height: 20px;
}

.connect-form-policy {
    color: #d0d5e1;
    text-decoration: underline;
}

/* *********************************
Чекбоксы
********************************* */

.connect-form-real-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.connect-form-custom-checkbox {
    position: relative;
    display: inline-block;
    min-width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #b3b9ca;
    border-radius: 4px;
    vertical-align: sub;
    margin-right: 15px;
    cursor: pointer;
}

.connect-form-custom-checkbox.error {
    border: 1px solid #ea3e32;
}

.connect-form-custom-checkbox::before {
    content: "";

    /* Рисуем галочку */
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url("../img/checked.svg");
    background-size: contain;
    background-repeat: no-repeat;

    /* Выравниваем по центру */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    margin-top: 1px;

    transition: 0.2s ease-in;
}

/* .connect-form-real-checkbox:checked + .connect-form-custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
} */

.connect-form-custom-checkbox.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.connect-form-bottom {
    display: flex;
    gap: 40px;
}

.connect-form-btn {
    cursor: pointer;
    width: 100%;
    height: 64px;
    border: none;
    background-color: #009cfe;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #fff;
    padding: 16px 20px;
}

.connect-form-links {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.connect-form-tel {
    color: #ffffff;
    font-size: 24px;
}

.connect-form-mail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #009cfe;
}

.connect-success {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
}

.connect-success.active {
    display: flex;
}

.connect-success-left {
    width: 100%;
    display: flex;
    gap: 32px;
}

.connect-success-right {
    width: 100%;
}

.connect-success-title {
    margin-top: 24px;
    color: #d0d5e1;
    font-size: 32px;
}

.connect-success-decs {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.5;
    color: #d0d5e1;
}

.connect-success-btn {
    margin-top: 48px;
    width: 100%;
    border: 1px solid #009cfe;
    border-radius: 16px;
    padding: 14px 24px;
    color: #ffffff;
    font-size: 18px;
    font-family: "PT Astra Fact";
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 1040px) {
    .connect {
        padding: 70px 0;
    }
}

@media (max-width: 1010px) {
    .connect-form-top {
        flex-direction: column;
        gap: 24px;
    }

    .connect-form-bottom {
        flex-direction: column;
        gap: 40px;
    }

    .connect-form-btn {
        order: 1;
        justify-content: center;
        gap: 20px;
    }

    .connect-form-links {
        order: 2;
        justify-content: center;
    }

    .connect-title {
        text-align: center;
        margin: auto;
    }

    .connect-title::after {
        background: linear-gradient(90deg,
                rgba(46, 187, 255, 0) 0%,
                #2ebbff 50%,
                rgba(46, 187, 255, 0) 100%);
    }
}

@media (max-width: 576px) {
    .connect-title {
        font-size: 36px;
    }

    .connect-wrap {
        margin-top: 64px;
        padding: 60px 20px;
    }

    .connect-form-links {
        flex-direction: column;
        gap: 15px;
    }
}

/*modal with policy*/

.popup {
    overflow: scroll;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    overflow-x: hidden;
    z-index: 25;
}

.popup-wrap {
    z-index: 35;
    background: #ffffff;
    width: 80%;
    max-width: 1060px;
    margin: 7% auto;
    padding: 48px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-title {
    font-size: 20px;
    color: #1a242c;
    line-height: 1.5;
    font-family: "PT Astra Fact";
    font-weight: bold;
}

.popup-desc {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.5;
    color: #1a242c;
}

.popup-desc-important {
    margin-top: 24px;
    color: #54616d;
    font-size: 10px;
    display: flex;
    gap: 3px;
}

.popup-close {
    text-align: center;
    margin-top: 40px;
    background-color: #009cfe;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    padding: 16px 24px;
    border-radius: 12px;
}

.popup-group {
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.popup-checkbox-label {
    font-size: 12px;
    color: #03122e;
    line-height: 20px;
    display: flex;
}

.popup-group:last-of-type .popup-checkbox-label,
.popup-group:nth-child(4) .popup-checkbox-label,
.popup-group:nth-child(5) .popup-checkbox-label {
    font-weight: bold;
}

.popup-link {
    color: #03122e;
    font-size: 12px;
    text-decoration: underline;
}

.popup-required {
    color: #ff2727;
    font-size: 12px;
    min-width: 7px;
    max-width: 7px;
    display: block;
}

/* *********************************
Чекбоксы
********************************* */

.popup-real-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.popup-custom-checkbox {
    position: relative;
    display: inline-block;
    min-width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #d0d5e1;
    border-radius: 4px;
    vertical-align: sub;
    margin-right: 15px;
    margin-left: 10px;
    cursor: pointer;
}

.popup-custom-checkbox::before {
    content: "";

    /* Рисуем галочку */
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url("../img/checked.svg");
    background-size: contain;
    background-repeat: no-repeat;

    /* Выравниваем по центру */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    margin-top: 1px;

    transition: 0.2s ease-in;
}

/* .popup-real-checkbox:checked + .popup-custom-checkbox {
  background: rgb(2, 128, 253, 0.5);
} */

.popup-real-checkbox:checked+.popup-custom-checkbox::before {
    transform: translate(-50%, -50%) scale(1);
}

/*footer*/
.footer {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    padding: 80px 0 60px 0;
    background: url("../img/footer-bg.png") center center/cover no-repeat;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #4c5a79;
}

.footer-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* max-width: 210px; */
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-section:first-child {
    max-width: 240px;
}

.footer-logo-desc {
    margin-top: 16px;
    color: #b3b9ca;
    font-size: 12px;
    line-height: 1.5;
}

.footer-btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: #43f0a8;
    color: #1f293d;
    font-size: 12px;
    font-family: "PT Astra Fact";
    gap: 20px;
}

.footer-btn-wrap-arrow {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    background-color: rgba(31, 41, 61, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn-arrow {
    background: url("../img/header-green-arrow.svg") center center/cover no-repeat;
    width: 5px;
    height: 7px;
}

.footer-btn:hover {
    background-color: #7afbc9;
}

.footer-btn:hover .footer-btn-arrow {
    background: url("../img/header-green-arrow-hover.svg") center center/cover no-repeat;
    width: 5px;
    height: 7px;
}

.footer-section-title {
    font-size: 12px;
    color: #939cb1;
}

.footer-section-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section-item-link {
    font-size: 14px;
    color: #d0d5e1;
    line-height: 1.5;
}

.footer-top-content .footer-section .footer-section-list {
    margin-top: 0;
}

.footer-links {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-wrap {
    width: 36px;
    height: 36px;
    background-color: #2ebbff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foote-link-tel {
    font-size: 16px;
    color: #ffffff;
}

.footer-link-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2ebbff;
    font-size: 14px;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 64px;
}

.footer-bottom-link {
    font-size: 12px;
    line-height: 1.5;
    color: #677697;
}

.animated-gradient {
    width: 100%;
    background-size: 400% 400%;
    border-radius: 24px;
    background: linear-gradient(205deg, #0064A2, #0080D0, #03BEC8, #0080D0, #0064A2, #03BEC8, #0064A2);
    background-size: 400% 600%;
    animation: gradientShift 15s ease infinite;
    max-width: 287px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 38px;
    margin: 11px 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.single-page h1 {
    font-size: 26px;
    color: #ffffff;
    line-height: 1.5;
    padding: 15px 0 10px;
    font-family: "PT Astra Fact regular", sans-serif;
}

.single-page h2 {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.5;
    padding: 15px 0 10px;
    font-family: "PT Astra Fact regular", sans-serif;
}

.single-page h3 {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.5;
    padding: 15px 0 10px;
    font-family: "PT Astra Fact regular", sans-serif;
}

.single-page p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    padding: 7px 0;
    /* box-sizing: border-box; */
    font-family: "PT Astra Fact regular", sans-serif;
}

.single-page a {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    padding: 7px 0;
    font-family: "PT Astra Fact regular", sans-serif;
    text-decoration: underline;
}

.single-page ul {
    margin-left: 40px;
}
.single-page li {
    list-style: square;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    padding: 7px 0;
    /* box-sizing: border-box; */
    font-family: "PT Astra Fact regular", sans-serif;
}

@media (max-width: 1100px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-top .footer-section:first-child {
        padding-bottom: 36px;
        border-bottom: 1px solid #4c5a79;
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-top-content .footer-section:first-child {
        padding-bottom: 0;
        border-bottom: none;
        flex-direction: column;
    }

    .footer-top-content .footer-section {
        max-width: fit-content;
    }

    .footer-btn {
        width: 100%;
        max-width: 210px;
    }

    .footer-bottom {
        gap: 15px;
    }
}

@media (max-width: 730px) {
    .footer-top-content {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        justify-content: center;
    }

    .footer-section-title {
        text-align: center;
    }

    .footer-section-list {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        align-items: center;
    }

    .footer-top .footer-section:first-child {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-logo-desc {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}