/* typography */
h1,
h2,
h3,
.heading-1,
.heading-2,
.heading-3 {
    font-weight: bold;
    line-height: 1.1em;
}
h1,
.heading-1 {
    font-size: 3em; /* 48px */
    color: var(--theme-blue);
}
h2,
.heading-2 {
    font-size: 2.25em; /* 36px */
    color: #1f2845;
}
h3,
.heading-3 {
    font-size: 1.5em; /* 24px */
}

@media (max-width: 767px) {
    h1,
    .heading-1 {
        font-size: 2.25em; /* 36 */
    }
    h2,
    .heading-2 {
        font-size: 1.5em; /* 24px */
    }
}

/* element visibility conditions */
@media (min-width: 768px) {
    .visible-mobile {
        display: none !important;
    }
}

/* buttons */
.theme_btn_1 {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.theme_btn_1:hover {
    background-color: var(--theme-blue-400);
}
.theme_btn_1.white:hover {
    background-color: var(--theme-blue-100);
}
.theme_btn_1.green:hover {
    background-color: var(--theme-green-100);
    color: var(--theme-green-700);
}
.theme_btn_1.arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-right: 1.125em;
}
.theme_btn_1.arrow svg {
    transform: rotate(-90deg);
}

.theme_btn_side_arrow {
    font-weight: bold;
    text-decoration: none;
    color: var(--theme-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease-in-out;
}
.theme_btn_side_arrow .circle {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: 1px solid var(--theme-blue);
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme_btn_side_arrow i {
    position: relative;
    width: 1.5em;
    height: 1.5em;
}
.theme_btn_side_arrow i:before,
.theme_btn_side_arrow i:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../svg/arrow_down.svg") no-repeat center;
    background-size: 100% auto;
    transition: opacity 0.15s ease-in-out;
    transform: rotate(-90deg);
}
.theme_btn_side_arrow i:after {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../svg/arrow_down-white.svg");
    opacity: 0;
}
.theme_btn_side_arrow:hover {
    color: var(--theme-blue-2);
}
.theme_btn_side_arrow:hover .circle {
    border-color: var(--theme-blue-2);
    background-color: var(--theme-blue-2);
    transform: translateX(1em);
}
.theme_btn_side_arrow:hover i:before {
    opacity: 0;
}
.theme_btn_side_arrow:hover i:after {
    opacity: 1;
}

/* theme content box style */
.theme_content_box-img {
    margin-bottom: 1.5rem;
}
.theme_content_box-img.icon img {
    width: 3.75rem;
    height: 3.75rem;
}
.theme_content_box-index {
    font-size: 0.875em;
    line-height: 1em;
    margin: 1.5rem 0 1rem;
}
.theme_content_box-title {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.1em;
    min-height: 78px;
    padding-bottom: 2.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--theme-blue);
    box-sizing: content-box;
}
.theme_content_box-description {
    font-size: 0.875em;
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 1.5rem;
}
.theme_content_box-gallery {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 4rem;
    row-gap: 2.25rem;
}
.theme_content_boxes.shorter_heading .theme_content_box-title {
    min-height: auto;
    padding-bottom: 1.5rem;
    border: 0;
    position: relative;
}
.theme_content_boxes.shorter_heading .theme_content_box-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 1px;
    background-color: var(--theme-blue);
}

/* image shape */
.theme_img_shape {
    width: 231px;
    height: 231px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}
.theme_img_shape img {
    width: 165px;
    height: 165px;
}
.theme_img_shape svg {
    width: 231px;
    height: 231px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* theme blur bg style 1*/
.theme_bg_1 {
    position: relative;
    overflow: hidden;
}
.theme_bg_1:before,
.theme_bg_1:after {
    content: "";
    opacity: 0.8;
    filter: blur(250px);
    border-radius: 50%;
    position: absolute;
    transform: translate3d(0, 0, 0);
}
.theme_bg_1:before {
    background-color: #f2f2f2;
    --reverse-color: #e5f8ff;
    width: calc(100vw * 0.597);
    height: calc(100vw * 0.597);
    top: calc(calc(100vw * 0.37) * -1);
    left: -10%;
    z-index: 1;
}
.theme_bg_1:after {
    background-color: #e5f8ff;
    --reverse-color: #f2f2f2;
    width: calc(100vw * 0.76);
    height: calc(100vw * 0.76);
    top: calc(100vw * 0.065);
    right: 1%;
    z-index: 2;
}
.theme_bg_1-reverse-colors:before {
    background-color: #e5f8ff;
    --reverse-color: #f2f2f2;
}
.theme_bg_1-reverse-colors:after {
    background-color: #f2f2f2;
    --reverse-color: #e5f8ff;
}
.theme_bg_1 .wrap {
    position: relative;
    z-index: 3;
}
.theme_bg_1:before,
.theme_bg_1:after {
    transition: background-color 2s;
}
.theme_bg_1:hover:before,
.theme_bg_1:hover:after {
    background-color: var(--reverse-color);
}
@media (max-width: 767px) {
    .theme_bg_1:before {
        width: calc(100vw * 1.8);
        height: calc(100vw * 1.8);
        left: -65%;
        top: calc(calc(100vw * 0.95) * -1);
    }
    .theme_bg_1:after {
        width: calc(100vw * 2.5);
        height: calc(100vw * 2.5);
        top: calc(100vw * 0.3);
        right: -184%;
    }
    .theme_bg_1:before,
    .theme_bg_1:after {
        filter: blur(100px);
    }
}

/* theme banner style */
.theme_banner_1 {
    background: var(--theme-blue-2) url("../svg/banner_decoration.svg") no-repeat center right;
    color: #fff;
}
.theme_banner_1 h1 {
    color: inherit;
}
.theme_banner_1.theme_bg_1:before,
.theme_banner_1.theme_bg_1:after {
    background: var(--theme-blue);
}
@media (min-width: 768px) {
    .theme_banner_1 .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3em;
        padding-top: 4em;
        padding-bottom: 4em;
        min-height: 280px;
    }
}
@media (max-width: 767px) {
    .theme_banner_1 {
        background-position: right bottom -15%;
        background-size: contain;
    }
    .theme_banner_1 .container {
        padding-top: 46px;
        padding-bottom: 46px;
        min-height: 300px;
    }
    .theme_banner_1 .container > * + * {
        margin-top: 36px;
    }
}

/* theme footer */
.page_footer {
    padding: 117px 0 14px;
    background-color: var(--theme-blue);
    color: #fff;
}
.footer-join .heading-3 {
    margin-bottom: 8px;
}
.footer-join form {
    margin-top: 1em;
    max-width: 392px;
}
.footer-join form .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}
.footer-join form label {
    margin: 0;
}
.footer-join form .submit_wrap {
    margin-top: 0;
}
.footer-join form label input.wpcf7-text,
.footer-join form .submit_wrap input[type="submit"] {
    min-height: 55px;
    min-width: 150px;
}
.footer-menu ul li:not(:last-child) {
    margin-bottom: 16px;
}
.page_footer a:not(.theme_btn_1) {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.page_footer a:hover {
    color: var(--theme-blue-2);
}
.footer-menu a {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.1em;
}
.footer-social {
    display: flex;
    align-self: center;
    gap: 1.5em;
}
.footer-social svg {
    display: block;
    transition: fill 0.3s ease-in-out;
    width: 20px;
    height: 20px;
    fill: #fff;
}
.footer-social svg path {
    fill: #fff;
}
.page_footer .copyright,
.page_footer .created_by {
    font-size: 10px;
    line-height: 1.4em;
}
.page_footer .copyright a,
.page_footer .created_by a {
    font-weight: 600;
}
.page_footer .created_by {
    margin-top: 20px;
    text-align: center;
}
.page_footer .created_by img {
    vertical-align: -2px;
    margin-left: 8px;
}
.footer-menu {
    max-width: 100%;
}
@media (min-width: 768px) and (max-width: 940px) {
    .footer-join form .wrapper {
        flex-direction: column;
    }
}
@media (max-width: 1505px) {
    .page_footer .footer_group {
        flex-wrap: wrap;
    }
}
@media (max-width: 1170px) {
    .topbar__close {
        right: 30px;
    }
}
@media (max-width: 1025px) {
    .hp_hero-content {
        flex-direction: column;
        row-gap: 37px;
        padding-bottom: 95px;
        padding-top: 140px;
    }
}
@media (max-width: 992px) {
    .hp_hero-content {
        padding-top: 30px;
    }
    .mobile-menu-btns {
        margin-top: 20px;
        justify-content: center;
        display: flex;
        gap: 35px;
    }
    .mobile-menu-btns .outline {
        color: #fff;
    }
    .header-menu {
        margin-bottom: 30px;
    }
    .header_menu-wrapper {
        display: flex;
        flex-direction: column;
    }
    .mobile-menu-btns > a {
        flex: 1;
    }
}
@media (min-width: 768px) {
    .page_footer .footer_group {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding-bottom: 48px;
        margin-bottom: 24px;
    }
    .footer-join {
        margin-right: 50px;
    }
    .footer-menu > ul {
        columns: 2;
        column-gap: 32px;
    }

    .page_footer .copyright,
    .page_footer .copyright ul {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
    .page_footer {
        padding: 0 0 18px;
    }
    .page_footer .footer_group {
        display: grid;
        gap: 27px;
        padding-bottom: 64px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
    .footer_logo {
        margin: 40px 0;
        order: -1;
    }
    .page_footer .container {
        display: flex;
        flex-direction: column;
    }

    .page_footer .copyright {
        text-align: center;
    }
    .page_footer .copyright ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}
.footer-menu .sub-menu {
    margin-top: 8px;
}
.footer-menu .sub-menu li a {
    font-weight: 400;
}
/* overlay menu */
.overlay_header_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--theme-blue);
    z-index: 999;
    max-width: 100vw;
}
body.admin-bar .overlay_header_menu {
    top: 32px;
    height: calc(100vh - 32px);
}
.header_menu-container {
    max-width: 1280px;
    padding: var(--theme-container-padding);
    margin: 0 auto;
    min-height: 100%;
    position: relative;
}
.header_menu-top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
}
.header_menu-top_bar svg {
    fill: #fff;
}
.header_menu-wrapper {
    padding: 40px 0;
    height: calc(100vh - 40px - 48px);
    overflow: auto;
}
.header-menu a {
    display: block;
    font-weight: bold;
    line-height: 1.1em;
    color: #1f2845;
    text-decoration: none;
}
.header_menu-social {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 28px;
}
.header_menu-social a {
    font-size: 0.875em;
    text-decoration: none;
    color: #fff;
}
/* #menu:after {
    content: "";
    background-size: cover;
    background-position: center right;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='1256' fill='none'%3E%3Cpath d='M0 0v1256c132.037-175.13 209.998-392.472 209.998-628.225C210.449 392.023 132.037 174.681 0 0z' fill='%23009fdf'/%3E%3C/svg%3E");
    width: 210px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -209px;
    z-index: -1;
} */
@media (min-width: 768px) {
    /* .header_menu-wrapper {
        margin-left: min(50%, 485px);
    } */
    .header-menu a {
        display: flex;
        font-size: 48px;
        padding: 10px 0 27px;
        position: relative;
        transition: color 0.3s, padding-left 0.3s;
    }
    .header-menu a:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: 1px;
        height: 100%;
        background-color: #fff;
        transform: scaleY(0);
        transition: transform 0.3s ease-in-out;
        transform-origin: bottom;
    }
    .header-menu a:hover {
        color: #fff;
        padding-left: 50px;
    }
    .header-menu a:hover:before {
        transform: scaleY(1);
    }
    .header_menu-bottom_links {
        margin-top: 55px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }

    .header_menu-shape {
        position: absolute;
        left: -124px;
        bottom: 0;
        width: min(52%, 496px);
    }
    .header_menu-shape svg {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .header_menu-social {
        display: none;
    }
    .header_menu-social .header_menu-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .header-menu li:not(:last-child) {
        margin-bottom: 40px;
    }
    .header-menu .sub-menu {
        padding-left: 20px;
        padding-top: 20px;
    }

    .header-menu a {
        font-size: 24px;
    }
    .header_menu-bottom_links {
        /*margin-top: auto;*/
    }
    .header_menu-social {
        margin-bottom: 36px;
    }
    .header_menu-shape {
        display: none;
    }
}

/* overlay menu - open transitions */
.overlay_header_menu {
    /*visibility: hidden;
    transform: translateX(-100vw);*/
    transition: transform 0.5s;
}
body.js-header_menu-active .overlay_header_menu {
    visibility: visible;
    transform: translateX(0);
}
.header_menu-wrapper {
    transform: translateX(-85%);
    transition: transform 0.8s cubic-bezier(0.5, 2, 0.5, 1);
}
body.js-header_menu-active .overlay_header_menu .header_menu-wrapper {
    transform: skewX(0) translateX(0);
}

.header_menu-shape svg {
    transform: rotate(-180deg);
    transition: transform 0.5s;
}
body.js-header_menu-active .header_menu-shape svg {
    transform: rotate(0);
}

.page_header-menu_toggle .bar-1,
.page_header-menu_toggle .bar-2 {
    transform-origin: left center;
    transition: 0.4s;
}
body.js-header_menu-active .page_header-menu_toggle .bar-1 {
    transform: rotate(45deg) translate(1px, -2px);
}

body.js-header_menu-active .page_header-menu_toggle .bar-2 {
    transform: rotate(-45deg) translate(0px, 4px);
}

body.js-header_menu-active .page_header {
    background-color: transparent;
}

body.js-header_menu-active .page_header-logo svg {
    fill: #fff;
}

body.js-header_menu-active .page_header-menu_toggle .bar-1,
body.js-header_menu-active .page_header-menu_toggle .bar-2 {
    background-color: #fff;
}

/* popups */
.theme_popup,
.popup_overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body.admin-bar .theme_popup {
    height: calc(100% - 32px);
}
.theme_popup {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
}
.theme_popup.active {
    opacity: 1;
    visibility: visible;
}
.popup_overlay {
    background-color: rgba(0, 0, 0, 0.7);
}
.popup_container {
    position: relative;
    width: 1038px;
    max-width: 90%;
    max-height: 95%;
    background-color: #fff;
    z-index: 10;
}
.popup_heading {
    background-color: var(--theme-blue);
    overflow: auto;
}
.popup_heading svg {
    fill: #fff;
}
.popup_heading h2 {
    color: #fff;
}
.popup_heading h2 span {
    display: block;
    color: var(--theme-blue-2);
}
.popup_heading p {
    color: #fff;
}
.popup_form_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
.popup_form_wrap form {
    max-width: 380px;
    display: flex;
    flex-direction: column;
}
.js-close_popup {
    position: absolute;
    top: 43px;
    right: 48px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.75 5.25L5.25 18.75'/%3E%3Cpath d='M18.75 18.75L5.25 5.25'/%3E%3C/svg%3E");
}
.popup_form_wrap form .wpcf7-response-output {
    position: relative !important;
}
.popup_form_wrap form .text_right {
    text-align: right;
    order: 999;
}
.popup_form_wrap form .submit_wrap {
    display: inline-block;
}
@media (min-width: 768px) {
    .popup_container {
        display: grid;
        grid-template-columns: 43% auto;
        overflow: auto;
    }
    .popup_heading,
    .popup_form_wrap {
        padding: 43px 50px;
    }
    .popup_form_wrap {
        padding-top: 70px;
    }
    .popup_heading-container {
        max-width: 266px;
    }
    .popup_heading h2 {
        margin: 69px 0 47px;
    }
    .popup_heading p {
        font-size: 12px;
        font-weight: 300;
    }

    @media (min-height: 780px) {
        .popup_heading {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' fill='%23fff' viewBox='0 0 496 496'%3E%3Cpath d='M434.126 123.879v371.374C473.029 443.47 496 379.207 496 309.5c.132-69.707-22.971-133.971-61.874-185.621zm-61.873-62.006C320.603 23.103 256.207 0 186.5 0S52.529 23.103.747 61.873h371.506z'%3E%3C/path%3E%3C/svg%3E");
            background-size: 45% auto;
            background-position: left 18px bottom 18px;
            background-repeat: no-repeat;
        }
    }
}
@media (max-width: 767px) {
    .popup_container {
        display: flex;
        flex-direction: column;
        min-height: auto;
        max-height: 90%;
    }
    .js-close_popup {
        top: var(--theme-container-padding);
        right: var(--theme-container-padding);
        background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.75 5.25L5.25 18.75'/%3E%3Cpath d='M18.75 18.75L5.25 5.25'/%3E%3C/svg%3E");
    }
    .popup_heading {
        padding: var(--theme-container-padding);
        overflow: initial;
    }
    .popup_heading h2 {
        margin-top: 24px;
        font-size: 36px;
        max-width: 266px;
    }
    .popup_heading h2 span {
        display: none;
    }
    .popup_heading p {
        display: none;
    }
    .popup_form_wrap {
        padding: var(--theme-container-padding);
    }
}

/* cf7 styles */
.screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    color: #dc3232; /* Red */
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.wpcf7-spinner {
    visibility: hidden;
}

form.submitting .wpcf7-spinner {
    visibility: visible;
}

.wpcf7 input[type="file"] {
    cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
    cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    direction: ltr;
}

.wpcf7-reflection > output {
    display: list-item;
    list-style: none;
}

/* theme form style */
form label {
    display: block;
    margin-bottom: 1em;
}
form .input_label {
    display: block;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 0.5em;
}
form .input_label.required:after {
    content: "*";
    color: var(--theme-blue);
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    outline: 0;
    border: 1px solid transparent;
    padding: 1em 20px;
    background-color: var(--theme-grey-50);
    transition: 0.3s ease-in-out;
    border-radius: 25px;
}
form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="tel"]:hover,
form textarea:hover {
    background-color: var(--theme-blue-20);
}
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    border: 1px solid var(--theme-blue);
    background-color: var(--theme-blue-20);
}
form .submit_wrap {
    margin-top: 3em;
    text-align: right;
    position: relative;
}
form input[type="submit"] {
    cursor: pointer;
}
form .submit_wrap.arrow:before,
form .submit_wrap.arrow.green:after {
    content: "";
    position: absolute;
    background: url("../svg/arrow_down-white.svg") no-repeat center;
    width: 24px;
    height: 24px;
    top: 0;
    bottom: 0;
    right: 1.125em;
    margin: auto;
    transform: rotate(-90deg);
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
form .submit_wrap.arrow.green:after {
    background-image: url("../svg/arrow_down-green.svg");
    opacity: 0;
}
form .submit_wrap.arrow.green:hover:after {
    opacity: 1;
}
form .submit_wrap.arrow input[type="submit"] {
    padding-right: calc(1.5em + 24px);
}
form .submit_wrap .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 20px;
}
form .submit_wrap .wpcf7-spinner:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../svg/loader-white.svg") center no-repeat;
    background-size: contain;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
form.submitting .submit_wrap input[type="submit"] {
    color: transparent;
}
form.submitting .submit_wrap:before,
form.submitting .submit_wrap:after {
    opacity: 0 !important;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.wpcf7 form .wpcf7-response-output {
    position: absolute;
    max-width: 394px;
    background-color: #fff;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.2));
    padding: 1.5rem;
    font-size: 0.875em;
    line-height: 1.4em;
    color: var(--theme-grey-800);
    margin-left: 0;
    border: 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    padding-left: calc(1.5rem + 60px + 1em);
    background-size: 60px auto;
    background-repeat: no-repeat;
    background-position: left 1.5rem center;
}
.wpcf7 form.invalid .wpcf7-response-output {
    background-image: url("../svg/error.svg");
}
.wpcf7 form.sent .wpcf7-response-output {
    background-image: url("../svg/success.svg");
}
.wpcf7 form.invalid .wpcf7-response-output:before,
.wpcf7 form.sent .wpcf7-response-output:before {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.wpcf7 form.invalid .wpcf7-response-output:before {
    content: "Error notification";
    color: #ff0000;
}
.wpcf7 form.sent .wpcf7-response-output:before {
    content: "Success notification";
    color: var(--theme-green);
}
.wpcf7 form .wpcf7-response-output:after {
    content: "";
    display: block;
    width: 23px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='12' fill='none'%3E%3Cpath d='M11.5 0L0 11.5H23L11.5 0Z' fill='%23fff'/%3E%3C/svg%3E");
    position: absolute;
    top: -11px;
    left: 10.5%;
}
input.wpcf7-not-valid {
    color: #e62424;
    border-color: #e62424 !important;
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #e62424;
    font-size: 14px;
}
@media (max-width: 767px) {
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        padding-top: 0.7em;
        padding-bottom: 0.7em;
    }
    form .submit_wrap {
        margin-top: 36px;
    }
}

/* misc */
.grecaptcha-badge {
    /*visibility: hidden;*/
}

/*****************************************************/
.cta {
    background: #19152c url("/wp-content/uploads/bg-decor-1-1-2.png") center left no-repeat;
    background-size: contain;
    padding: 75px 0;
    overflow: hidden;
    position: relative;
}
.cta__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta__content {
    flex: 1;
    color: #fff;
    line-height: normal;
}
.cta__sub {
    font-family: "Sora";
    font-size: 33.136px;
    font-weight: 300;
}
.cta__title {
    margin-bottom: 43px;
    display: flex;
    font-size: 48px;
    font-weight: 500;
}

.cta__img {
    flex-shrink: 0;
    position: relative;
    width: 490px;
    z-index: 3;
    max-width: 100%;
}
.cta::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
    background-size: cover;
    background-image: url("/wp-content/uploads/cta-cov-1.png");
}
@media (max-width: 1100px) {
    .cta {
        padding: 15px 0;
    }
    .cta__sub {
        font-size: 26px;
    }
    .cta__title {
        font-size: 40px;
    }
}
@media (max-width: 920px) {
    .cta__container {
        flex-direction: column;
        gap: 50px;
    }
    .cta {
        background-size: cover;
        padding: 60px 0;
    }
}
@media (max-width: 470px) {
    .cta__title br {
        display: none;
    }
    .cta__title {
        font-size: 33px;
        margin-bottom: 25px;
    }
    .cta__sub {
        font-size: 25px;
    }
}

/*****************************************************/
.form {
    background: #162443 url("/wp-content/uploads/bg-form.svg") center no-repeat;
    background-size: cover;
    padding: 105px 0;
    overflow: hidden;
}
.form--light {
    background: #fff;
}
.form__container {
    display: flex;
    align-items: stretch;
    gap: 30px;
}
.form__content {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.form__title {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 10px;
}
.form--light .form__content,
.form--light .form__title {
    color: #1f2845;
}
.form--light .form__content {
    padding-top: 85px;
}
.form--light form label {
    margin-bottom: 28px;
}
.form--light .form__container {
    position: relative;
    z-index: 3;
}
.form--light .form__container::after {
    content: "";
  	background: url("/wp-content/uploads/blur-bg.webp") no-repeat;
    width: 1560px;
    height: 960px;
    position: absolute;
    z-index: -1;
    top: -10%;
    right: -25%;
}

@media (max-width: 768px) {
	.form--light .form__container::after {
    top: 26%;
    right: -70%;

}
}

.form--light form .submit_wrap {
    margin-top: 0;
}
.form--light .wpcf7-submit {
    border: 1px solid var(--theme-blue);
    color: var(--theme-blue);
    width: 190px;
    transition: all 0.2s;
}
.form--light .wpcf7-submit:hover {
    background: var(--theme-blue);
    color: #fff;
}
.form--light form .input_label {
    font-size: 14px;
    padding-left: 20px;
}
.form--light .stepform.success {
    display: flex;
    align-items: center;
}
.form--light .stepform.success .wpcf7-form {
    display: none;
}
.form--light form input::placeholder,
.form--light form textarea::placeholder {
    font-size: 13px;
}
.form--light .stepform__success {
    color: #1f2845;
}
.form--light .stepform.success:after {
    display: none;
}
.form--light .form__img {
    margin-top: 120px;
}
.form__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 156.24%;
    margin-bottom: 45px;
}
.form__advantages {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
}
.form__advantage {
    font-size: 16px;
    position: relative;
    padding-left: 55px;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.form__advantage::after {
    content: "";
    width: 33px;
    height: 33px;
    position: absolute;
    left: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3e%3ccircle cx='16.5183' cy='17.0183' r='16.5183' fill='%2308729C'/%3e%3cpath d='M22.6994 11.802L15.8061 20.9946C15.6528 21.1985 15.4576 21.3671 15.2335 21.489C15.0095 21.6109 14.7619 21.6833 14.5075 21.7013C14.2531 21.7193 13.9978 21.6825 13.7588 21.5933C13.5198 21.5041 13.3028 21.3647 13.1224 21.1845L9.56299 17.6251' stroke='white' stroke-width='1.73877' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
}
.form__img {
    margin-top: auto;
}
.form__img,
.form__img svg {
    max-width: 100%;
}
.stepform {
    border-radius: 20px;
    padding: 35px 28px;
    flex: 0 0 453px;
    z-index: 3;
    position: relative;
}
.stepform:not(.success) {
    background: #fff;
}
.stepform:not(.success) .stepform__success {
    display: none;
}
.stepform.success :where(.stepform__steps, .stepform__footer) {
    display: none;
}
.stepform.success:after {
    content: "";
    position: absolute;
    background: linear-gradient(
        245deg,
        rgba(0, 159, 223, 0.9) 15.12%,
        rgba(5, 67, 158, 0.9) 30.34%,
        rgba(0, 159, 223, 0.9) 57.34%,
        rgba(237, 242, 247, 0.9) 85.92%
    );
    filter: blur(182px);
    width: 151%;
    height: 100%;
    z-index: -1;
    top: 10px;
    left: -1px;
    opacity: 0.4;
}
.stepform__name {
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    margin-bottom: 10px;
    display: flex;
}
.stepform__input {
    font-size: 13px;
}
.stepform__name::after {
    color: var(--theme-blue);
    font-family: Sora;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    content: "*";
}
.stepform__step {
    display: none;
    flex-direction: column;
    gap: 10px;
}
.stepform__step--active {
    display: flex;
}

.stepform__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}
.stepform__next.theme_btn_1.outline {
    border: 1px solid var(--theme-blue);
    color: var(--theme-blue);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.57;
    padding: 8.5px 30px;
    width: 190px;
    max-width: 100%;
    cursor: pointer;
    transition: all 0.2s;
}
.stepform__next.theme_btn_1.outline:hover {
    background: var(--theme-blue);
    color: #fff;
}
.stepform__submit {
    width: 190px;
    font-size: 17.124px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.91px;
    padding: 10px 25px;
    cursor: pointer;
}
.select2-container--default .select2-selection--single {
    background: var(--theme-grey-50) !important;
    border: none !important;
    border-radius: 99px !important;
    width: 100% !important;
    font-size: 13px;
    display: flex !important;
    align-items: center;
    height: 100% !important;
    padding: 10px;
}
.select2-container {
    width: 100% !important;    
}
span.selection {
    display: flex;
    height: 100%;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 13px;
}
.select2-dropdown {
    background: rgba(235, 239, 245, 0.9) !important;
    backdrop-filter: blur(2px);
    border: none !important;
    overflow: hidden;
    border-radius: 20px !important;
    padding: 15px;
}
.select2-results__option {
    font-size: 13px;
    padding: 9px 20px !important;
    border-radius: 100px;
    color: #324c72 !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgb(50 76 114 / 45%) !important;
    color: #324c72 !important;
}
.select2-results__options {
    display: flex;
    flex-direction: column;
    padding: 16px;
    max-height: 250px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    margin-right: 11px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8'?%3e%3csvg fill='none' viewBox='0 0 16 10' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m1 1 7 7 7-7' stroke='%23324C72' stroke-linecap='round' stroke-width='1.5'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-container--default .select2-results__option--selected {
    background: rgb(50 76 114 / 45%) !important;
}
.stepform__privacy {
    font-size: 13px;
    font-weight: 300;
    padding-left: 25px;
}
.stepform__privacy a {
    color: var(--theme-blue);
    text-decoration: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    background: white;
    border: none;
    border-radius: 8px;
    margin-bottom: 7px;
}
.stepform__input.error {
    border-color: red !important;
}
.hide {
    display: none !important;
}
.stepform__success {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}
.stepform__success-title {
    font-size: 44px;
    line-height: 1.45;
    display: flex;
    justify-content: center;
    margin: 8px 0;
}
.stepform__success-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 156.24%;
}

@media (max-width: 1100px) {
    .form__text {
        font-size: 16px;
    }
}
@media (max-width: 940px) {
    .stepform {
        flex: 0 0 377px;
    }
}
@media (max-width: 768px) {
    .form__container {
        flex-direction: column;
    }
    .stepform {
        flex: 1 0 100%;
        width: 100%;
    }
    .form--light .form__content {
        padding-top: 0;
    }
    .form--light .form__img {
        margin-top: 0;
    }
}
@media (max-width: 440px) {
    .form {
        padding: 48px 0;
    }
}
@media (max-width: 370px) {
    .stepform {
        padding: 22px 14px;
    }
    .stepform__next.theme_btn_1.outline {
        font-size: 15px;
        width: 151px;
    }
    .form__title {
        font-size: 41px;
    }
    .form__container {
        gap: 0;
    }
    .footer-join form .wrapper {
        flex-direction: column;
    }
    .stepform__success-title {
        font-size: 35px;
    }
    .stepform__success-text {
        font-size: 15px;
    }
}
@media (max-width: 720px) {
    .topbar__container {
        justify-content: flex-start;
        padding-right: 50px;
    }
}

@media (max-width: 460px) {
    .mobile-menu-btns > a {
        font-size: 12px;
    }
    .header-menu li:not(:last-child) {
        margin-bottom: 18px;
    }
    .hp_hero-content {
        padding-bottom: 15px;
    }
}
@media (max-width: 370px) {
    .mobile-menu-btns {
        gap: 11px;
    }
}
@media (max-width: 340px) {
    .mobile-menu-btns {
        flex-direction: column;
    }
}

.one-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright.copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 700px) {
    .footer-copyright.copyright {
        position: static;
        transform: none;
    }
}
@media (max-width: 600px) {
    .one-row {
        display: contents;
    }
    .page_footer .copyright {
        margin: 5px 0;
    }
    .page_footer .footer_group {
        margin-bottom: 20px;
    }
}
.wpcf7-form .stepform__privacy {
    margin: -20px 0 20px 0;
}
/*20.01.2024*/
.winery .stepform__name::after, .company .stepform__name::after{display:none}
.select2-container--default .select2-selection--multiple{	
	background: var(--theme-grey-50) !important;
    border: none !important;
    border-radius: 99px !important;
    width: 100% !important;
    font-size: 13px;
    display: flex !important;
    align-items: center;
    height: 100% !important;
    padding: 10px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow{
	height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow{
	height: 100% !important;
    margin-right: 11px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8'?%3e%3csvg fill='none' viewBox='0 0 16 10' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m1 1 7 7 7-7' stroke='%23324C72' stroke-linecap='round' stroke-width='1.5'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center;
}
.select2-container:hover{
	cursor:pointer;
}
.select2-selection__desc{
	padding-bottom:13px;
}
.stepform__prev.theme_btn_1.outline{
	border: 1px solid var(--theme-blue);
    color: var(--theme-blue);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.57;
    padding: 8.5px 30px;
    width: 190px;
    max-width: 100%;
    cursor: pointer;
    transition: all 0.2s;
	margin-right:10px;
}
.stepform__prev.theme_btn_1.outline:hover {
    background: var(--theme-blue);
    color: #fff;
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered{
	margin-bottom:5px;
}
body .uwy.userway_p3 .uai{bottom:100px!important;}