@import url('../css/fonts.css');
@import url('../css/normalize.css');


/* Global CSS */
.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    /*    border-radius: 0; */
}

img {
    max-width: 100%;
    vertical-align: inherit;
}

a {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Lato';
    font-weight: normal;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: #00253F;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*  transform: translate3d(0, 0, 0); */
}


@media screen and (max-width: 1199px) {
    body {
        font-size: 20px;
        line-height: 120%;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: none;
}

.modal *,
.modal *::before,
.modal *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}


.flex-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.new-container {
    width: 75vw;
    min-width: 1400px;
    margin: 0 auto;
}


canvas {
    display: block;
    position: fixed;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh !important;
    /* transform: translateZ(0); */
}



h2 {
    font-size: 55px;
    line-height: 65px;
}

h3 {
    font-size: 30px;
    line-height: 38px;
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.heading {
    font-weight: bold;
    letter-spacing: 0.07em;
    font-family: 'Euclid Circular A';
}

h2.heading {
    padding-bottom: 60px;
}

.heading_white {
    color: #ffffff;
}

.default-text {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.02em;

    color: #ffffff;

}

.default-text.default-text_hint {
    font-size: 22px;
    line-height: 26px;
    position: relative;
    padding-left: 70px;
}

.default-text_hint:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(../img/icons/hint.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.list {
    padding: 0;
    margin: 0;
    list-style: none;
}

main {
    display: block;
}

.body-inner {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.btn {
    padding: 15px 35px;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    letter-spacing: 0.02em;
    /* overflow: hidden; */
    position: relative;
    z-index: 0;
}




.btn-purple {
    color: #ffffff;
    background: -o-linear-gradient(181.76deg, #6100FF 8.3%, #9522F0 122.74%);
    background: linear-gradient(268.24deg, #6100FF 8.3%, #9522F0 122.74%);
}

.btn-white {
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}

@media screen and (min-width: 1200px) {
    .btn-white:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background: #9522F0;
        z-index: -1;
        opacity: 0;
        transform: translateY(-100%);
        transition: all .2s ease;
    }

    .btn-white:hover {
        color: #ffffff;
    }

    .btn-white:hover:before {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .btn-white:hover,
    .btn-white:active {
        background: #9522F0;
        color: #ffffff;
    }

}

.btn-purple:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #00253F;
    z-index: -1;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 20px rgba(183, 63, 179, 0.6), 0px 0px 10px rgba(74, 42, 146, 0.8);
    box-shadow: 0px 0px 20px rgba(183, 63, 179, 0.6), 0px 0px 10px rgba(74, 42, 146, 0.8);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 10px;
}

.btn-purple:hover:before {
    opacity: 1;
}

.default-input {
    background: #062032;
    border: 1px solid rgba(196, 167, 242, 0.3);
    border-radius: 10px;
    margin: 0;
    padding: 0 35px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    font-size: 20px;
    /*   line-height: 24px; */
    /* identical to box height */
    width: 100%;
    letter-spacing: 0.02em;
    color: #ffffff;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.default-input:not([readonly]):focus {
    border: 1px solid rgba(196, 167, 242, 1);
}

.default-input_wrapper {
    position: relative;
}

.invalid .default-input {
    border-color: red;
}


.invalid .invalid-text {
    position: absolute;
    bottom: 100%;
    margin-bottom: 5px;
    left: 0;
    width: 100%;
    color: red;
    font-size: 18px;
    line-height: 100%;
}



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

    .invalid .invalid-text {
        font-size: 16px;
    }
}

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

    .invalid .invalid-text {
        font-size: 14px;
    }
}

@media screen and (min-width: 1950px) {

    .invalid .invalid-text {
        font-size: 1vw;
    }
}


.default-input::-webkit-input-placeholder,
.default-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::-moz-placeholder,
.default-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input:-ms-input-placeholder,
.default-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::-ms-input-placeholder,
.default-textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::-webkit-input-placeholder,
.default-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::-moz-placeholder,
.default-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input:-ms-input-placeholder,
.default-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::-ms-input-placeholder,
.default-textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
}


.default-input::placeholder,
.default-textarea::placeholder {
    color: rgba(255, 255, 255, .5);
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.default-input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.default-input:focus::-moz-placeholder {
    opacity: 0;
}

.default-input:focus:-ms-input-placeholder {
    opacity: 0;
}

.default-input:focus::-ms-input-placeholder {
    opacity: 0;
}

.default-input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.default-input:focus::-moz-placeholder {
    opacity: 0;
}

.default-input:focus:-ms-input-placeholder {
    opacity: 0;
}

.default-input:focus::-ms-input-placeholder {
    opacity: 0;
}

.default-input:focus::placeholder {
    opacity: 0;
}

.link {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-transition: border-color .2s ease;
    -o-transition: border-color .2s ease;
    transition: border-color .2s ease;
}

.link:hover {
    border-color: transparent;
}

@media screen and (min-width: 1950px) {
    h2 {
        font-size: 3vw;
        line-height: 3.5vw;
    }

    h2.heading {
        padding-bottom: 3vw;
    }

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

    .default-text.default-text_hint {
        font-size: 1.3vw;
        line-height: 1.6vw;
    }

    h3 {
        font-size: 1.7vw;
        line-height: 2vw;
    }

    .btn {
        font-size: 1.3vw;
        line-height: 1.7vw;
    }

    .default-input {
        height: 3vw;
        line-height: 100%;
        font-size: 1vw;
    }
}

@media screen and (max-width: 1500px) {
    .new-container {
        min-width: auto;
        width: 90vw;
    }

    h2 {
        font-size: 50px;
        line-height: 120%;
    }

    .default-text {
        font-size: 20px;
        line-height: 120%;
    }

    .default-text.default-text_hint {
        font-size: 18px;
        line-height: 120%;
    }
}

@media screen and (max-width: 1199px) {
    .new-container {
        width: 100%;
        padding: 0 80px;
    }

    h2 {
        font-size: 35px;
        line-height: 44px;
    }

    h2.heading {
        padding-bottom: 40px;
    }

    h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .default-input {
        font-size: 16px;
        padding-left: 20px;
    }

    .btn-white {
        overflow: initial;
    }
}

@media screen and (max-width: 767px) {
    .new-container {
        padding: 0 15px;
    }

    h2 {
        font-size: 25px;
        line-height: 120%;
    }

    h2.heading {
        padding-bottom: 30px;
    }

    h3 {
        font-size: 16px;
    }

    .default-text {
        font-size: 16px;
    }

    .default-text.default-text_hint {
        font-size: 14px;
        padding-left: 50px;
    }

    .default-text_hint:before {
        width: 30px;
        height: 30px;
    }
}

/* 01 Header CSS */

header {
    padding: 50px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

header.fixed {
    background: #00253F;
    padding: 20px 0;
    -webkit-box-shadow: 0px 4px 20px rgb(0 14 86 / 10%);
    box-shadow: 0px 4px 20px rgb(0 14 86 / 10%);
}

.nav-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.5vw;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    display: block;
    font-size: 1vw;
    line-height: 1.5vw;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.nav-link.active:after,
.nav-link:not(.active):hover:after,
.nav-link:not(.active):hover:active {
    opacity: 1;
    /*  width: 100%; */
}

.mob-menu {
    display: none;
}

@media screen and (min-width: 1950px) {
    .nav-link {
        font-size: 1.3vw;
        line-height: 1.7vw;
    }
}

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

    .nav-link,
    .btn {
        font-size: 18px;
        line-height: 22px;
    }

    header {
        padding: 30px 0;
    }

    header.fixed {
        padding: 10px 0;
    }
}

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

    header,
    header.fixed {
        padding: 20px 0;
    }

    header .new-container {
        padding: 0 40px;
    }

    .mob-menu {
        display: block;
        position: relative;
        width: 40px;
        height: 20px;
        margin-left: auto;
        z-index: 1;
        /*  background: #00253F; */
    }

    .mob-menu>span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 20px;
        background: #ffffff;
        -webkit-transition: opacity .2s ease;
        -o-transition: opacity .2s ease;
        transition: opacity .2s ease;
    }

    .mob-menu:before,
    .mob-menu:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border-radius: 20px;
        background: #ffffff;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
    }

    .mob-menu:before {
        top: 1px;
    }

    .mob-menu:after {
        bottom: -1px;
    }

    .nav-wrapper {
        position: fixed;
        width: 40vw;
        height: 100%;
        top: 0;
        right: 0;
        background: #062032;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 80px 40px;
        gap: 3.5vw;
        overflow: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        display: none;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
    }

    header .nav-wrapper.open {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    header.open .nav-wrapper.open.arrived-right {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    header.open .mob-menu>span {
        opacity: 0;
    }

    header.open .mob-menu:before,
    header.open .mob-menu:after {
        top: 50%;
    }

    header.open .mob-menu:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    header.open .mob-menu:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    header .overlay-wrapper {
        background: #000;
        opacity: .8;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
}

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

    header .new-container {
        padding: 0 20px;
    }

    .mob-menu {
        width: 30px;
        height: 20px;
    }

    .nav-wrapper {
        width: 80vw;
        gap: 30px;
    }

    .nav-link,
    .btn {
        font-size: 16px;
        line-height: 120%;
    }
}

/* End 01 Header CSS */

/* Start 02 Footer CSS */
footer {
    margin-top: 150px;
    background: rgba(0, 37, 63, 0.4);
    /* плашки */
    /*  height: 100px; */
    -webkit-box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(12.5px);
    backdrop-filter: blur(12.5px);
}

.footer-inner_top {
    padding: 100px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-inner_top-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-inner picture,
.footer-inner img {
    display: block;
    width: 100%;
}

.footer-inner_top-mail {
    margin-top: 60px;
    gap: 60px;
}

.footer-inner_top-mail>a {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    padding-left: 45px;
}

.footer-inner_top-mail>a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(../img/icons/mail.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-inner_top-right {
    max-width: 43%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-subscribe_form {
    margin-top: 40px;
    gap: 10px;
    position: relative;
}

.footer-subscribe_form .default-input_wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer-subscribe_form .btn {

    padding: 0 25px;
    border: none;

}

.footer-subscribe_form--success {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    padding: 50px 20%;
    background: #062032;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.3vw;
    line-height: 120%;
    display: none;
}

.footer-subscribe_form--success>a {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: url(../img/icons/close-modal.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: .9;
    transition: opacity .2s ease;
}

.footer-subscribe_form--success>a:hover,
.footer-subscribe_form--success>a:active {
    opacity: 1;
}

@media screen and (max-width: 1949px) {
    .footer-subscribe_form .btn {
        height: 50px;
        line-height: 50px;
    }
}


.footer-subscribe_form .btn:not([disabled]) {
    cursor: pointer;
}

.footer-subscribe_form .btn:disabled:before {
    content: none;
}

.footer-inner_top-socials {
    margin-top: auto;
    gap: 3vw;
}

.footer-inner_top-social {
    position: relative;
    width: 2vw;
}

.footer-inner_top-social:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background: #ffffff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: -1;
    /*  will-change: auto; */
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

.footer-inner_top-social:hover:before {
    opacity: 1;
}

.footer-copyright {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);

}

.footer-inner_copyright {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* font-weight: 600; */
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */


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

@media screen and (min-width: 1950px) {
    .footer-inner_top-mail>a {
        font-size: 1vw;
        line-height: 1.2vw;
    }

    .footer-subscribe_form .btn:not([disabled]) {
        height: 3vw;
        line-height: 100%;
        font-size: 1vw;
    }

    .footer-inner_top-subscribe {
        margin-bottom: 2vw;
    }

    .footer-subscribe_form .default-input_wrapper {
        width: 22vw;
    }

    .footer-inner_copyright {
        font-size: 1vw;
        line-height: 1.2vw;
    }
}

@media screen and (max-width: 1500px) {
    footer {
        margin-top: 100px;
    }

    .footer-inner_copyright {
        font-size: 1.2vw;
    }

    .footer-inner_top-left>picture {
        width: 75%;
    }

    .footer-subscribe_form--success {
        font-size: 1.5vw;
    }

}

@media screen and (max-width: 1199px) {
    .footer-inner_top {
        padding: 80px 0;
    }

    .footer-inner_top-left {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .footer-inner_top-mail {
        margin-top: 50px;
        gap: 30px;
    }

    .footer-inner_top-mail>a {
        font-size: 18px;
        line-height: 120%;
    }

    .footer-inner img {
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-inner_top-right {
        max-width: none;
        width: 100%;
        margin-top: 70px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .footer-inner_top-subscribe .default-text {
        max-width: 370px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-inner_top-subscribe,
    .footer-subscribe_form {
        width: 100%;
    }

    .footer-subscribe_form {
        max-width: 620px;
        margin: 40px auto 0;
    }

    .footer-inner_top-socials {
        margin-top: 70px;
        gap: 60px;
    }

    .footer-inner_top-social {
        width: 40px;
    }

    .footer-inner_copyright {
        font-size: 18px;
        line-height: 120%;
    }

    .footer-subscribe_form--success {
        font-size: 16px;
        padding: 60px 30px 40px;
    }
}

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

    .footer-inner_top {
        padding: 60px 0;
    }

    .footer-inner_top-mail {
        margin-top: 35px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

    .footer-inner_top-right {
        margin-top: 35px;
    }

    .footer-inner_top-subscribe {
        max-width: 290px;
    }

    .footer-subscribe_form {
        margin-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
    }

    .footer-subscribe_form>* {
        width: 100%;
        /*   max-width: 290px; */
    }

    .footer-inner_top-socials {
        margin-top: 50px;
        gap: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer-inner_top-social {
        width: 30px;
    }

    .footer-copyright {
        padding: 30px 0;
    }

    .footer-inner_copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        font-size: 16px;
    }
}

/* End 02 Footer CSS */

.btn-top {
    position: fixed;
    right: 2vw;
    bottom: 2vw;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: #6100FF;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
}


.btn-top:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #9522F0;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.btn-top:hover:before {
    opacity: 1;
}

.btn-top>span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #ffffff;
}

.btn-top>span:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    top: 1px;
    left: -7px;
}

@media screen and (max-width: 1500px) {
    .btn-top {
        width: 40px;
        height: 40px;
        bottom: 6vw;
    }

    .btn-top>span:after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        border-left: 2px solid #ffffff;
        border-top: 2px solid #ffffff;
        top: 1px;
        left: -4px;
    }

}

/* Start Modal CSS */
.blocker {
    z-index: 2;
    padding: 0;
}

.modal.modal-conf {
    width: 75vw;
    min-width: 1400px;
    height: 90%;
    max-width: none;
    background: #062032;
    border-radius: 0;
    padding: 0;
    font-family: 'Euclid Circular A';
    overflow: hidden;

}

.modal.modal-conf .modal-wrapper {
    padding: 70px;
    font-size: 20px;
    line-height: 24px;
    overflow: auto;
    height: 100%;
}

.modal.modal-conf a.close-modal {
    background-image: none;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-image: url(../img/icons/close-modal.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .8;
    transition: opacity .2s ease;
}

.modal.modal-conf a.close-modal:hover,
.modal.modal-conf a.close-modal:active {
    opacity: 1;
}

.modal.modal-conf .heading {
    letter-spacing: 0.07em;
    padding-bottom: 30px;
}

.modal.modal-conf h3.heading {
    font-size: 30px;
    line-height: 38px;
}

.modal.modal-conf h4.heading {
    font-size: 25px;
    line-height: 30px;
}

.modal-conf_update {

    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 30px;
}

.modal.modal-conf p,
.modal.modal-conf ul {
    color: rgba(255, 255, 255, 0.8);
}

.modal.modal-conf p+p {
    margin-top: 15px;
}

.modal.modal-conf p+.heading {
    margin-top: 50px;
}

@media screen and (max-width: 1500px) {
    .modal.modal-conf {
        width: 85vw;
        min-width: auto;
        max-width: none;
    }

    .modal.modal-conf a.close-modal {
        top: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .modal.modal-conf h3.heading {
        font-size: 24px;
        line-height: 120%;
    }

    .modal.modal-conf h4.heading {
        font-size: 20px;
        line-height: 120%;
    }

    .modal.modal-conf .modal-wrapper {
        font-size: 16px;
        line-height: 120%;
    }

    .modal.modal-conf {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .modal.modal-conf .modal-wrapper {
        padding-left: 40px;
    }
}


@media screen and (max-width: 767px) {
    .modal.modal-conf .modal-wrapper {
        padding: 70px 20px;
        padding-right: 30px;
    }

    .modal.modal-conf h3.heading {
        font-size: 20px;
    }

    .modal.modal-conf h4.heading {
        font-size: 18px;

    }

    .modal.modal-conf .modal-wrapper {
        font-size: 14px;

    }

    .modal.modal-conf a.close-modal {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background-color: #062032;
        opacity: 1;
    }
}

/* End Modal CSS */