@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Roman.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Medium.woff2') format('woff2');
    font-weight: 550;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --black: #0F1B24;
    --green: #3FA420;
    --green-dark: #2C711A;
    --green-background: #DCF7D0;
    --light-green-background: #EFFCE9;
    --red: #F90000;
    ---white: #FFFFFF;
    --font-primary: "Helvetica", sans-serif;
    --width-container: 1600px;
    --trans: all .2s ease;
    --white-space-container: calc((100vw - var(--width-container)) / 2);
}

body {
    margin-top: 84px;
}

.temporarily-btn {
    display: inline-block;
    outline: none;
    text-decoration: none;
    padding: 19px 24px 17px;
    line-height: 1;
    background-color: var(--green);
    color: var(---white);
    font-family: var(--font-primary);
    border: 0;
    font-weight: 550;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    text-align: center;
}

.temporarily-btn:hover {
    background-color: var(--green-dark);
}

.temporarily-btn:focus {
    background-color: #275A1A;
}

.temporarily-btn-transparent {
    background-color: transparent;
    color: var(--green);
    outline: 1px solid var(--green);
}

.temporarily-btn-transparent:hover,
.temporarily-btn:focus {
    background-color: transparent;
    color: var(--green-dark);
    outline: 1px solid var(--green-dark);
}

.temporarily-btn-white {
    background-color: #FFF;
    outline: 1px solid #FFF;
    color: var(--black);
}

.temporarily-btn-white:hover {
    background-color: #FFF;
    outline: 1px solid #FFF;
    color: var(--black);
    opacity: 0.8;
}

.temporarily-btn-white-transparent {
    background-color: transparent;
    outline: 1px solid #FFF;
    color: #FFF;
}

.temporarily-btn-white-transparent:hover {
    background-color: transparent;
    outline: 1px solid #FFF;
    color: #FFF;
    opacity: 0.8;
}

.temporarily-container {
    width: var(--width-container);
    margin-left: auto;
    margin-right: auto;
}

.temporarily-header {
    padding: 16px 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    border-bottom: 1px solid #F6F6F6;
    transition: var(--trans);
    font-family: var(--font-primary);
}

.temporarily-logo {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
}

.temporarily-logo-img {
    line-height: 0;
}

.temporarily-logo-text {
    margin-left: 7px;
    line-height: 0;
}

.temporarily-header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 24px 15px;
}

.temporarily-header-phone svg {
    margin-right: 8px;
    fill: var(--green);
    transition: var(--trans);
}

.temporarily-header-phone:hover svg {
    fill: var(--green-dark);
}

.temporarily-btn-calculator {
    color: var(--green);
    font-size: 16px;
    font-weight: 550;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 48px;
    font-family: var(--font-primary);
    transition: var(--trans);
}

.temporarily-btn-calculator:hover {
    color: var(--green-dark);
}

.temporarily-btn-calculator svg {
    margin-right: 8px;
    transition: var(--trans);
    fill: var(--green);
}

.temporarily-btn-calculator:hover svg {
    fill: var(--green-dark);
}

.temporarily-inp-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 4px;
}

.temporarily-inp {
    width: 100%;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    border-radius: 2px;
    border: 1px solid #CECECE;
    padding: 13px 16px;
    outline: none;
    font-family: var(--font-primary);
}

.temporarily-inp::placeholder {
    color: #ADADAD;
}

.temporarily-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.temporarily-header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 280px;
}

.temporarily-header-menu>li {
    list-style-type: none;
    margin-right: 40px;
}

.temporarily-header-menu>li:last-child {
    margin-right: 0;
}

.temporarily-header-menu li {
    list-style-type: none;
}

.temporarily-header-menu li a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.temporarily-header-menu li a,
.temporarily-header-menu-item-name {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--black);
    cursor: pointer;
}

.temporarily-header-menu>li,
.temporarily-header-menu-item-name {
    transition: var(--trans);
}

.temporarily-header-menu li a.current-page {
    pointer-events: none;
}

.temporarily-header-menu li a:hover,
.temporarily-header-menu li a.current-page,
.temporarily-header-menu>li:hover .temporarily-header-menu-item-name {
    color: var(--green);
}

.temporarily-item-has-submenu .temporarily-header-menu-item-name {
    position: relative;
    padding-right: 24px;
}

.temporarily-item-has-submenu .temporarily-header-menu-item-name::before {
    content: '';
    width: 13px;
    height: 7px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 13 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1L6.5 6L1 1" stroke="%230F1B24" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 9px;
    right: 0;
    transition: all .3s ease;
}

.temporarily-header-menu>li:hover .temporarily-header-menu-item-name::before {
    transform: rotate(-180deg);
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 13 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1L6.5 6L1 1" stroke="%233FA420" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.header-last {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.submenu {
    position: absolute;
    top: 50px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    /* visibility: visible !important; */
    padding-top: 35px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.temporarily-header-menu>li:hover .submenu {
    visibility: visible !important;
}


.submenu-wrapper {
    width: 100%;
    padding: 32px 0px;
    background-color: #F6F6F6;
}

.submenu-container {
    display: flex;
    justify-content: center;
}

.submenu li {
    padding: 8px 0;
}

.submenu-menu {
    border-right: 1px solid #BDEFA7;
    margin-right: 80px;
    padding-right: 16px;
}

.submenu-menu-columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 195px;
}

#menu-shipping-services {
    min-width: 664px;
}

.submenu-menu li {
    margin-right: 64px;
}

.submenu-menu__title {
    font-weight: 550;
}

.temporarily-header-menu>li:hover .submenu li a {
    transition: var(--trans);
}

.submenu li.current-menu-item a {
    color: var(--green);
    pointer-events: none;
}

.header-mobile,
.header-social {
    display: none;
}


/* Footer */
.temporarily-footer {
    background-color: var(--black);
    padding: 80px 0;
    color: #fff;
    font-family: var(--font-primary);
}

.temporarily-footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.temporarily-footer-left__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    max-width: 200px;
    margin: 24px 0 40px;
}

.temporarily-footer-social {
    display: flex;
}

.temporarily-footer-social__item {
    text-decoration: none;
    margin-right: 24px;
}

.temporarily-footer-social__item:last-child {
    margin-right: 0;
}

.temporarily-footer-social__item svg circle,
.temporarily-footer-social__item svg path {
    transition: var(--trans);
}

.temporarily-footer-social__item:hover svg circle {
    stroke: var(--green);
}

.temporarily-footer-social__item:hover svg path {
    fill: var(--green);
}

.temporarily-footer-right {
    display: flex;
}

.temporarily-footer-menus {
    display: flex;
}

.temporarily-footer-menus__item {
    margin-right: 88px;
}

.temporarily-footer-menus__item-title {
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    margin-bottom: 24px;
}

.temporarily-footer-menu {
    list-style-type: none;
}

.temporarily-footer-menu li {
    margin-bottom: 12px;
}

.temporarily-footer-menu li:last-child {
    margin-bottom: 0;
}

.temporarily-footer-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    transition: var(--trans);
}

.temporarily-footer-menu li a:hover,
.temporarily-footer-menu li a.current-page {
    color: var(--green);
}

.temporarily-footer-menu li a.current-page {
    pointer-events: none;
}

.decoration-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.temporarily-footer-buttons {
    display: flex;
    flex-direction: column;
}

.temporarily-footer-buttons .temporarily-btn {
    min-width: 162px;
}

.temporarily-footer-buttons .temporarily-btn:first-child {
    margin-bottom: 16px;
}

.temporarily-footer-buttons .temporarily-btn-white:hover {
    background-color: var(--green-dark);
    outline: 1px solid var(--green-dark);
    color: var(---white);
    opacity: 1;
}

.temporarily-footer-copyright {
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}



/* Popup */
.temporarily-popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: var(--trans);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.temporarily-popup::-webkit-scrollbar {
    display: none;
}

.temporarily-popup.active {
    visibility: visible !important;
    opacity: 1;
}

.temporarily-popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.temporarily-popup-title {
    color: #0F1B24;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
}

.temporarily-partner-popup-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
}

.temporarily-popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 5px;
    cursor: pointer;
}

.temporarily-popup-close__icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 19L19 1" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L19 19" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.temporarily-popup.active .temporarily-popup-close__icon {
    transition: all 0.3s ease;
}

.temporarily-popup-close:hover .temporarily-popup-close__icon {
    transform: rotate(-90deg);
}

.temporarily-popup-partner .temporarily-popup-wrapper {
    padding: 40px 32px;
    width: 672px;
}

.temporarily-popup-partner__text {
    margin: 12px 0 32px;
    line-height: 150%;
}

.temporarily-partner-form__btn {
    text-align: center;
}

.temporarily-popup-consent {
    margin: 16px 0 32px;
}

.temporarily-popup-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.temporarily-popup-consent label {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding-left: 28px;
    position: relative;
    display: flex;
    cursor: pointer;
    border: 1px solid transparent;
}

.temporarily-popup-consent label::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="15" height="15" rx="1.5" stroke="%23CECECE"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 2px;
    left: 0;
}

.temporarily-popup-consent input:checked+label::before {
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="15" height="15" rx="1.5" stroke="%233FA420"/><path d="M3.07153 7.14286L6.92868 11L12.9287 5" stroke="%233FA420" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.temporarily-popup-consent input.error-text+label {
    border: 1px solid var(--red);
}

.temporarily-partner-form__item {
    margin-bottom: 20px;
    position: relative;
}

.temporarily-partner-form textarea {
    min-height: 50px;
    height: 150px;
    resize: none;
}

.error-hint {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 550;
    line-height: 150%;
    margin-top: 2px;
    border: none !important;
}

.response-output {
    display: none;
    margin-bottom: 16px;
    padding: 15px;
    margin-top: 12px;
}

.response-output.failed {
    display: block;
    border: 1px solid red;
}

.response-output.sent {
    display: block;
    border: 1px solid #46b450;
}

.temporarily-popup-thank .temporarily-popup-wrapper {
    padding: 40px 32px;
    width: 576px;
}

.temporarily-popup-thank__img {
    text-align: center;
    margin-bottom: 32px;
}

.temporarily-popup-thank__img img {
    max-width: 384px;
    height: auto;
}

.temporarily-popup-thank__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    text-align: center;
}

.temporarily-popup-thank__separator {
    margin: 24px 0;
    border-bottom: 1px solid rgba(15, 27, 36, 0.20);
}

.temporarily-popup-thank__text {
    font-size: 14px;
    line-height: 150%;
}

.temporarily-popup-thank__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.temporarily-popup-thank__buttons .temporarily-btn {
    width: calc(50% - 8px);
}

.call-box .temporarily-btn-transparent {
    min-width: 200px;
    margin-right: 24px;
}

.temporarily-popup-call {
    padding: 20px 0;
}

.temporarily-popup-call .temporarily-popup-wrapper {
    width: 612px;
    padding: 40px 32px;
    border-radius: 8px;
    margin-top: auto;
    margin-bottom: auto;
}

.temporarily-popup-call__image {
    text-align: center;
    line-height: 0;
    margin-bottom: 32px;
}

.temporarily-popup-call__image img {
    max-width: 240px;
    height: auto;
}

.temporarily-popup-call__title {
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
}

.temporarily-popup-call__text {
    line-height: 140%;
    text-align: center;
    margin-top: 12px;
}

.temporarily-popup-call__separator {
    width: 100%;
    border-bottom: 1px solid #BDEFA7;
    margin: 24px 0;
}

.temporarily-popup-call__list {
    margin: 24px 0 32px;
    padding: 27px 64px;
    border-top: 1px solid #BDEFA7;
    border-bottom: 1px solid #BDEFA7;
}

.temporarily-popup-call__list li {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.temporarily-popup-call__list li:last-child {
    margin-bottom: 0;
}

.temporarily-popup-call__list li strong {
    color: #BDEFA7;
    font-size: 24px;
    line-height: 0.8;
    font-weight: 550;
    width: 21px;
    margin-right: 15px;
}

.temporarily-popup-call__list li svg {
    margin-right: 12px;
    min-width: 24px;
}

.maybe-later {
    font-size: 16px;
    color: var(--green);
    text-decoration: none;
    font-weight: 550;
    margin-top: 8px;
    display: inline-block;
    padding: 17px;
    cursor: pointer;
    transition: var(--trans);
}

.maybe-later:hover {
    opacity: 0.7;
}

.fill-form {
    display: none;
    margin-top: 16px;
}

.temporarily-popup-call__smalltext {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}

.temporarily-popup-call-thank {
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

.temporarily-popup-call-thank .temporarily-popup-call__text {
    font-size: 20px;
}

.temporarily-popup-call-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temporarily-popup-call-buttons {
    display: flex;
    justify-content: space-between;
}

.temporarily-popup-call-thank__text {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 32px;
}

.temporarily-popup-call-buttons .temporarily-btn {
    width: calc(50% - 8px);
}

.temporarily-popup-call__btn {
    min-width: 210px;
}



#loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader.active {
    visibility: visible;
}

.loading {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green);
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}


@media screen and (max-width: 1640px) {
    :root {
        --width-container: 1400px;
    }

    .temporarily-header-menu {
        margin-left: 80px;
    }
}

@media screen and (max-width: 1439px) {
    :root {
        --width-container: 1170px;
    }

    .temporarily-header-menu {
        margin-left: 0px;
    }

    .temporarily-btn-calculator {
        margin-right: 20px;
    }

    .temporarily-header-menu>li {
        margin-right: 24px;
    }

    .temporarily-footer-menus__item {
        margin-right: 36px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --width-container: 960px;
    }

    .temporarily-btn-calculator {
        display: none;
    }

    .temporarily-footer-wrapper {
        flex-wrap: wrap;
    }

    .temporarily-footer-left {
        order: 1;
        margin-top: 80px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .temporarily-footer-right {
        justify-content: space-between;
        width: 100%;
    }

    .temporarily-footer-menus__item {
        margin-right: 40px;
    }

    .temporarily-footer-copyright {
        margin-top: 40px;
    }
}

@media screen and (max-width: 1023px) {
    :root {
        --width-container: 720px;
    }

    body {
        margin-top: 72px;
    }

    .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 52px;
    }

    .temporarily-header {
        padding: 9.5px 0;
    }

    .temporarily-header-wrapper .temporarily-logo {
        display: none;
    }

    .temporarily-header-wrapper {
        z-index: 99;
        position: fixed;
        top: 69px;
        height: 100%;
        min-height: 100%;
        right: -1000px;
        width: 100%;
        background: #fff;
        transition: all .3s;
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 0 64px;
        overflow-y: scroll;
        border-top: 1px solid #F6F6F6;
    }

    .temporarily-header-wrapper.active {
        right: 0;
    }

    .temporarily-burger-menu {
        display: block;
        width: 32px;
        height: 24px;
        transform: rotate(0deg);
        transition: 0.3s ease-in-out;
        cursor: pointer;
        z-index: 3;
    }

    .temporarily-burger-menu span {
        display: block;
        position: absolute;
        width: 100%;
        z-index: 100;
        opacity: 1;
        right: 0;
        transform: rotate(0deg);
        transition: 0.35s ease-in-out;
        height: 1.76px;
        background-color: var(--black);
        border-radius: 36px;
    }

    .temporarily-burger-menu span:nth-child(1) {
        top: 0;
        width: 24px;
    }

    .temporarily-burger-menu span:nth-child(2),
    .temporarily-burger-menu span:nth-child(3) {
        top: 11px;
    }

    .temporarily-burger-menu span:nth-child(4) {
        top: 22px;
        width: 16px;
    }

    .temporarily-burger-menu.active span:nth-child(1) {
        top: 8px;
        width: 0%;
        right: 50%;
    }

    .temporarily-burger-menu.active span:nth-child(2) {
        top: 9px;
        transform: rotate(45deg);
    }

    .temporarily-burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .temporarily-burger-menu.active span:nth-child(4) {
        top: 8px;
        width: 0%;
        right: 50%;
    }

    .temporarily-header-menu {
        flex-direction: column;
        align-items: flex-start;
        width: var(--width-container);
    }

    .submenu {
        z-index: -1;
        opacity: 0;
        position: absolute;
        padding-top: 0;
        padding-bottom: 32px;
        border-bottom: 1px solid #BDEFA7;
        transition: none;
    }

    #menu-shipping-services {
        min-width: auto;
    }

    .submenu li a {
        transition: none;
    }

    .temporarily-item-has-submenu.active .submenu {
        visibility: visible !important;
        z-index: 2;
        opacity: 1;
        position: static;
    }

    .submenu-menu-columns {
        max-height: none;
    }

    .submenu-container {
        flex-direction: column;
    }

    .temporarily-header-menu>li {
        margin-right: 0;
        margin-bottom: 0px;
        margin-top: 32px;
    }

    .temporarily-header-menu li {
        width: 100%;
    }

    .submenu-menu {
        border-right: 0;
        margin-right: 0;
        padding-right: 0;
        padding-top: 16px;
    }

    .submenu-menu li,
    .submenu-last li {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .submenu-last li:last-child {
        margin-bottom: 0;
    }

    .temporarily-btn-calculator {
        display: flex;
        margin-right: 0;
        margin-bottom: 48px;
    }

    .header-last {
        width: var(--width-container);
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 0;
        margin: 32px 0;
        border-bottom: 1px solid #BDEFA7;
        border-top: 1px solid #BDEFA7;
    }

    .submenu-last:not(.submenu-padding) {
        margin-top: 16px;
    }

    .temporarily-header-menu>li>a,
    .temporarily-header-menu-item-name {
        font-size: 18px;
    }

    .submenu-wrapper {
        padding: 0;
        background-color: transparent;
    }

    .submenu li a {
        font-size: 14px;
    }

    .submenu-menu__title {
        font-size: 15px;
    }

    .submenu-padding li:not(.submenu-menu__title) {
        padding-left: 16px;
    }

    .header-social {
        width: var(--width-container);
        display: flex;
        justify-content: flex-start;
    }

    .header-social__item {
        margin-right: 40px;
    }

    .temporarily-header-menu li a:hover,
    .temporarily-header-menu>li:hover .temporarily-header-menu-item-name {
        color: var(--black);
    }

    .temporarily-header-menu-item-name::before {
        display: none;
    }

    .temporarily-header-menu .temporarily-item-has-submenu {
        position: relative;
        margin-top: 0;
    }

    .temporarily-item-has-submenu::before {
        content: '';
        width: 24px;
        height: 25px;
        background-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5V20.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/><path d="M4 12.5L20 12.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/></svg>');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 20px;
        right: 0;
        pointer-events: none;
    }

    .temporarily-item-has-submenu.active::before {
        background-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12.5L20 12.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/></svg>');
    }

    .temporarily-item-has-submenu .temporarily-header-menu-item-name {
        padding-right: 40px;
        padding: 20px 0;
        border-bottom: 1px solid #BDEFA7;
    }

    .temporarily-header-menu-item-name {
        width: 100%;
        padding: 8px 0;
    }

    .temporarily-footer-right,
    .temporarily-footer-menus {
        flex-wrap: wrap;
    }

    .temporarily-footer-menus {
        justify-content: space-between;
    }

    .temporarily-footer-menus__item {
        margin-right: 0;
        margin-left: 100px;
        margin-bottom: 40px;
    }

    .temporarily-footer-menus__item:first-child,
    .temporarily-footer-menus__item:last-child {
        margin-left: 0;
    }

    .temporarily-footer-buttons {
        margin-left: auto;
        margin-top: -140px;
        flex-direction: row;
        align-items: center;
    }

    .temporarily-footer-buttons .temporarily-btn:first-child {
        margin-bottom: 0;
        margin-right: 16px;
    }

    .head .call-box {
        justify-content: center;
    }

    .ready-block .call-box .temporarily-btn-transparent {
        min-width: auto;
    }

    .call-box .temporarily-btn-transparent {
        margin-right: 16px;
    }
}


@media screen and (max-width: 767px) {
    :root {
        --width-container: 540px;
    }

    .temporarily-footer-menus__item {
        margin-left: 50px;
    }

    .temporarily-footer-buttons {
        flex-direction: column;
    }

    .temporarily-footer-buttons .temporarily-btn:first-child {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .temporarily-footer-left {
        margin-top: 60px;
    }

    .temporarily-footer-left__text {
        margin: 24px 0 0px;
    }

    .temporarily-footer {
        padding: 64px 0;
    }

    .call-box {
        justify-content: center;
    }

    .ready-block .call-box .temporarily-btn-transparent {
        min-width: 200px;
    }

    .temporarily-popup-call .temporarily-popup-wrapper {
        width: 556px;
        max-width: calc(100% - 30px);
        padding: 40px 24px;
    }

    .temporarily-popup-call__image img {
        max-width: 200px;
    }

    .temporarily-popup-call__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 574px) {
    :root {
        --width-container: 380px;
    }

    .temporarily-header-wrapper {
        padding: 32px 0;
    }

    .temporarily-btn {
        width: 100%;
    }

    .header-mobile .temporarily-header-phone {
        padding: 0;
        outline: none !important;
        min-height: auto;
        width: auto;
    }

    .header-social {
        justify-content: space-between;
    }

    .header-social__item {
        margin-right: 0;
    }

    .temporarily-footer-buttons {
        order: -1;
        margin-top: 0;
        width: 100%;
    }

    .temporarily-footer-buttons .temporarily-btn:first-child {
        margin-bottom: 24px;
    }

    .temporarily-footer-menus {
        margin-top: 40px;
    }

    .temporarily-footer-menus__item {
        margin-left: 0px;
        width: 180px;
    }

    .temporarily-footer-left {
        margin-top: 20px;
    }

    .temporarily-footer-left {
        flex-direction: column-reverse;
    }

    .temporarily-footer-social {
        margin-bottom: 48px;
    }

    .temporarily-footer-left__text {
        max-width: 100%;
    }

    .call-box {
        flex-direction: column-reverse;
    }

    .call-box .temporarily-btn-transparent {
        margin-right: 0;
        margin-top: 16px;
    }

    .temporarily-popup-call-main .temporarily-popup-call__image {
        display: none;
    }

    .temporarily-popup-call .temporarily-popup-wrapper {
        padding: 48px 16px 16px;
    }

    .temporarily-popup-close {
        top: 16px;
        right: 16px;
    }

    .temporarily-popup-call-main .temporarily-popup-call__title {
        text-align: left;
        max-width: 310px;
    }

    .temporarily-popup-call-main .temporarily-popup-call__text {
        text-align: left;
    }

    .temporarily-popup-call__list {
        padding: 24px 0;
    }

    .temporarily-popup-call__list li {
        align-items: flex-start;
    }

    .temporarily-popup-call__list li strong {
        margin-right: 11px;
    }

    .fill-form {
        display: inline-block;
    }

    .temporarily-popup-call-buttons {
        flex-direction: column-reverse;
    }

    .temporarily-popup-call-buttons .temporarily-btn {
        width: 100%;
    }

    .temporarily-popup-call-buttons .temporarily-btn:last-child {
        margin-bottom: 16px;
    }
}


@media screen and (max-width: 410px) {
    :root {
        --width-container: calc(100% - 30px);
    }

    .temporarily-footer-menus__item {
        width: auto;
        width: 48%;
    }

    .header-mobile .temporarily-header-phone {
        font-size: 14px;
    }

    .temporarily-footer-menus__item:last-child {
        width: 100%;
    }

    .temporarily-popup-call__title {
        font-size: 22px;
    }

    .temporarily-popup-call-main .temporarily-popup-call__title {
        font-size: 20px;
    }

    .temporarily-popup-call-thank .temporarily-popup-call__text {
        font-size: 18px;
    }
}


@media screen and (max-width: 359px) {

    .header-mobile .temporarily-header-phone {
        font-size: 13px;
    }

    .header-mobile .temporarily-header-phone svg {
        display: none;
    }

    .temporarily-popup-call__image {
        display: none;
    }

    .temporarily-popup-call__title {
        font-size: 20px;
    }

    .temporarily-popup-call-thank .temporarily-popup-call__text {
        font-size: 16px;
    }
}