@charset "UTF-8";

@font-face {
    font-family: 'NeueHaasGroteskDisp Pro';
    src: url('/public/fonts/NHaasGroteskDSPro-65Md.woff2') format("woff2"), url('/public/fonts/NHaasGroteskDSPro-65Md.woff') format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'NeueHaasGroteskDisp Std';
    src: url('/public/fonts/NHaasGroteskDSStd-65Md.woff2') format("woff2"), url('/public/fonts/NHaasGroteskDSStd-65Md.woff') format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'NeueHaasGroteskDisp Pro';
    src: url('/public/fonts/NHaasGroteskDSPro-55Rg.woff2') format("woff2"), url('/public/fonts/NHaasGroteskDSPro-55Rg.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'NeueHaasGroteskDisp Std';
    src: url('/public/fonts/NHaasGroteskDSStd-55Rg.woff2') format("woff2"), url('/public/fonts/NHaasGroteskDSStd-55Rg.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #000;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: 'NeueHaasGroteskDisp Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #f3f3ff url('/public/img/bg.svg') fixed no-repeat right;

}

input, textarea, select {
    font-family: 'NeueHaasGroteskDisp Pro', sans-serif;
    -webkit-text-size-adjust: none;
    margin: 0;
    padding: 0;
}

a, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

* {
    box-sizing: border-box;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

img:before {
    content: 'AIS';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f90808;
    font-weight: 900;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

picture {
    display: block;
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    padding: 0;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

ul, ol, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    text-decoration: none;
}

a {
    color: #000;
    transition: color 0.3s;
}


button, button:hover, button:active, button:focus {
    border: inherit;
    outline: none;
}

b {
    font-weight: 600;
}

strong {
    font-weight: 900;
}

/* basic classes */
.no-overflow {
    overflow: hidden;
}

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

.right {
    text-align: right !important;
}

.left {
    text-align: left !important;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}


/* basic classes */
/* scroll library*/

.scroll::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.scroll_black::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_black::-webkit-scrollbar-thumb {
    background: #333;
}

.scroll_black::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.scroll_gold::-webkit-scrollbar-track {
    background: transparent;
}

.scroll_gold::-webkit-scrollbar-thumb {
    background: #826bef;
}

.scroll_gold::-webkit-scrollbar-thumb:hover {
    background: #826bef;
}

/* scroll library */

/* text colors */

.color-white {
    color: #fff !important;
}

.color-black {
    color: #000 !important;
}

.color-blue {
    color: #194cb3 !important;
}

.color-red {
    color: #f90808 !important;
}

.color-green {
    color: green !important;
}


/* text colors*/

/* FLEX */

/* flexbox libruary */

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

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

/* flexbox libruary */

/* buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: color .3s, background-color .3s, border-color .3s;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    transition: top .3s;
    z-index: 0;
}

.btn:hover:before {
    top: 0;
}

.btn_xl {
    height: 50px;
    padding: 0 30px;
    gap: 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    min-width: 200px;
}

.btn_xl:before {
    height: 50px;
}


.btn_rounded.btn_xl {
    border-radius: 27px;
}

.btn_xl svg {
    height: 24px;
    width: 24px;
}

.btn_md {
    height: 45px;
    border-radius: 7px;
    padding: 0 20px;
    font-size: 15px;
    gap: 7px;
}

.btn_md svg {
    height: 24px;
    width: 24px;
}

.btn_rounded.btn_md {
    border-radius: 22px;
    padding: 0 20px;
}

.btn_xs {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    gap: 5px;
    border-radius: 5px;
}

.btn_rounded.btn_xs {
    border-radius: 19px;
    padding: 0 20px;
}

.btn_xs svg {
    height: 18px;
    width: 18px;
}

.btn_xxs {
    height: 30px;
    border-radius: 6px;
    padding: 0 13px;
    font-weight: 500;
    gap: 3px;
    font-size: 14px;
}

.btn_rounded.btn_xxs {
    border-radius: 15px;
}

.btn_xxs svg {
    height: 14px;
    width: 14px;
}

.btn_black {
    background-color: #222;
    border-color: #222;
    color: #f6f9fe;
}

.btn_black:hover {
    background-color: #333;
    border-color: #333;
}

.btn_black svg {
    fill: #fff;
}

.btn_blue {
    background-color: #194cb3;
    border-color: #194cb3;
    color: #fff;
}

.btn_blue:hover {
    color: #000;
}

.btn_blue:before {
    background: yellow;
}

.btn_blue svg {
    fill: #fff;
}

.btn_gray {
    background-color: #eee;
    border-color: #eee;
    color: #666;
}

.btn_gray:hover {
    background-color: #ddd;
    border-color: #ddd;
    color: #555;
}

.btn_gray svg {
    fill: #666;
}


.btn_green {
    background-color: #1ba800;
    border-color: #1ba800;
    color: #f6f9fe;
    text-shadow: 0 1px 0 #106300;
}

.btn_green:hover {
    background-color: #106300;
    border-color: #106300;
}

.btn_green svg {
    fill: #fff;
}


.btn_red {
    background-color: #f90808;
    border-color: #f90808;
    color: #fff;
}

.btn_red:hover {
    background-color: #bd0808;
    border-color: #bd0808;
    color: #fff;
}

.btn_red svg {
    fill: #fff;
}

.btn_yellow {
    background-color: yellow;
    border-color: yellow;
    color: #000;
}

.btn_yellow:before {
    background: #fff;
}

.btn_yellow svg {
    fill: #000;
}


.btn_white {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #373737;
}

.btn_white:hover {
    background-color: #f6f9fe;
    color: #444;
}

.btn_white svg {
    fill: #373737;
}

.btn_bordered_white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn_bordered_white:before {
    background: yellow;
}

.btn_bordered_white:hover {
    border-color: yellow;
    background-color: transparent;
    color: #000;
}

.btn_bordered_blue {
    border: 1px solid #187ede;
    background: transparent;
    color: #187ede;
}

.btn_bordered_blue:hover {
    border-color: #1260a9;
    color: #1260a9;
}

.btn_bordered_blue svg {
    fill: #2d64d2;
}

.btn_bordered_red {
    border: 1px solid #f90808;
    background: #fff;
    color: #333;
}

.btn_bordered_red:hover {
    border-color: #bd0808;
    color: #444;
}

.btn_bordered_red svg {
    fill: #333;
}

.btn_transparent {
    color: #373737;
}

.btn_transparent:hover {
    color: #444;
}

.btn_transparent svg {
    fill: #373737;
}

.btn_pink {
    background-color: #ef5288;
    color: #fff;
}

.btn_pink:hover {
    background-color: #c74773;
}

.btn_pink svg {
    fill: #fff;
}

.btn_md_wide {
    width: 150px;
}

.btn_wide {
    width: 100%;
}

.btn_wa {
    color: white !important;
    background: #01ce5c;
}

.btn_wa:hover {
    background: #01a449;
}

.btn_tg {
    color: white !important;
    background: #0084c6;
}

.btn_tg:hover {
    background: #01699d;
}

.btn_vi {
    color: white !important;
    background: #705deb;
}

.btn_vi:hover {
    background: #5949bb;
}

/* buttons */


/* MODALS */

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    max-height: 100vh;

}

.modal-active, .mobile-menu__active {
    overflow: hidden;
    padding-right: 17px;
    top: 0;
    position: fixed;
    width: 100vw;
}

.modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.modal__container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    z-index: 2;
    width: 400px;
}

.modal__container_xs {
    width: 400px;
}

.modal__container_md {
    width: 600px;
}

.modal__container_xl {
    width: 960px;
}

.modal__close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    z-index: 1;
}

.modal__close svg {
    height: 24px;
    width: 24px;
    margin: auto;
    fill: #666;
}

.modal__header {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    padding: 15px 70px 15px 15px;
    border-bottom: 1px solid #eee;
}

.modal__container_xs .modal__header {
    border-bottom: none;
}

.modal__error {
    line-height: 1.4;
}

.modal__content {
    padding: 15px 15px 0 15px;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.modal__container_xs .modal__content {
    padding-top: 10px;
    max-height: calc(100vh - 130px);
}

.modal__content p {
    color: #151515;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* END MODALS */

/* CONTAINERS */
.container {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
    max-width: 100%;
}

.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

/* CONTAINERS */

/* overlay */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 10;
}

/* overlay */

/* loader */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader svg {
    width: 40px;
    height: 40px;
}

#loader path {
    fill: #14257b;
}

/* loader */
/* mobile menu */

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99999;
}

.mobile-menu.active {
    opacity: 1;
    left: 0;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.mobile-menu__container {
    display: flex;
    flex-direction: column;
    right: -300px;
    background: #14257b;
    width: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 0;
    transition: right 0.3s linear;
    overflow: auto;
}

.mobile-menu__container.active {
    right: 0;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: auto;
    padding-top: 70px;
    z-index: 1;
    flex: 1;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    height: 70px;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 10px;
}

.mobile-menu__logo {
    display: flex;
}

.mobile-menu__logo a {
    display: flex;
}

.mobile-menu__logo img {
    width: 50px;
    margin: auto 20px;
}

.mobile-menu__close {
    display: flex;
    margin-left: auto;
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 100000;
}
.mobile-menu__close svg {
    width: 32px;
    height: 32px;
    margin: auto;
    fill: #fff;
}

.mobile-menu__menu {
    flex: 1;
}

.mobile-menu__bottom {
    z-index: 2;
    padding: 20px;
    text-align: center;
}

.mobile-menu__bottom-title {
    margin-bottom: 5px;
    font-size: 14px;
}

.mobile-menu__bottom-phone {
    margin-bottom: 15px;
}

.mobile-menu--address {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mobile-menu--address a{
    color: #fff;
    font-weight: 400;
}

.mobile-menu__menu-link {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 45px;
    font-size: 18px;
    transition: opacity .3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* mobile menu */

/* inputs */

.input-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.input-checkbox label {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    transition: background-color .3s;
}

.input-checkbox input {
    opacity: 0;
    cursor: pointer;
    height: 1px;
    width: 1px;
}

.input-checkbox .checkmark {
    display: block;
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: .3s;
    border-radius: 3px;
    overflow: hidden;
}

.input-checkbox input:checked ~ .checkmark {
    border: 1px solid #f90808;
    background: #f90808;
}

.input-checkbox:hover .checkmark {
    border-color: #f90808;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_name {
    padding-left: 10px;
}


.input-checkbox .checkmark:after {
    left: 50%;
    top: calc(50% - 2px);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.1px 2.1px 0;
    transition: .3s;
}


.input-checkbox input:checked ~ .checkmark:after {
    display: block;
    opacity: 1;
}

.input-checkbox a {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
}

.input-wrap {
    position: relative;
    margin-bottom: 25px;
}

.input-wrap input {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    color: #000;
    line-height: 1.5;
    transition: border-color .3s;
    height: 50px;
    padding: 15px;
    font-size: 16px;
    border-radius: unset;
}

.input-wrap label {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-size: 14px;
}

.input-grey input {
    background: #f8f8f8;
}

.input-wrap input:disabled {
    background: #eee;
}

.input-wrap input:disabled:hover {
    cursor: not-allowed;
}

.input-wrap input:focus {
    border: 1px solid #bbb;
}

.input-wrap.error-wrap input {
    border-color: red;
}

.input-wrap.error-wrap input:focus + label, .input-wrap.error-wrap input:not(:placeholder-shown) + label {
    color: red;
}

.input-wrap__text {
    font-size: 14px;
    color: #666;
    text-align: left;
    line-height: 1.3;
}

.error-wrap__error {
    display: none;
}

.error-wrap .error-wrap__error {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    color: red;
    position: absolute;
    bottom: -15px;
    left: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.select-wrap {
    position: relative;
    margin-bottom: 15px;
}

.select-wrap:last-child {
    margin-bottom: 0;
}

.select-wrap select {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 5px;
    color: #000;
    line-height: 1.5;
    transition: border-color .3s;
}

.select-wrap select:focus {
    border: 1px solid #bbb;
}

.select-grey select {
    background: #f8f8f8;
}

.select-wrap.error-wrap select {
    border-color: red;
}

.select-wrap_xl select {
    font-size: 16px;
    padding: 10px 15px;
    height: 55px;
}

.textarea-wrap {
    position: relative;
    margin-bottom: 25px;
}

.textarea-wrap textarea {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    color: #000;
    line-height: 1.5;
    transition: border-color .3s;
    padding: 15px;
    font-size: 16px;
    resize: none;
}

.textarea-wrap label {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.textarea-gray textarea {
    background: #f8f8f8;
}

.textarea-wrap_xl textarea {
    height: 110px;
    max-height: 200px;
    padding: 20px 15px 10px 15px;
    line-height: 20px;
}

.textarea-wrap_xl textarea::placeholder {
    opacity: 0;
}

.textarea-wrap_xl label {
    position: absolute;
    display: flex;
    align-items: center;
    top: 1px;
    left: 10px;
    line-height: 51px;
    padding: 0 5px;
    color: #444;
    background: transparent;
    transition: top .3s, font-size .3s, line-height .3s, background-color 0.3s;
    cursor: text;
    font-size: 15px;
}

.textarea-wrap_xl textarea:focus + label, .textarea-wrap_xl textarea:not(:placeholder-shown) + label {
    display: inline-block;
    line-height: 14px;
    top: 7px;
    font-size: 12px;
    color: #9d9d9d;
}

.select-wrap_xs select {
    height: 40px;
    font-size: 14px;
    padding: 0 10px;
}

.select-wrap_xs label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.textarea-wrap_xs textarea {
    line-height: 15px;
    height: 40px;
    font-size: 14px;
    padding: 10px;
}

.textarea-wrap_xs label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.textarea-wrap.error-wrap textarea {
    border-color: red;
}

.textarea-wrap.error-wrap .error-wrap__error {
    font-size: 14px;
    margin-top: 5px;
    color: red;
}

.textarea-wrap-wide {
    flex: 1;
}

.regular-text {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'NeueHaasGroteskDisp Rg', sans-serif;
    margin-bottom: 20px;
}

.about-us--right .regular-text:last-child {
    margin-bottom: 0;
}

.about-us--right .btn {
    width: 100%;
}

/* INPUTS */


.form-response, .form-success, .form-error {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.3;
}

.form-success {
    color: green;
}

.form-error {
    color: red;
}

/* header */

header {
    position: relative;
    z-index: 3;
}

header .inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 70px;
}

.header-logo {
    margin-right: auto;
}

.header-logo a {
    display: block;
}

.header-logo svg {
    height: 20px;
    fill: #fff;
}

.main-menu {
    display: none;
}

.header-contact {
    display: none;
    margin-right: 30px;
}

/* header */

.social ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social ul li a {
    display: flex;
    transition: border-color .3s;
}

.social svg {
    fill: #000;
    width: 20px;
    height: 20px;
    margin: auto;
    transition: fill .3s;
}

.social a:hover svg {
    fill: yellow;
}

.section_sub_title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #a7a7a7;
    letter-spacing: 0.5px;
    opacity: 0.5;
    text-transform: uppercase;
}

.section_sub_title-bordered:before {
    content: '';
    display: block;
    height: 1px;
    width: 180px;
    background: #fff;
    margin: 15px 0;
}

.section_sub_title.center:before {
    margin-left: auto;
    margin-right: auto;
}

.input-wrap__group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: flex-end;
}

.input-wrap__group-3 {
    gap: 10px;
}

.input-wrap__group-2 {
    gap: 20px;
}

.input-wrap__group:last-child {
    margin-bottom: 0;
}

.input-wrap__group > div {
    margin-bottom: 0;
}

.input-wrap__group-2 > div {
    width: 100%;
}

.input-wrap__group-3 > div {
    width: 100%;
}

.input-wrap__group .button-wrap .btn {
    width: 100%;
}

.section_title {
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: .02em;
    line-height: 1.3;
}

.section_title-bordered {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #aeadad;
}

.section_title-xl {
    font-weight: 500;
    font-size: 36px;
}

.footer {
    background: #14257b;
}

.footer-bottom .inner {
    padding: 30px 0;
}

.footer-bottom--copy {
    font-family: 'NeueHaasGroteskDisp Rg', sans-serif;
    font-size: 14px;
    color: #fff;
}

.footer-top .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #747474;
}
.footer-main {
    display: none;
}
.footer-main .inner {
    border-bottom: 1px solid #747474;
    padding: 30px 0;
}
.footer-main .main-menu {
    margin-right: 0;
    padding: 0 15px
}
.footer-main .main-menu ul {
    justify-content: space-between;
}

.footer-logo img {
    height: 30px;
}

.footer-menu {
    flex: 1;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu ul li {
    text-align: center;
}

.footer-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-social svg {
    fill: #fff;
}

.footer-social a:hover svg {
    fill: yellow;
}

.footer-social--title {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer-bottom .inner {
    text-align: center;
}
.footer-logo svg {
    height: 35px;
    fill: #fff;
}

.not-found {
    background: #fff;
    padding: 40px 0;
    flex: 1;
}

.not-found h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.not-found h2 {
    margin-bottom: 15px;
}

#main-banner {
    margin-top: -110px;
    position: relative;
    background: #14257b;
}

#main-banner .inner {
    display: flex;
    height: 100vh;
    min-height: 400px;
}

.main-banner--left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    z-index: 1;
}


.main-banner--right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

#main-banner h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

#main-banner h1 span {
    display: block;
    letter-spacing: 1px;
}

.main-banner--right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

#about-us {
    margin: 50px 0;
}

#about-us .inner {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.about-us--left .btn {
    display: none;
}

.service-item {
    position: relative;
    color: #fff;
    margin-bottom: 20px;
}

.service-item .section_sub_title {
    color: #fff;
}

.service-item .inner {
    display: flex;
    flex-direction: column-reverse;
}

.service-item--left {
    position: relative;
    background: #14257b;
    padding: 20px;
    z-index: 1;
    border-radius: 10px;
    margin: 0 10px;
    transform: translateY(-100px);
    margin-bottom: -100px;
}

.service-item--right {
    overflow: hidden;
}

.service-item--right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 250px;
}


.service-item-2 .inner {
    flex-direction: column;
}

.service-item .btn {
    width: 100%;
}

#contact {
    background: #fff;
    padding: 50px 0;
    margin: 50px 0;
}

.contact-left {
    margin-bottom: 30px;
}

.contact-right {
    padding: 40px 20px;
    background: #14257b;
    border-radius: 10px;
}

.contact-right label {
    color: #fff;
}
.contact-right .btn {
    width: 100%;
}
.footer-slogan {
    color: #fff;
}

.footer-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    width: 100%;
}

.footer-top p {
    font-size: 16px;
    color: #ddd;
}

.footer-top p:last-child {
    margin-bottom: 0;
}

.footer-top p:first-child {
    margin-bottom: 10px;
}

.contact-social svg {
    fill: #14257b;
}

.header-burger {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 6px;
}

.header-burger span {
    display: block;
    height: 2px;
    background: #fff;
}

.header-burger span:nth-child(2n+1) {
    width: 30px;
}

.header-burger span:nth-child(2) {
    width: 22px;
}
.mobile-menu--social {
    margin-bottom: 20px;
}
.mobile-menu--social ul {
    justify-content: center;
}
.mobile-menu--social svg {
    fill: #fff;
}

/* animation */

.animation-up {
    transform: translateY(50px);
    opacity: 0;
}
.animation-opacity {
    opacity: 0;
}

.animation-down {
    transform: translateY(-50px);
    opacity: 0;
}
.animation-left {
    transform: translateX(50px);
    opacity: 0;
}

.animated.animation-down.animation-active, .animated.animation-up.animation-active {
    transition: transform 1s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.animated.animation-opacity.animation-active{
    transition: opacity 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 1;
}

/* animation */
