* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --dark-blue: #051923;
}
body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    background-color: var(--dark-blue);
    color: #ffffff;
}
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}
#header .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}
#header .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 32px;
}
#header .menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 400ms ease;
}
#header .menu a:hover {
    color: #00A6FB;
}
#header #burger,
#header nav .btn-close {
    display: none;
}
.btn-solid {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    cursor: pointer;
    background-color: #00A6FB;
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: none;
    text-align: center;
    transition: background-color 400ms ease;
}
.btn-solid:hover {
    background-color: #0092E7;
}
.btn-outline {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    border-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: 1px solid #00A6FB;
    background-color: rgba(0, 166, 251, 0);
    transition: background-color 400ms ease;
    text-align: center;
}
.btn-outline:hover {
    background-color: #0092E7;
}
#hero .hero-inner {
    position: relative;
    height: 100dvh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .hero-inner video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-position: center center;
    object-fit: cover;
}
#hero .hero-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
#hero .content {
    max-width: 940px;
    position: relative;
    z-index: 9;
}
#hero .content .title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
#hero .content .description {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    margin: 24px 0;
}
#hero .content .buttons {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}
#advantage {
    position: relative;
    z-index: 2;
}
#advantage .advantage-inner {
    padding: 112px 64px;
    position: relative;
}
#advantage .subtitle-container {
    text-align: center;
    margin-bottom: 12px;
}
#advantage .subtitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    color: transparent;
    background-clip: text;
    display: inline;
}
#advantage .title {
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
#advantage .advantage-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 64px;
    margin-top: 80px;
}
#advantage .block {
    position: relative;
    padding: 64px 32px 32px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(5, 25, 35, 1) 54.42%, #171717 174.24%);
    border: 1px solid transparent;
    background-clip: padding-box;
}
#advantage .block .icon {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #3ED5DD;
    z-index: 2;
    background: var(--dark-blue);
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#advantage .block .icon img {
    width: 42px;
    transition: all 400ms ease;
    will-change: transform;
    filter: brightness(1);
}
#advantage .block .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: opacity 400ms ease;
    background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);
    z-index: -1;
}
#advantage .block .icon:hover::before {
    opacity: 1;
}
#advantage .block .icon:hover img {
    transform: scale(1.05);
    filter: brightness(20);
}
#advantage .block:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
#advantage .block .title {
    font-size: 28px;
}
#advantage .block .description {
    line-height: 1.5;
    text-align: center;
    margin-top: 16px;
}
#advantage .left-decoration {
    height: 600px;
    width: 250px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    z-index: -1;
    background-position: right center;
    pointer-events: none;
}
#advantage .right-decoration {
    height: 600px;
    width: 250px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-50%);
    z-index: -1;
    background-position: left center;
    pointer-events: none;
}
#our-approach {
    position: relative;
    z-index: 3;
}
#our-approach .approach-inner {
    padding: 112px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    align-items: center;
}
#our-approach .subtitle-container {
    margin-bottom: 12px;
}
#our-approach .subtitle {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    color: transparent;
    background-clip: text;
    display: inline;
}
#our-approach .title {
    font-weight: 700;
    font-size: 48px;
}
#our-approach .image-block {
    height: 640px;
    width: 100%;
    position: relative;
}
#our-approach .image-block:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
#our-approach .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}
#our-approach .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 32px;
    margin-top: 48px;
}
#our-approach .content.last-full-width .text-block:last-child {
    grid-column: span 2;
}
#our-approach .content .hash {
    display: inline-block;
    margin-right: 5px;
    font-size: 24px;
    color: #00A6FB;
}
#our-approach .content .title {
    font-size: 20px;
    font-weight: 600;
}
#our-approach .content .description {
    line-height: 1.5;
    margin-top: 12px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    column-gap: 16px;
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
}
.slick-dots button {
    display: none;
}
.slick-dots li {
    display: flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.slick-dots li.slick-active {
    cursor: default;
    background-color: #3ED5DD;
}
.slick-slide {
    margin: 0 16px;
    height: inherit !important;
}
.slick-list {
    margin: 0 -16px;
}
.slick-track {
    display: flex !important;
}
#implementation .implementation-inner {
    padding: 112px 64px;
    position: relative;
}
#implementation .right-decor {
    position: absolute;
    right: 0;
    top: 0;
    height: 860px;
    width: 400px;
    background-position: left center;
    background-repeat: no-repeat;
    transform: translatey(-450px);
    pointer-events: none;
}
#implementation .content {
    max-width: 720px;
    margin: 0 auto;
}
#implementation .subtitle-container {
    margin-bottom: 12px;
    text-align: center;
}
#implementation .subtitle {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    color: transparent;
    background-clip: text;
    display: inline;
}
#implementation .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
}
#implementation .description {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 24px;
    text-align: center;
}
#implementation .implementation-slider {
    margin-top: 80px;
    overflow: hidden;
}
#implementation .implementation-slider .slide {
    padding: 1px;
}
#implementation .implementation-slider .slide-inner {
    position: relative;
    padding: 32px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(5, 25, 35, 1) 54.42%, #171717 174.24%);
    border: 1px solid transparent;
    background-clip: padding-box;
    height: 100%;
}
#implementation .implementation-slider .slide-inner:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    z-index: -1;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
#implementation .implementation-slider .title {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}
#implementation .implementation-slider .description {
    line-height: 1.5;
    font-size: 16px;
    margin-top: 12px;
    text-align: left;
}

#secure .secure-inner {
    padding: 112px 64px;
    position: relative;
}
#secure .content {
    max-width: 840px;
    margin: 0 auto;
}
#secure .subtitle-container {
    margin-bottom: 12px;
    text-align: center;
}
#secure .subtitle {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    color: transparent;
    background-clip: text;
    display: inline;
}
#secure .title {
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
#secure .description {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-top: 24px;
}
#secure .button {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
#secure .left-decor {
    position: absolute;
    left: 0;
    top: 0;
    height: 725px;
    width: 250px;
    transform: translateY(-30%);
    background-repeat: no-repeat;
    background-position: right center;
    pointer-events: none;
}
#contact-us .contact-inner {
    padding: 112px 64px;
    position: relative;
}
#contact-us .right-decor {
    position: absolute;
    right: 0;
    top: 50%;
    width: 194px;
    height: 726px;
    background-repeat: no-repeat;
    pointer-events: none;
}
#contact-us .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    align-items: center;
}
#contact-us .image {
    height: 640px;
    width: 100%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    position: relative;
}
#contact-us .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}
#contact-us .image:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
#contact-us .subtitle-container {
    margin-bottom: 12px;
}
#contact-us .subtitle {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    color: transparent;
    background-clip: text;
    display: inline;
}
#contact-us .title {
    font-weight: 700;
    font-size: 48px;
}
#contact-us .success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease;
}
#contact-us .success-message.show-message {
    opacity: 1;
    pointer-events: auto;
}
#contact-us .success-message:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    z-index: -1;
    background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
#contact-us .message-inner {
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    min-width: 1180px;
    background-color: var(--dark-blue);
}
#contact-us .description {
    margin-top: 24px;
    text-align: center;
}
#contact-us .success-message .btn-close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
#contact-us .success-message .btn-close:before,
#contact-us .success-message .btn-close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 28px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
}
#contact-us .success-message .btn-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.wpcf7-form {
    margin-top: 48px;
}
.wpcf7-form label {
    font-size: 14px;
}
.wpcf7-form label .wpcf7-not-valid-tip,
.wpcf7-form label .required {
    color: #E01F1F;
}
.wpcf7-form .wpcf7-text {
    height: 56px;
    padding-left: 16px;
    background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(5, 25, 35, 1) 54.42%, #171717 174.24%);
    border: 1px solid #DADADA;
    outline: none;
    color: #DADADA;
    border-radius: 2px;
    font-size: 16px;
    margin-top: 8px;
    box-sizing: border-box;
    width: 100%;
}
.wpcf7-form .wpcf7-text.wpcf7-not-valid {
    border: 2px solid #E01F1F;
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM11 15H9V13H11V15ZM11 11H9V5H11V11Z' fill='%23E01F1F'/%3E%3C/svg%3E");
}
.wpcf7-form .wpcf7-text.wpcf7-not-valid:focus,
.wpcf7-form .wpcf7-text.wpcf7-not-valid:hover {
    border: 2px solid #E01F1F;
}
.wpcf7-form .wpcf7-textarea {
    height: 92px;
    padding: 10px 16px;
    background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(5, 25, 35, 1) 54.42%, #171717 174.24%);
    border: 1px solid #DADADA;
    outline: none;
    color: #DADADA;
    width: 100%;
    border-radius: 2px;
    font-size: 16px;
    margin-top: 8px;
    resize: none;
    box-sizing: border-box;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-text:hover,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-textarea:hover {
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-radius: 2px;
    border-image-source: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
}
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder {
    color: #A7A7A7;
    transition: opacity 400ms ease;
}
.wpcf7-form .wpcf7-text:focus::placeholder,
.wpcf7-form .wpcf7-textarea:focus::placeholder {
    opacity: 0;
}
.wpcf7-form .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-bottom: 24px;
}
.wpcf7-form .wpcf7-acceptance {
    margin-top: 24px;
    display: inline-block;
}
.wpcf7-form .wpcf7-acceptance a {
    color: #00A6FB;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox] {
    position: relative;
    width: 24px;
    height: 24px;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #DADADA;
    border-radius: 1px;
    cursor: pointer;
    background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(5, 25, 35, 1) 54.42%, #171717 174.24%);
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox]:checked:before {
    border-color: #00A6FB;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox]:checked:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    display: block;
    width: 13px;
    height: 6px;
    border-left: 1px solid #00A6FB;
    border-bottom: 1px solid #00A6FB;
    cursor: pointer;
    transform-origin: center center;
    transform: rotate(-45deg);
}
.wpcf7-form .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.wpcf7-form .wpcf7-submit {
    padding: 0 45px;
    margin-top: 32px;
}
.wpcf7-form .wpcf7-submit[disabled] {
    opacity: .6;
}
.wpcf7-form .wpcf7-submit[disabled]:hover {
    background-color: #00A6FB;
}
.wpcf7-form .wpcf7-response-output,
.wpcf7-form .wpcf7-spinner {
    display: none !important;
}
#footer .footer-inner {
    margin: 80px 64px;
}
#footer .footer-bottom {
    margin-top: 80px;
    border-top: 1px solid #ffffff;
}
#footer .footer-top {
    display: flex;
    justify-content: space-between;
}
#footer .logo img {
    height: 55px;
    object-fit: contain;
}
#footer .contact-info {
    display: flex;
    column-gap: 100px;
}
#footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
}
#footer .copyright {
    font-size: 14px;
}
#footer .footer-bottom .menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    column-gap: 24px;
}
#footer .footer-bottom .menu a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: underline;
    transition: color 400ms ease;
}
#footer .footer-bottom .menu a:hover {
    color: #00A6FB;
}
#footer .widget:last-child {
    min-width: 300px;
}
#footer .widget h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
}
#footer .widget .menu {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#footer .widget .menu a {
    text-decoration: none;
    color: #ffffff;
    transition: color 400ms ease;
}
#footer .widget .menu a:hover {
    color: #00A6FB;
}
#footer .contact-block li {
    padding-left: 24px;
    position: relative;
    white-space: nowrap;
}
#footer .contact-block li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    top: 50%;
    transform: translateY(-50%);
}
#footer .contact-block .email:before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3335 0.666626H1.66683C0.933496 0.666626 0.340163 1.26663 0.340163 1.99996L0.333496 9.99996C0.333496 10.7333 0.933496 11.3333 1.66683 11.3333H12.3335C13.0668 11.3333 13.6668 10.7333 13.6668 9.99996V1.99996C13.6668 1.26663 13.0668 0.666626 12.3335 0.666626ZM12.0668 3.49996L7.3535 6.44663C7.14016 6.57996 6.86016 6.57996 6.64683 6.44663L1.9335 3.49996C1.76683 3.39329 1.66683 3.21329 1.66683 3.01996C1.66683 2.57329 2.1535 2.30663 2.5335 2.53996L7.00016 5.33329L11.4668 2.53996C11.8468 2.30663 12.3335 2.57329 12.3335 3.01996C12.3335 3.21329 12.2335 3.39329 12.0668 3.49996Z' fill='white'/%3E%3C/svg%3E");
    background-size: 14px;
}
#footer .contact-block .address:before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.00016 0.333374C2.42016 0.333374 0.333496 2.42004 0.333496 5.00004C0.333496 7.78004 3.28016 11.6134 4.4935 13.0734C4.76016 13.3934 5.24683 13.3934 5.5135 13.0734C6.72016 11.6134 9.66683 7.78004 9.66683 5.00004C9.66683 2.42004 7.58016 0.333374 5.00016 0.333374ZM5.00016 6.66671C4.08016 6.66671 3.3335 5.92004 3.3335 5.00004C3.3335 4.08004 4.08016 3.33337 5.00016 3.33337C5.92016 3.33337 6.66683 4.08004 6.66683 5.00004C6.66683 5.92004 5.92016 6.66671 5.00016 6.66671Z' fill='white'/%3E%3C/svg%3E");
    background-size: 10px;
}
#footer .contact-block .phone:before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.82 8.17314L9.12669 7.9798C8.72003 7.93314 8.32003 8.07314 8.03336 8.3598L6.80669 9.58647C4.92003 8.62647 3.37336 7.08647 2.41336 5.19314L3.64669 3.9598C3.93336 3.67314 4.07336 3.27314 4.02669 2.86647L3.83336 1.18647C3.75336 0.513137 3.18669 0.00646973 2.50669 0.00646973H1.35336C0.600027 0.00646973 -0.0266396 0.633136 0.0200271 1.38647C0.37336 7.0798 4.92669 11.6265 10.6134 11.9798C11.3667 12.0265 11.9934 11.3998 11.9934 10.6465V9.49314C12 8.8198 11.4934 8.25314 10.82 8.17314Z' fill='white'/%3E%3C/svg%3E");
    background-size: 12px;
}
#page-404 {
    position: relative;
    height: calc(100dvh - 450px);
}
@media screen and (max-width: 1080px) {
    #header nav {
        position: fixed;
        z-index: 999;
        right: 0;
        top: 0;
        bottom: 0;
        width: 350px;
        background-color: var(--dark-blue);
        padding: 30px 20px 20px 30px;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 400ms ease;
        will-change: transform;
    }
    #header nav.opened-menu {
        transform: translateX(0);
    }
    #header nav:before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         z-index: -3;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
         background: linear-gradient(290.88deg, #192EBB -44.33%, #4596D5 8.31%, #7FFFFF 138.53%);
    }
    #header nav:after {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        right: 2px;
        bottom: 2px;
        z-index: -2;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        background-color: var(--dark-blue);
    }
    #header .menu {
        flex-direction: column;
        row-gap: 24px;
        padding-top: 50px;
    }
    #header nav .btn-close {
        position: absolute;
        display: block;
        right: 20px;
        top: 30px;
        width: 32px;
        height: 32px;
        cursor: pointer;
    }
    #header nav .btn-close:before,
    #header nav .btn-close:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 28px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.7);
    }
    #header nav .btn-close:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    #header #burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 5px;
        cursor: pointer;
        width: 32px;
        height: 32px;
    }
    #header #burger span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
    }
    #header {
        justify-content: flex-start;
        column-gap: 32px;
        padding: 0 20px;
    }
    #header .btn-solid {
        margin-left: auto;
    }
    #hero .content .title {
        font-size: 48px;
    }
    #advantage .advantage-blocks {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 60px;
        margin-top: 60px;
    }
    #secure .title,
    #contact-us .title,
    #implementation .title,
    #our-approach .title,
    #advantage .title {
        font-size: 40px;
    }
    #advantage .block .title {
        font-size: 24px;
    }
    #our-approach .approach-inner {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
    #our-approach .title,
    #our-approach .subtitle-container {
        text-align: center;
    }
    #our-approach .content .title {
        text-align: left;
    }
    #contact-us .contact-inner,
    #advantage .advantage-inner,
    #our-approach .approach-inner,
    #secure .secure-inner,
    #implementation .implementation-inner {
        padding: 100px 20px;
    }
    #implementation .implementation-slider {
        margin-top: 60px;
    }
    #implementation .content {
        max-width: none;
        margin: 0 50px;
    }
    #secure .content {
        max-width: none;
    }
    #contact-us .image {
        display: none;
    }
    #contact-us .contact-container {
        grid-template-columns: 1fr;
    }
    #contact-us .subtitle-container,
    #contact-us .title {
        text-align: center;
    }
    #footer .footer-inner {
        margin: 60px 20px;
    }
    #footer .widget:last-child {
        min-width: auto;
    }
    #contact-us .success-message {
        width: calc(100% - 40px);
    }
    #contact-us .message-inner {
        min-width: auto;
        width: 100%;
    }
    #advantage .right-decoration {
        transform: translateY(-60%);
    }
    #implementation .right-decor {
        transform: translatey(-75%);
        height: 550px;
        background-size: contain;
        background-position: right center;
    }
    #implementation {
        position: relative;
        z-index: 3;
    }
    #secure .left-decor {
        transform: translateY(-60%);
        height: 600px;
        background-size: contain;
        background-position: left center;
    }
    #contact-us .right-decor {
        top: 0;
        transform: translateY(-60%);
        height: 600px;
        background-size: contain;
        background-position: right center;
    }
    #advantage .left-decoration {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        height: 450px;
    }
}
@media screen and (max-width: 1000px) {
    #hero .content {
        max-width: 90%;
    }
}
@media screen and (max-width: 640px) {
    #header .btn-solid {
        display: none;
    }
    #header {
        justify-content: space-between;
    }
    #header .logo img {
        height: 48px;
    }
    #header {
        height: 90px;
    }
    #hero .content .title {
        font-size: 32px;
    }
    #header nav {
        width: 273px;
    }
    #hero .content .buttons {
        flex-direction: column;
        row-gap: 8px;
    }
    .btn-outline,
    .btn-solid {
        width: 100%;
    }
    #contact-us .contact-inner, #advantage .advantage-inner, #our-approach .approach-inner, #secure .secure-inner, #implementation .implementation-inner {
        padding: 40px 20px;
    }
    #contact-us .subtitle,
    #secure .subtitle,
    #implementation .subtitle,
    #our-approach .subtitle,
    #advantage .subtitle {
        font-size: 16px;
    }
    #secure .title,
    #contact-us .title,
    #implementation .title,
    #our-approach .title,
    #advantage .title {
        font-size: 28px;
    }
    #advantage .advantage-blocks {
        grid-template-columns: 1fr;
    }
    #advantage .block .title {
        font-size: 20px;
        line-height: 1.6;
    }
    #advantage .block {
        padding: 60px 24px 24px;
    }
    #our-approach .content {
        grid-template-columns: 1fr;
        row-gap: 19px;
        margin-top: 32px;
    }
    #our-approach .content.last-full-width .text-block:last-child {
        grid-column: auto;
    }
    #our-approach .content .title {
        font-size: 18px;
    }
    #our-approach .content .hash {
        font-size: 21px;
    }
    #our-approach .image-block {
        height: 225px;
    }
    #our-approach .approach-inner {
        row-gap: 24px;
    }
    #implementation .content {
        margin: 0 15px;
    }
    #implementation .implementation-slider {
        margin-top: 32px;
    }
    #implementation .implementation-slider .title {
        font-size: 18px;
    }
    #implementation .implementation-slider .slide-inner {
        padding: 24px;
    }
    .slick-dots {
        margin: 32px 0 0;
    }
    .wpcf7-form {
        margin-top: 32px;
    }
    .wpcf7-form .two-columns {
        grid-template-columns: 1fr;
        row-gap: 16px;
        margin-bottom: 16px;
    }
    .wpcf7-form .wpcf7-submit {
        margin-top: 24px;
    }
    #footer .footer-logo {
        display: none;
    }
    #footer .footer-inner {
        margin: 40px 20px;
    }
    #footer .contact-info {
        column-gap: 24px;
        width: 100%;
    }
    #footer .widget {
        flex-grow: 1;
        width: 100%;
    }
    #footer .widget h4 {
        font-size: 18px;
        text-align: center;
    }
    #footer .footer-bottom {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        padding-top: 24px;
    }
    #contact-us .message-inner {
        padding: 40px 24px;
    }
    #contact-us .success-message .btn-close {
        top: 24px;
        right: 24px;
    }
    #header nav .btn-close {
        top: 25px;
    }
}