@font-face {
    font-family: 'PFDinDisplayPro';
    src: url('../fonts/PFDinDisplayPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PFDinDisplayPro';
    src: url('../fonts/PFDinDisplayPro-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PFDinDisplayPro';
    src: url('../fonts/PFDinDisplayPro-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PFDinDisplayPro';
    src: url('../fonts/PFDinDisplayPro-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PFDinDisplayPro';
    src: url('../fonts/PFDinDisplayPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

.em-df {
    display: flex;
}

.em-df-inline {
    display: inline-flex;
}

/* Direction */
.em-fd-row {
    flex-direction: row;
}

.em-fd-column {
    flex-direction: column;
}

.em-fd-row-reverse {
    flex-direction: row-reverse;
}

.em-fd-column-reverse {
    flex-direction: column-reverse;
}

/* Justify Content */
.em-jc-start {
    justify-content: flex-start;
}

.em-jc-end {
    justify-content: flex-end;
}

.em-jc-center {
    justify-content: center;
}

.em-jc-between {
    justify-content: space-between;
}

.em-jc-around {
    justify-content: space-around;
}

.em-jc-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.em-ai-start {
    align-items: flex-start;
}

.em-ai-end {
    align-items: flex-end;
}

.em-ai-center {
    align-items: center;
}

.em-ai-stretch {
    align-items: stretch;
}

.em-ai-baseline {
    align-items: baseline;
}

/* Align Content */
.em-ac-start {
    align-content: flex-start;
}

.em-ac-end {
    align-content: flex-end;
}

.em-ac-center {
    align-content: center;
}

.em-ac-between {
    align-content: space-between;
}

.em-ac-around {
    align-content: space-around;
}

.em-ac-stretch {
    align-content: stretch;
}

/* Flex Wrap */
.em-fw-wrap {
    flex-wrap: wrap;
}

.em-fw-nowrap {
    flex-wrap: nowrap;
}

.em-fw-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Gap */
.em-gap-5 {
    gap: 5px;
}

.em-gap-10 {
    gap: 10px;
}

.em-gap-15 {
    gap: 15px;
}

.em-gap-20 {
    gap: 20px;
}

.em-gap-30 {
    gap: 30px;
}

.em-gap-40 {
    gap: 40px;
}

/* Row Gap */
.em-rg-10 {
    row-gap: 10px;
}

.em-rg-15 {
    row-gap: 15px;
}

.em-rg-20 {
    row-gap: 20px;
}

/* Column Gap */
.em-cg-10 {
    column-gap: 10px;
}

.em-cg-15 {
    column-gap: 15px;
}

.em-cg-20 {
    column-gap: 20px;
}

/* Flex Items */
.em-f-1 {
    flex: 1;
}

.em-f-auto {
    flex: auto;
}

.em-f-0 {
    flex: 0;
}

/* Flex Grow */
.em-fg-0 {
    flex-grow: 0;
}

.em-fg-1 {
    flex-grow: 1;
}

/* Flex Shrink */
.em-fs-0 {
    flex-shrink: 0;
}

.em-fs-1 {
    flex-shrink: 1;
}

/* Flex Basis */
.em-fb-auto {
    flex-basis: auto;
}

.em-fb-0 {
    flex-basis: 0;
}

/* Align Self */
.em-as-start {
    align-self: flex-start;
}

.em-as-end {
    align-self: flex-end;
}

.em-as-center {
    align-self: center;
}

.em-as-stretch {
    align-self: stretch;
}

.em-as-auto {
    align-self: auto;
}

/* Order */
.em-order-1 {
    order: 1;
}

.em-order-2 {
    order: 2;
}

.em-order-3 {
    order: 3;
}

.em-order-first {
    order: -1;
}

.em-order-last {
    order: 999;
}
/* Define globally */
:root {
    --dark-blue: #101820;
    --main: #1A1817;
    --yellow: #f1e85b;
    --green: #009874;
}

body {
    font-family: 'PFDinDisplayPro';
}
* {
    box-sizing: border-box;
}
a, a:hover {
    transition: .25s;
}
.em-container {
    width: 1573px;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
}
.em-header {
    background: var(--main);
    padding: 15px 0;
}

.em-header__top {
    text-align: right;
    margin-bottom: 10px;
}

.em-header__top ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.em-header__top li {
    padding: 0 15px;
}

.em-header__top li:last-child {
    padding-right: 0;
}

.em-header__top li a {
    color: #fff;
    text-decoration: none;
}

.em-header__top li a:hover {
    color: #707070;
}

.em-header__main {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.em-header__logo img {
    width: auto;
    height: 91px;
}

.em-header__logo a {
    display: inline-block;
}


.em-header__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.em-header__menu > ul {
    display: flex;
    flex-wrap: wrap;
}

.em-header__menu ul .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 999;
    min-width: 220px;
    top: 100%;
    left: 0;
    white-space: nowrap;
    box-shadow: 0 10px 30px 0 rgba(45,45,45,.2);
    border: 1px solid #fff;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateY(-20px);
}

.em-header__menu .menu > li {
    height: 80px;
}

.em-header__menu li a {
    color: #fff;
    text-decoration: none;
    transition: .25s;
    background: var(--dark-blue);
    padding: 11px 11px 11px 11px;
    font-size: 20px;
    display: flex;
    padding: 15px;
    height: 100%;
    align-items: center;
    white-space: nowrap;
}

.em-header__menu i {
    font-size: 15px;
    margin-left: 3px;
}

.em-header__menu .menu > li:hover > a {
    color: #707070;
    background: var(--main);
}

.em-header__menu li:hover {
    color: #707070;
    background: var(--main);
}

.em-header__menu .menu-item-has-children {
    position: relative;
}

.em-header__menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: .4s;
    transform: translateY(0);
}

.em-header__menu .menu-item-has-children .sub-menu a {
    font-size: 18px;
    padding: 15px;
}

.em-header__menu .menu-item-has-children .sub-menu a:hover {
    color: #707070;
}



.em-btn,.em-btn-wrapper a {
    background-color: var(--green);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    border-radius: 18px 18px 18px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    text-decoration: none;
}

.em-btn:hover,.em-btn-wrapper a:hover {
    opacity: 0.7;
}

.language-switcher {
    position: relative;
    display: inline-block;
    background: var(--dark-blue);
}

/*.language-switcher:hover {*/
/*    background: #d9d9d9;*/
/*}*/

.lang-current {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: #ffffff;
    gap: 6px;
    font-size: 19px;
    font-family: 'PFDinDisplayPro';
    border-radius: 4px;
}


.lang-current i {
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    border-radius: 4px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    font-size: 19px;
    color: #fff;
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.language-switcher:hover i {
    transform: rotate(180deg);
    transition: .3s;
}

.lang-option {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #d9d9d9;
}

.em-footer {
    background: var(--main);
}

.em-footer__top {
    padding: 75px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #8a8d8f;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.em-footer__bottom {
    padding: 40px 0;
    align-items: center;
}

.em-footer__contacts {
    padding: 10px;
}

.em-footer__contacts h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 19px;
    margin-top: 0;
}

.em-footer__contacts a {
    color: var(--yellow);
    text-decoration: none;
    font-size: 21px;
}

.em-footer__copyright {
    color: #ffffff;
    font-size: 20px;
}

.em-footer__bottom {
    display: flex;
    justify-content: space-around;
}

.em-footer__bottom p {
    margin: 0;
}

.em-df {
    display: flex;
}

.em-banner {
    display: flex !important;
}

.em-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.em-banner__image {
    width: 900px;
    height: 650px;
    max-width: 70%;
}

.em-banner h1 {
    font-size: 50px;
    margin: 0;
}

.em-banner__content p {
    font-size: 25px;
}

.em-twocols-text {
    font-size: 22px;
}

.em-twocols-text h2 {
    font-size: 40px;
    margin: 0;
}

.em-twocols-text p:first-child {
    margin-top: 0;
}

.em-section {
    margin: 100px 0;
}

.em-twocols__col {
}

.em-twocols__col h2 {
    font-size: 40px;
    margin-top: 0;
}


.em-twocols__col ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.em-twocols__col ul ul {
    padding-left: 25px;
}

.em-twocols__col > ul > li {
    padding: 10px 0;
}

.em-twocols__col > ul ul li{
    padding: 5px 0;
}


.em-twocols__col > ul > li > ul li:last-child {
    padding-bottom: 0;
}

.em-twocols__col p span {
    font-size: 50px;
}

.em-twocols__col ul li {
    position: relative;
    padding-left: 35px;
}

.em-twocols__col ul li::before {
    border: 4px solid #44464a;
    border-radius: 50%;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: 8px;
    margin: 0 20px 0 0;
    width: 8px;
    position: absolute;
    left: 0;
    top: 11px;
}

.em-twocols__col ul ul li::before {
    top: 12px;
    border: none;
    background: #44464a;
    height: 6px;
    width: 6px;
    left: -15px;
}


.em-twocols__notice {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.em-twocols__notice span {
    font-size: 56px;
    margin-right: 5px;
    padding-top: 3px;
}

.bd-and-shadowed {
    border: 2px solid #44464a;
    border-radius: 30px;
    box-shadow: 10px 10px 13px rgba(16,24,32,.5);
    padding: 47px 40px 34px;
    background: #fff;
}

.wpcf7 .bd-and-shadowed {
    margin: 0 0 20px;
    padding: 20px;
}


.wpcf7 .bd-and-shadowed > * {
    margin: 0;
}

.em-prerequest__inner {
    font-size: 16px;
}


.em-prerequest__inner h2,
.em-prerequest__inner h3 {
    font-size: 22px;
}

.em-prerequest h2 {
    font-size: 40px;
}

.em-prerequest__inner *:first-child {
    margin-top: 0;
}

.em-form__field label {
    color: var(--green);
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin: 0 0 30px;
    padding: 12px 8px 0;
    transition: all .3s;
    transition: .25s;
}

.em-form__field.has-error label {
    border: 1px solid red;
}

.wpcf7-form-control-wrap[data-name*="file"] {
    position: static;
}

.em-form__field.em-form__file {
    margin-bottom: 40px;
}

.em-form__field.em-form__file .wpcf7-not-valid-tip {
    bottom: -20px;
}

.label-text {
    display: inline-block;
}

.em-form__textarea .label-text {
    padding-right: 80px;
}

.em-form__textarea .wpcf7-not-valid-tip {
    bottom: -20px;
}

.select2-container {
    max-width: 100%;
}

.em-form__field input,
.em-form__field select,
.em-form__field .select2-container .select2-selection--single {
    background-color: #fff;
    border: 0;
    font-size: 16px;
    height: 40px;
    padding: 0;
    width: 100%;
    outline: none !important;
    font-family: "PFDinDisplayPro";
}

.select2-container--default .select2-results>.select2-results__options {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 #63636333;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 6px 0 6px;
    top: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 6px 6px;
}

.select2-container--open .select2-dropdown--below {
    border: none !important;
}


.em-form__field.focused label {
    border: 1px solid var(--green);
    transition: .25s;
}

.em-form__field.has-error {
    margin-bottom: 30px;
}

.em-form__field textarea {
    background-color: #fff;
    border: 0;
    font-size: 16px;
    height: 100px;
    resize: none;
    width: 100%;
    outline: none !important;
    font-family: "PFDinDisplayPro";
    margin: 5px 0;
}


.em-form__field {
    position: relative;
}

.em-required {
    color: red;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    font-size: 14px;
}

.wpcf7-submit.em-btn {
    border: none !important;
    outline: none !important;
    cursor: pointer;
    display: flex;
    margin-left: auto;
}

.wpcf7-submit.em-btn[disabled] {
    opacity: .4;
}

.wpcf7-acceptance {
    font-size: 16px;
    line-height: 23px;
    display: block;
    margin-bottom: 15px;
}


.wpcf7-acceptance input {
    display: none !important;
}


.wpcf7-acceptance {
    padding-left: 20px;
}

.wpcf7-acceptance .wpcf7-list-item-label::before {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    display: none;
    height: 8px;
    left: 8px;
    position: absolute;
    top: 5px;
    transform: rotate(45deg);
    width: 4px;
    z-index: 3;
}

.wpcf7-acceptance .wpcf7-list-item-label::after {
    background-color: none;
    border: 1px solid #cecece;
    border-radius: 4px;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 20px;
    content: "";
}


.wpcf7-acceptance input:checked +  .wpcf7-list-item-label::before {
    display: block;
}
.wpcf7-acceptance input:checked +  .wpcf7-list-item-label::after {
    background-color: var(--green);
}

.wpcf7-response-output {
    margin: 0 !important;
    border: none !important;
    text-align: center;
    font-size: 19px;
    font-style: italic;
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: red;
}

/* Contact Form 7 Success Popup */
.wpcf7-response-output {
    display: none !important;
}

.cf7-success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 560px;
    max-width: calc(100% - 30px);
    border-radius: 22px;
    background: rgba(16, 24, 32, 0.92);
    backdrop-filter: blur(18px);
    color: #fff;
    box-shadow:
            0 10px 40px rgba(0,0,0,0.35),
            0 0 0 1px rgba(255,255,255,0.06);
    z-index: 99999;
    overflow: hidden;
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s cubic-bezier(.19,1,.22,1);
    font-family: inherit;
    text-align: center;
    padding: 50px;
}

.cf7-success-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1);
}

.cf7-success-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    135deg,
                    rgba(0,255,180,0.12),
                    rgba(0,150,255,0.08)
            );
    pointer-events: none;
}

.cf7-success-popup .icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    box-shadow: 0 10px 25px rgba(0,214,143,0.35);
    animation: popupPulse 2s infinite;
    margin: 0 auto;
    margin-bottom: 38px;
}

.cf7-success-popup .icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.cf7-success-popup h3 {
    margin: 0 0 30px;
    font-size: 28px;
    font-weight: 700;
}

.cf7-success-popup p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    font-size: 20px;
}

.cf7-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #00d68f, #00a3ff);
    transform-origin: left;
    animation: popupTimer 5s linear forwards;
}

@keyframes popupTimer {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@keyframes popupPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@media (max-width: 480px) {
    .cf7-success-popup {
        left: 15px;
        right: 15px;
        width: auto;
        top: 15px;
    }
}

/* close button hidden at first */
.cf7-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.7) rotate(-90deg);

    transition:
            background 0.25s ease,
            transform 0.35s cubic-bezier(.19,1,.22,1),
            color 0.25s ease,
            opacity 0.35s ease;
}

/* button appears after timer */
.cf7-success-popup.can-close .cf7-popup-close {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.cf7-popup-close:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
    transform: scale(1.08) rotate(90deg);
}

.cf7-popup-close:active {
    transform: scale(0.95);
}

.em-form__field {
    position: relative;
}

.textarea-counter {
    position: absolute;
    top: 12px;
    right: 14px;
    border-radius: 5px;
    background: var(--green);
    padding: 5px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    font-family: "PFDinDisplayPro", sans-serif;
    color: #fff;
    pointer-events: none;
    transition: 0.2s ease;
}

/* Chrome / Edge / Safari */
textarea::-webkit-scrollbar {
    width: 10px !important;
}

textarea::-webkit-scrollbar-track {
    background: var(--green) !important;
    border-radius: 999px !important;
}

textarea::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.28) !important;
    border-radius: 999px !important;
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(0,152,116,1) !important;
}

/* Firefox */
textarea {
    scrollbar-width: thin !important;
    scrollbar-color:
            rgba(0,152,116,.8)
            rgba(255,255,255,1) !important;
}

.menu-btn {
    width: 44px;
    height: 44px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
}

/* base lines */
.menu-btn span {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

/* exact vertical positioning */
.menu-btn span:nth-child(1) {
    top: 14px;
}

.menu-btn span:nth-child(2) {
    top: 21px;
}

.menu-btn span:nth-child(3) {
    top: 28px;
}

.menu-btn.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu__inner {
    background: #000;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    padding-top: 70px;
    width: 350px;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}



.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active .mobile-menu__inner {
    transform: translateX(0);
    transition-delay: 0.15s; /* slide AFTER fade */
}

.mobile-menu__inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__inner .menu ul {
    display: none;
}

.mobile-menu__inner a {
    padding: 10px 15px 10px 15px;
    color: var(--yellow);
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__inner a i {
    color: #fff;
    transition: .3s;
}

.mobile-menu__inner .sub-menu {
    margin-bottom: 10px;
}

.mobile-menu .menu-item-has-children .sub-menu a {
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,.5);
    font-size: 19px;
}

.mobile-menu .menu-item-has-children .active i {
    transform: rotate(180deg);
    transition: .3s;
}

.menu-close {
    width: 44px;
    height: 44px;
    position: absolute;
    background: transparent;
    border: none;
    top: 15px;
    right: 10px;
    cursor: pointer;
}

/* two crossing lines */
.menu-close::before,
.menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
}

.menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* optional hover */
.menu-close:hover {
    opacity: 0.7;
}

@media(max-width: 1399px) {
    .em-header__menu li a {
        font-size: 17px;
        padding: 10px;
    }
}

@media (max-width: 1199px) {
    .em-header__menu {
        display: none;
    }
    .em-banner h1 {
        font-size: 42px;
    }

    .em-banner__image {
        height: 500px;
    }

    .menu-btn {
        display: block;
    }

    .em-header__lang-menu {
        margin-right: auto;
    }

    .menu-btn {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .em-banner h1 {
        font-size: 38px;
    }

    .em-footer__top .em-footer__logo {
        flex: 0 0 100%;
        text-align: center;
    }

    .em-footer__contacts {
        flex: 0 0 50%;
        text-align: center;
    }

    .em-section {
        margin: 80px 0;
    }

    .em-twocols {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .em-banner,.em-twocols-text {
        flex-direction: column;
    }

    .em-footer__top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 40px 0;
    }

    .em-footer__contacts {
        text-align: left;
    }

    .em-footer__bottom {
        padding: 20px 0;
    }

    .em-header__top {
        display: none;
    }

    .em-header__main .em-btn {
        display: none;
    }

    .em-header__logo img {
        height: 70px;
    }

    .em-section {
        margin: 60px 0;
    }

    .em-banner h1 {
        font-size: 35px;
    }

    .em-banner__image {
        width: 100%;
        max-width: none;
        height: 400px;
    }

    .em-gap-40 {
        gap: 30px;
    }

    .em-btn {
        padding: 15px 30px;
        margin: 0 auto;
    }

    .bd-and-shadowed {
        padding: 20px;
    }

    .em-twocols__col h2 {
        font-size: 33px;
    }

    .em-twocols__col ul li {
        padding-left: 15px;
    }

    .em-twocols__col ul li::before {
        border: 2px solid #44464a;
        height: 5px;
        margin: 0 10px 0 0;
        width: 5px;
        top: 16px;
    }

    .em-twocols__notice span {
        font-size: 45px;
        padding-top: 0;
    }

    .em-form__field textarea {
        height: 200px;
    }

    .em-gap-20 {
        gap: 10px;
    }

}

@media (max-width: 600px) {

    .em-gap-40 {
        gap: 20px;
    }

    .em-twocols__col h2 {
        font-size: 25px;
    }

    .em-section {
        margin: 40px 0;
    }

    .em-header__main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .em-header__logo {
        flex: 0 0 100%;
        text-align: center;
    }

    .em-btn {
        width: 100%;
    }
}

@media (max-width: 500px) {
}