@charset "UTF-8";

:root {
    --color-primary: #f90808;
    --color-primary-hover: #bd0808;
    --color-yellow: #ffcc00;
    --color-link: #f90808;
    --color-link-hover: #bd0808;
    --primary-button-background: #f90808;
}


@font-face {
    font-family: 'Circe', Arial, Helvetica, sans-serif;
    src: url('/public/fonts/FuturaPT-Heavy.eot');
    src: local('Futura PT Heavy'), local('FuturaPT-Heavy'),
    url('/public/fonts/FuturaPT-Heavy.eot?#iefix') format('embedded-opentype'),
    url('/public/fonts/FuturaPT-Heavy.woff') format('woff'),
    url('/public/fonts/FuturaPT-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Regular.woff") format("woff"),
    url("/public/fonts/Circe-Regular.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-ExtraLight.woff") format("woff"),
    url("/public/fonts/Circe-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Light.woff") format("woff"),
    url("/public/fonts/Circe-Light.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-Bold.woff") format("woff"),
    url("/public/fonts/Circe-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: 'Circe';
    src: url("/public/fonts/Circe-ExtraBold.woff") format("woff"),
    url("/public/fonts/Circe-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
    font-style: normal
}

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: 'Circe', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
}

input, textarea, select {
    font-family: 'Circe', Arial, Helvetica, 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;
}

* {
    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: 'GR8 LOGISTICS';
    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: var(--color-link);
    transition: color 0.3s;
}


button, button:hover, button:active, button:focus {
    border: 1px solid transparent;
    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: #4492df !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;
    font-family: 'Circe', Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    transition: color .3s, background-color .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
}

.btn_xl {
    height: 55px;
    border-radius: 6px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    text-transform: uppercase;
}

.btn_column {
    flex-direction: column;
    gap: 5px;
}


.btn_column.btn_xl span:last-child {
    font-size: 14px;
    font-weight: 500;
}

.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: var(--primary-button-background);
    border-color: var(--primary-button-background);
    color: #f6f9fe;
    text-shadow: 0 1px 0 #194cb3;
}

.btn_blue:hover {
    background-color: #015dce;
    border-color: #015dce;
    color: #fff;
}

.btn_blue:disabled, .btn_blue:disabled:hover {
    cursor: not-allowed;
    background-color: rgb(198, 198, 198);
    border-color: transparent;
    color: rgb(244, 244, 244);
    text-shadow: none;
}

.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: #ffb800;
    border-color: #ffb800;
    color: #000;
}

.btn_yellow:hover {
    background-color: #e5a301;
}

.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:hover {
    border-color: #eee;
    background-color: transparent;
    color: #eee;
}

.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: 700;
    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-md {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
    max-width: 100%;
}

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

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

/* 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: var(--color-primary);
}

/* 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: #fff;
    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;
    justify-content: space-between;
    height: 50px;
    z-index: 2;
    border-bottom: 1px solid #eee;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
}

.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;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.mobile-menu__close svg {
    width: 24px;
    height: 24px;
    margin: auto;
    fill: #000;
}

.mobile-menu__menu {
    flex: 1;
}

.mobile-menu__bottom {
    z-index: 2;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

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

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

.mobile-menu--social ul {
    justify-content: center;
}

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

.mobile-menu__menu-link {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    color: #000;
    font-weight: 600;
    line-height: 45px;
    font-size: 18px;
    transition: opacity .3s;
    text-align: center;
}

/* 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: 15px;
}

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

.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_xl input:focus + label, .input-wrap_xl input:not(:placeholder-shown) + label {
    display: inline-block;
    line-height: 14px;
    top: 7px;
    font-size: 12px;
    color: #9d9d9d;
}

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

.input-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;
}

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

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

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

.input-wrap_xs input:focus + label, .input-wrap_xs input:not(:placeholder-shown) + label {
    font-size: 12px;
    top: -7px;
}


.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: 11px;
    margin-top: 3px;
    color: red;
    position: absolute;
    bottom: -4px;
    left: 10px;
    background: #fff;
    padding-left: 5px;
    padding-right: 5px;
}

.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: 15px;
}

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

.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;
}

/* 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 {
    background: #fff;
    z-index: 3;
}

body.header-white {
    padding-top: 50px;
}

.header .container-md {
    padding: 0;
}

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

.header-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

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

.header-transparent header .header-burger span {
    background: #fff;
}

.header-burger span:nth-child(2) {
    width: 20px;
}

.header-burger span:nth-child(3) {
    width: 15px;
}

.header-logo {
    height: 100%;
    width: 50px;
    margin-right: auto;
    margin-left: 10px;
}

.header-logo a {
    display: flex;
    height: 100%;
}

.header-logo img {
    max-width: 100%;
    margin: auto;
}

.burger-menu {
    cursor: pointer;
}

.burger-menu svg {
    height: 40px;
    width: 40px;
    stroke: #fff;
}

.header-menu {
    display: none;
    margin-left: 40px;
    margin-right: auto;
}

.header-menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.header-menu a.current {
    color: var(--color-link-hover);
}

.header-transparent header .header-menu a {
    color: #fff;
}

.header .inner {
    height: 50px;
}

.header-search--btn {
    display: flex;
    cursor: pointer;
    height: 100%;
    width: 50px;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
}

.header-phone a {
    display: flex;
    align-items: flex-end;
    color: #000;
}

.header-phone svg {
    height: 24px;
    width: 24px;
    fill: #000;
}

.header-transparent header .header-phone svg {
    fill: #fff;
}

.header-phone--main {
    display: none;
    flex: 1;
    margin-left: 5px;
}

.header-phone--title {
    font-size: 12px;
    margin-bottom: 3px;
    color: #666;
}

.header-transparent header .header-phone--title {
    color: #fff;
}

.header-phone--value {
    font-size: 16px;
    font-weight: 600;
}

.header-transparent header .header-phone--value {
    color: #fff;
}

.header-contact {
    display: none;
}

.header-search--btn svg {
    width: 24px;
    height: 24px;
    margin: auto;
}

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

.social ul li a {
    display: flex;
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    transition: border-color .3s;
}

.social a:hover {
    border: 1px solid #666;
}

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

.header-social {
    display: none;
}

.header-transparent header .header-social svg {
    fill: #fff;
}

.header-transparent header .header-social a:hover {
    border-color: #f90808;
}

.home--top-banner {
    position: relative;
}

.home--top-banner .inner {
}

.home--top-banner--image {
    width: 100%;
}

.home--top-banner--image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.section_sub_title {
    font-size: 20px;
    font-weight: 400;
}

.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: 12px;
    align-items: flex-end;
}

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

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

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

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

.input-wrap__group-2 > div {
    width: calc(50% - 5px);
}

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

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

.header-search--wrap {
    position: relative;
    height: 100%;
}

.header-search--form {
    position: absolute;
    top: 0;
    right: 50px;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: width .3s linear;
}

.header-search--wrap.active .header-search--form {
    width: calc(100vw - 100px);
}

.header-search--wrap input {
    background: #fff;
    border-top: unset;
    border-right: 1px solid #eee;
    border-bottom: unset;
    border-left: 1px solid #eee;
    width: 100%;
    height: 50px;
    color: #000;
    padding: 20px;
    font-size: 16px;
}

.header-transparent header .header-search--btn svg {
    fill: #fff;
}

.header-search--btn svg path:last-child {
    display: none;
}

.header-search--wrap.active .header-search--btn svg path:first-child {
    display: none;
}

.header-search--wrap.active .header-search--btn svg path:last-child {
    display: block;
}

.section_title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.home--request {
    position: relative;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
}


.section_title-xl {
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
}

.home--request-form {
    margin-top: 30px;
    padding: 20px 10px;
    background: #fff;
    border-radius: 10px;
}

.home--about {
    padding: 40px 0;
    background: #f3f3f3;
}

.home--about .container-md {
    background: #fff;
    padding: 15px;
}

.home--about-image {
    width: 100%;
}

.home--about-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.home--about-text h2 {
    margin-bottom: 30px;
}

.home--about-text p {
    line-height: 24px;
}

.home--about-text p:not(:last-child){
    margin-bottom: 24px;
}

.home--about-text .btn {
    width: 100%;
}

.home--team {
    padding: 40px 0;
    background: #fff;
}

.home--team h3 {
    margin-bottom: 15px;
}

.team-persons {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    gap: 40px;
}

.team-person {
    display: block;
    position: relative;
    width: 100%;
}

.team-person:last-child {
    border-right: unset;
}

.team-person--inner {
    width: 100%;
}

.team-person--image {
    position: relative;
    margin-bottom: 13px;
    aspect-ratio: 16 / 10;
}

.team-person--image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.team-person--country {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
}

.team-person--country svg {
    height: 24px;
    width: 24px;
}

.team-person--country span {
    font-size: 14px;
    font-weight: 600;
}


.team-person--name {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-person--lang {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.team-person--position {
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d5d5;
}

.team-person--address {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d5d5;
    line-height: 1.3;
    font-size: 16px;
}

.team-person--contacts:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d5d5;
}

.team-person--contact {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
}

.team-person--contact:last-child {
    margin-bottom: 0;
}

.team-person--contact svg {
    height: 20px;
    width: 20px;
    fill: #747474;
}

.team-person--contact a {
    width: 70%;
    margin-left: auto;
}

.team-person--links {
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid #e5e5e5;
}

.footer-top {
    padding: 15px 0;
    background: #333;
}

.footer-bottom {
    padding: 20px 0;
    background: #222;
}

.footer-bottom--copy {
    font-size: 13px;
    text-align: center;
    color: #f8f8f8;
}

.footer-top .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


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

.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;
    flex-direction: column;
    gap: 10px;
}

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

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

/* accordion */
.accordion__button {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.accordion__button .icon__chevron-bottom {
    width: 20px;
    height: 20px;
    fill: #000;
}

.accordion__button.active .icon__chevron-bottom {
    transform: rotate(-180deg);
}

.accordion__button, .accordion__panel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.accordion__panel {
    display: none;
}

.accordion__button svg {
    fill: #666;
}

.filters-btn {
    position: fixed;
    bottom: 10px;
    padding: 0 10px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
}

.filters-btn .btn {
    width: 100%;
    max-width: 350px;
}

.swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper * {
    user-select: none;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide iframe {
    width: 100%;
    height: 100%;
}

.swiper-slide--video svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    fill: #fff;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}


.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper .swiper-pagination {
    display: flex;
    padding: 7px 20px;
    background: rgba(0, 0, 0, .5);
    width: auto;
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    gap: 3px;
    left: 10px;
    bottom: 10px;
}

.swiper .swiper-button {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    cursor: pointer;
    color: #fff;
    z-index: 1;
    transition: background-color .3s;
}

.swiper .swiper-button:hover {
    background: rgba(0, 0, 0, .7);
}

.swiper .swiper-button svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    margin: auto;
    fill: #fff;
    transition: fill .3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: 600;
}

/* Swiper*/

.team-person--buttons {
    display: flex;
    gap: 5px;
}

.team-person--buttons * {
    width: calc(50% - 3px);
}

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

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

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

.page {
    flex: 1;
    padding-top: 20px;
    background: #fff;
}

.home--top-banner--form {
    padding: 40px 15px 0 15px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -150px;
    position: relative;
    background: #fff;
}

.home--top-banner--form form {
    max-width: 450px;
    margin: auto;
}

.home--services {
    padding: 40px 0;
}

.home--services .container-fluid {
    padding: 0;
}

.home--service {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}
.home--service:last-child {
    margin-bottom: 0;
}
.home--advantages {
    background: #fff;
    padding-bottom: 40px;
}

.home--advantages p {
    line-height: 24px;
}
.home--advantages p:not(:last-child){
    margin-bottom: 24px;
}
.home--advantages-left {
    padding-top: 40px;
    width: 100%;
}

.home--advantages-right {
    position: relative;
    padding-top: 56%;
}

.home--advantages-right img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.home--advantages-numbers {
    position: relative;
    background-color: #fff;
    padding: 60px 0;
}

.home--advantages-numbers-bg {
    background-attachment: fixed;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/img/numbers.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.home--advantages-content {
    position: relative;
    z-index: 2;
}

.home--advantages-numbers .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.home--advantages-number {
    text-align: center;
    width: calc(50% - 20px);
}

.home--advantages-number h3 {
    font-weight: 800;
    font-size: 46px;
    color: #f90808 !important;
    text-align: center;
    line-height: 1.5;
}

.home--advantages-number p {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
}

.home--contact {
    margin-bottom: 80px;
}
.home--service h2 {
    font-size: 54px;
    font-weight: 900;
}
.home--service h3 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
}

.home--service figure {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
}

.home--service figure img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.home--service p {
    line-height: 24px;
}

.home--service p:not(:last-child) {
    margin-bottom: 24px;
}


.home--services-list .home--service:nth-child(2n+1){
    flex-direction: column-reverse;
}