:root {
    --dark: #333333;
    --white: #ffffff;
    --grey: #979797;
    --medium-grey: #e6e6e6;
    --light-grey: #f6f6f6;
    --dark-grey: #686868;
    --red: #F4363E;
    --red-light: #ff6363;
    --pink: #feebec;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    font-display: swap;
    font-optical-sizing: auto;
    font-style: normal;
	font-size: 16px;
    line-height: 28px;
	font-weight: 400;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #FFFFFF;
    scroll-behavior: smooth!important;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none!important;
}

li:not(:last-child) {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table a {
     color: var(--red);
     font-weight: bold;
     transition: all 0.3s ease-in-out;
}

table a:hover {
     color: var(--red-light);
}

thead {
    border-bottom: 4px solid #f4363e;
}

th {
    padding: 10px;
}

td {
    padding:10px;
}

tbody tr {
    border-bottom: 1px solid #ff6363;
}

ul.two-columns, ol.two-columns {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
}

.wow { 
    visibility: hidden; 
}

.ml30 {
    margin-left: 30px;
}

.light {
    font-weight: lighter;
}

#scrollTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    width: 75px;
}

#scrollTopButton:hover {
    opacity: 0.75 !important;
}

#scrollTopButton.show {
    display: block;
    opacity: 1;
}

#scrollTopButton.hide {
    display: none;
    opacity: 0;
}

.red {
    color: var(--red) !important;
}


.mb50 {
    margin-bottom: 50px;
}

.mb120 {
    margin-bottom: 120px;
}

.white {
    color: white !important;
}

.button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    display: block;
    color: var(--white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 30px;
    background-color: var(--red);
    padding: 18px 32px;
    border: none;
    outline: none!important;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.offers__button {
    margin-top: 20px;
    min-width: 200px;
}

.button-light {
    color: var(--red-light);  
    background-color: var(--white);  
}

.button-pink {
    color: var(--red-light);  
    background-color: var(--pink);  
}

.button-bordered {
    background-color: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.button-bordered-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.button:hover,
.button-light:hover,
.button-pink:hover,
.button-bordered:hover {
    color: var(--white);
    background-color: var(--red-light);  
}

.button-bordered-white:hover {
    color: var(--red-light);
    background-color: var(--white);
}

.section-title {
    font-size: 38px;
    line-height: 55px;
    font-weight: 800;
}

.section-title span {
    color: var(--red);
}

.header {
    background-color: var(--white);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__row {
    padding: 25px 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    gap: 40px;
}

.header__time {
    font-weight: 600;
}

.header__logo_image {
    width: 110px;
    height: auto;
}

.header__phone {
    color: var(--dark)!important;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    display: -webkit-box;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header__phone:hover {
    opacity: 0.75;
}

.header__phone::before {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/phone.svg) center center no-repeat;
    background-size: contain;
}

.header__soc, .soc {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    gap: 24px;
}

.header__soc_item {
    width: 32px;
    height: 32px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header__soc_item:hover {
    opacity: 0.75;
}

.header__menu-btn {
    display: none;
}

.menu {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
    z-index: 100;
    padding: 25px 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__list li {
    margin-bottom: 0;
}

.menu__list li.has-children {
    position: relative;
    padding-bottom: 22px;
    margin-bottom: -22px;
}

.menu__list a {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: var(--grey);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.submenu {
    list-style: none;
    margin: 0;
    position: absolute;
    top: 35px;
    left: 0;
    min-width: 300px;
    /*
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    */
    width: auto;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 30px;
    background-color: var(--white);
    box-shadow: 0px 0px 20px 0px rgb(124, 113, 113, 0.1);
    border-radius: 30px;
    padding: 30px;
    z-index: 1;
}

.gap0 {
    gap: 0px;
}

.submenu-level-two {
    list-style: none;
    margin: 0;
    position: absolute;
    top: 50px;
    left: 50px;
    min-width: 150px;
    /*
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    */
    width: auto;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 15px;
    background-color: var(--white);
    box-shadow: 0px 0px 20px 0px rgb(124, 113, 113, 0.1);
    border-radius: 30px;
    padding: 15px;
    z-index: 1;
}

.submenu-level-two .submenu__item_title {
    margin-bottom: 0px;
}

.submenu-level-two a p {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.submenu-level-two a:hover p {
    color: var(--red);
}

.menu__list li.has-children:hover > .submenu {
    display: -webkit-box;
    display: flex;
}

.menu__list li.has-children:hover > .submenu-level-two {
    display: -webkit-box;
    display: flex;
}

.submenu__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    gap: 20px;
}

.submenu__item_image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    -o-object-fit: contain;
       object-fit: contain;
}

.submenu__item_image2 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: 15px;
}

.submenu-level-two__item_image {
    width: 100px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 10px;
}

.submenu__item_title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.submenu__item_text {
    margin: 0;
}

.menu__close,
.menu__logo,
.menu__soc {
    display: none;
}

.banner {
    margin-bottom: 100px;
}

.banner__inner {
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: start;
            align-items: flex-start;
    min-height: 580px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--dark);
    border-radius: 30px;
    padding: 60px 110px;
    margin-inline: -110px;
}

.banner__title {
    font-size: 48px;
    line-height: 55px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--white);
}

.banner__title span {
    color: var(--red);
}

.white-text {
    color: white;
    font-weight: bold;
}

.banner__text {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 40px;
    max-width: 700px;
    background-color: var(--red);
    color: white !important;
    padding: 20px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
}

.service__banner {
    background-color: rgba(0, 0, 0, 0.75);
    color: white !important;
    border-radius: 30px;
    padding: 30px !important;
}

.banner-light .banner__inner {
    background-color: var(--light-grey);
}

.banner-light .banner__title {
    color: var(--dark);
}

.banner-light .banner__text {
    color: var(--dark);
}

.shipping {
    margin-bottom: 100px;
}

.shipping__title {
    margin-bottom: 64px;
}

.shipping__list {
    margin-bottom: -60px;
}

.shipping__item {
    margin-bottom: 60px;
}

.shipping__item_block {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 15px;
    background-position: center center;
    background-size: cover;
    background-color: var(--light-grey);
    border-radius: 30px;
    margin-bottom: 20px;
}

.shipping__item_date {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
    padding: 5px;
    width: 100px;
    text-align: center;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.shipping__item_weight {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
    padding: 5px;
    width: 100px;
    text-align: center;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 8px;
    position: absolute;
    right: 30px;
    z-index: 2;
}

.shipping__item_image {
    display: block;
    height: 150px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: -10px;
    margin-bottom: -10px;
}

.shipping__item_row {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.shipping__item_button {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    border-radius: 8px;
    width: calc(50% - 7px);
}

.shipping__item_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.shipping__item_text {
    margin-bottom: 10px;
}

.steps__inner {
    border-radius: 30px 30px 0 0;
    background-color: var(--light-grey);
    padding: 60px 110px 90px;
    margin-inline: -110px;
}

.steps__title {
    margin-bottom: 64px;
}

.steps__item {
    margin-bottom: 60px;
}

.steps__item_image {
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 8px;
    box-shadow: 0px 12px 28px 0px rgba(215, 85, 85, 0.1);
    margin-bottom: 25px;
}

.steps__item_image  img {
    width: 43px;
    height: 43px;
    -o-object-fit: contain;
       object-fit: contain;
}

.steps__item_text {
    margin: 0;
    font-weight: 600;
}

.steps__button {
    width: 100%;
}

.stat {
    margin-bottom: 100px;
}

.stat__inner {
    border-radius: 30px;
    background: url('/assets/images/stat-bg.webp') center center no-repeat;
    background-size: cover;
    background-color: var(--dark);
    padding: 60px 110px;
    margin-inline: -110px;
    margin-top: -30px;
}

.stat__item_num {
    color: var(--white);
    font-size: 64px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 24px;
}

.stat__item_text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.features {
    margin-bottom: 100px;
    background: url(../images/map.webp) center center no-repeat;
    background-size: contain;
}

.features__title {
    margin-bottom: 64px;
}

.features__list {
    margin-bottom: -60px;
}

.features__list > * {
    margin-bottom: 60px;
}

.features__item {
    height: 100%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 36px 60px 0px rgba(104, 103, 103, 0.1);
    padding: 40px 30px;
    display: block;
}

.features__item_image {
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 8px;
    box-shadow: 0px 12px 28px 0px rgba(215, 85, 85, 0.1);
    margin-bottom: 25px;
}

.features__item_image  img {
    width: 43px;
    height: 43px;
    -o-object-fit: contain;
       object-fit: contain;
}

.features__item_text {
    margin: 0;
}

.features__contact {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    background: linear-gradient(0.639turn, rgba(244, 54, 62, 1) 0%, rgba(255, 99, 99, 1) 100%);
}

.features__contact_text {
    color: var(--white);
    margin-bottom: 10px;
}

.features__contact_button {
    width: 100%;
}

.about {
    margin-bottom: 100px;
}

.about__title {
    margin-bottom: 30px;
}

.about__text {
    max-width: 540px;
    margin-bottom: 30px;
}

.about__buttons {
    display: -webkit-box;
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about__image {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.about__right {
    height: 100%;
    position: relative;
}

.about__right > img {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.company {
    margin-bottom: 100px;
}

.company__title {
    margin-bottom: 30px;
}

.company__text p {
    max-width: 450px;
}

.company__info {
    min-height: 400px;
    position: relative;
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    background: url(../images/company-bg.svg) bottom center no-repeat;
    background-size: 340px auto;
    background-color: var(--light-grey);
}

.company__info::after {
    position: absolute;
    content: '';
    right: calc(35% - 60px);
    bottom: -10px;
    width: 120px;
    height: 120px;
    background: url(../images/check.svg) center center no-repeat;
    background-size: contain;
}

.company__info_text {
    text-align: center;
    background-color: var(--white);
    padding: 5px 15px;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.team {
    margin-bottom: 100px;
}

.team__title {
    margin-bottom: 64px;
}

.team__list {
    margin-bottom: -30px;
}

.team__list > * {
    margin-bottom: 30px;
}

.team__item_image {
    position: relative;
    margin-bottom: 10px;
}

.team__item_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.team__item_image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.team__item_image img:first-child:hover {
    opacity: 0;
}

.team__item_button {
    padding: 10px 20px;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 1;
}

.team__item_name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.team__item_position {
    color: var(--grey);
    margin: 0;
}

.trading {
    margin-bottom: 100px;
}

.trading__link {
    color: initial;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.trading__link:hover {
    color: var(--red-light);
}

.trading__title {
    margin-bottom: 64px;
}

.trading__list {
    margin-bottom: -30px;
}

.trading__list > * {
    margin-bottom: 30px;
}

.trading__item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.trading__item:hover {
    transform: translateY(-15px);
}

.trading__item_image {
    position: relative;
    margin-bottom: 10px;
}

.trading__item_image img {
    width: 170px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.trading__item_button {
    padding: 10px 20px;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 1;
}

.trading__item_name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.product {
    margin-bottom: 75px;
}

.product__link {
    color: initial;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product__link:hover {
    color: var(--red-light);
}

.product__title {
    margin-bottom: 64px;
}

.product__list {
    margin-bottom: -30px;
}

.product__list > * {
    margin-bottom: 30px;
}

.product__item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product__item:hover {
    transform: translateY(-15px);
}

.product__item_image {
    position: relative;
    margin-bottom: 10px;
}

.product__item_image img {
    width: 70px;
    height: 70px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.product__item_button {
    padding: 10px 20px;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 1;
}

.product__item_name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.faq {
    margin-bottom: 100px;
}

.faq__title {
    margin-bottom: 64px;
}

.faq__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 30px;
}

.faq__item {
    border-radius: 20px;
    background-color: var(--light-grey);
}

.faq__item_header {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    gap: 30px;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 35px 30px;
    cursor: pointer;
}

.faq__item_title {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 800;
    margin: 0;
}

.faq__item_btn {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg role='presentation' focusable='false' width='24px' height='24px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1px' fill='none' fill-rule='evenodd' stroke-linecap='square'%3E%3Cg transform='translate(1.000000, 1.000000)' stroke='%23f4363e'%3E%3Cpath d='M0,11 L22,11'%3E%3C/path%3E%3Cpath d='M11,0 L11,22'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.faq__item_btn:hover {
    opacity: 0.5;
}

.faq__item.opened .faq__item_btn {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.faq__item_content {
    display: none;
    padding-inline: 30px;
}

.faq__item.opened .faq__item_content {
    display: block;
    padding-bottom: 35px;
}

.faq__item_content > *:last-child {
    margin-bottom: 0;
}

.office {
    margin-bottom: 100px;
}

.office__title {
    margin-bottom: 64px;
}

.blog__title {
    margin-bottom: 64px;
}

.office__list {
    margin-bottom: -60px;
}

.office__list > * {
    margin-bottom: 60px;
}

.office__item {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 20px;
    padding: 50px 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 36px 60px 0px rgba(104, 103, 103, 0.1);
    height: 100%;
}

.office__item::before {
    position: absolute;
    content: '';
    width: 28px;
    height: 40px;
    top: -10px;
    left: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.082275390625 40.079345703125' fill='none'%3E%3Cpath d='M28.03431185832066 13.589435538232854C28.03431185832066 22.81655053602911 15.948818850897053 40.01102953885509 14.01718078073147 40.01102953885509C12.085542710565887 40.01102953885509 0 23.22993157040756 0 13.589435538232854C0 6.084161647020188 6.275966073095271 0 14.01718078073147 0C21.75896707450394 0 28.03431185832066 6.084161647020188 28.03431185832066 13.589435538232854Z' fill='url(%23paint0_linear_24_2509)'%3E%3C/path%3E%3Cellipse cx='13.745428850292104' cy='12.871100874369123' rx='6.362275579671944' ry='6.182325353031665' fill='url(%23paint1_linear_24_2509)'%3E%3C/ellipse%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_24_2509' x1='56.4036' y1='0' x2='56.4036' y2='161' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F4363E'%3E%3C/stop%3E%3Cstop offset='1' stop-color='%23FF696F'%3E%3C/stop%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_24_2509' x1='144.943' y1='108.118' x2='144.943' y2='157.872' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.345' stop-color='%23FFB4B7'%3E%3C/stop%3E%3Cstop offset='1' stop-color='%23FF696F'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.office__item_title {
    font-weight: 700;
}

.office__item p,
.office__item a {
    display: block;
    color: var(--dark)!important;
}

.office__item span {
    color: var(--dark-grey);
}

.office__button {
    width: 100%;
}

.services {
    margin-bottom: 100px;
}

.services__title {
    margin-bottom: 64px;
}

.services__list {
    margin-bottom: -30px;
}

.services__list > * {
    margin-bottom: 30px;
}

.services__item {
    display: block;
    height: 100%;
    padding: 30px 30px 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services__item:hover {
    transform: translateY(-15px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.services__item_image {
    width: 75px;
    height: 75px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 30px;
}

.services__item_title {
    font-weight: 700;
    color: var(--dark)!important;
    margin-bottom: 15px;
}

.services__item_weight {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
    padding: 5px;
    width: 100px;
    text-align: center;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 8px;
    position: relative;
    float: right;
    z-index: 2;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
}

.services__item_date {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
    padding: 5px;
    width: 100px;
    text-align: center;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 8px;
    position: relative;
    float: right;
    z-index: 2;
    margin-right: 15px;
    margin-top: 20px;
}

.services__item_text {
    color: var(--dark)!important;
    margin-bottom: 15px;
}

.services__item_more {
    position: relative;
    font-weight: 500;
    color: var(--red)!important;
}

.services__item_more::after {
    content: " →";
    font-family: Arial, Helvetica, sans-serif;
}

.breadcrumbs {
    padding-block: 30px;
}

.breadcrumbs__list {
    display: -webkit-box;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
            align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    position: relative;
    margin-bottom: 0!important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.breadcrumbs__item:hover {
    opacity: 0.75;
}

.breadcrumbs__item:not(:last-child)::after {
    color: var(--grey);
    content: " →";
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 5px;
}

.breadcrumbs__item a {
    color: var(--red);
}

.breadcrumbs__item span {
    color: var(--grey);
}

.article {
    margin-bottom: 100px;
}

.article__title {
    font-weight: 800;
    font-size: 60px;
    line-height: 1.17;
    margin-top: 60px;
    margin-bottom: 45px;
}

.article__top {
    border: 1px solid var(--medium-grey);
    border-radius: 30px;
    overflow: hidden;

}

.article__intro {
    font-size: 18px;
    line-height: 1.55;
    padding: 30px;
}

.article__intro > *:last-child {
    margin-bottom: 0;
}

.article__links {
    padding-block: 30px;
    font-weight: 600;
}

.article__links a {
    display: block;
    color: var(--red);
}

.article__content {
    padding-top: 60px;
    font-size: 18px;
    line-height: 1.55;
}

.article__content > * {
    margin-bottom: 30px;
}

.article__content > *:last-child {
    margin-bottom: 0;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4 {
    font-weight: 800;
}

.article__content blockquote, .desc blockquote {
    padding-left: 20px;
    border-left: 3px solid var(--red);
}

.article__content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.article__content h2[id] {
    padding-top: 100px;
    margin-top: -40px;
}

.article__content h2[id]:first-child {
    margin-top: -100px;
}

.article__content ul, .banner__inner ul {
    padding: 0;
    list-style: none;
}

.article__content ul li, .banner__inner ul li {
    padding-left: 60px;
    position: relative;
}

.article__content ul li::before, .banner__inner ul li::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill-rule='evenodd'%3E%3Cpath d='M39.658 80.461a4.673 4.673 0 0 1-3.305-1.369L11.37 54.112a4.674 4.674 0 0 1 0-6.61 4.673 4.673 0 0 1 6.611 0l21.485 21.48 42.96-48.117a4.675 4.675 0 1 1 6.975 6.227L43.145 78.9a4.678 4.678 0 0 1-3.487 1.562Z' fill='%23f4363e'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

.article__content a:not([class]) {
    color: var(--red);
}

.btn-block {
    margin-bottom: 100px;
}

.btn-block .button {
    margin-right: auto;
    margin-left: auto;
}

.blog {
    margin-bottom: 100px;
}

.blog__list {
    margin-bottom: -60px;
}

.blog__list > * {
    margin-bottom: 60px;
}

.blog__item {
    
}

.blog__item_image {
    width: 100%;
    height: 230px;
    border-radius: 30px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
}

.blog__item_title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 800;
    min-height: 75px;
    color: var(--dark)!important;
    margin-bottom: 15px;
}

.blog__item_text {
    color: var(--grey)!important;
    margin: 0;
}

.desc {
    margin-bottom: 100px;
}

.desc__title {
    margin-bottom: 30px;
}

.desc__text > * {
    margin-bottom: 30px;
}

.consult {
    margin-bottom: 100px;
}

.consult__inner {
    border-radius: 30px;
    padding: 60px 30px;
    background: url(../images/consult.webp) center center no-repeat;
    background-size: cover;
}

.fos {
    margin-bottom: 100px;
}

.fos__inner {
    overflow: hidden;
    background: url('/assets/images/fos-bg.webp') center center no-repeat;
    background-size: cover;
    background-color: var(--dark);
    border-radius: 30px;
    padding: 110px;
    margin-inline: -110px;
}

.fos-light .fos__inner {
    background: url('../images/fos-light.svg') center center no-repeat;
    background-size: cover;
    background-color: var(--light-grey);
}

.fos__title {
    color: var(--white);
    margin-top: 60px;
    margin-bottom: 30px;
}

.fos-light .fos__title {
    color: var(--dark);
}

.fos__text {
    color: var(--white);
    font-size: 21px;
    line-height: 40px;
    margin-bottom: 0;
}

.fos-light .fos__text {
    color: var(--dark);
}

.fos__form {
    border-radius: 30px 30px 0 0;
    padding: 60px;
    background-color: var(--white);
    min-height: 470px;
    margin-bottom: -110px;
}

.form__row {
    display: -webkit-box;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}

.form__input {
    color: var(--dark);
    border: 1px solid var(--medium-grey);
    outline: none;
    background-color: var(--white);
    border-radius: 30px;
    height: 50px;
    width: 100%;
    margin-bottom: 30px;
    padding-inline: 20px;
}

.iti {
    width: 100%;
    margin-bottom: 30px;
}

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 30px 0 0 30px;
}

.form__button {
    width: 100%;
}

.form__policy {
    display: block;
    color: var(--red);
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
}

.work {
    margin-bottom: 100px;
}

.work__title {
    margin-bottom: 64px;
}

.work__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 30px;
}

.work__item {
    position: relative;
    padding-left: 80px;
}

.work__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg role='presentation' class='t508__checkmark' imgfield='li_img__1710662869818' style='width:40px; height:40px;' fill='%23f4353d' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50.1 98.9c-26.7 0-48.5-21.8-48.5-48.5S23.4 1.9 50.1 1.9c8.9 0 17.5 2.4 25.1 7 .7.4.9 1.4.5 2.1-.4.7-1.4.9-2.1.5C66.5 7.2 58.4 5 50.1 5 25 4.9 4.6 25.3 4.6 50.4S25 95.9 50.1 95.9s45.5-20.4 45.5-45.5c0-3.2-.3-6.4-1-9.5-.2-.8.3-1.6 1.2-1.8.8-.2 1.6.3 1.8 1.2.7 3.3 1.1 6.7 1.1 10.1-.1 26.7-21.8 48.5-48.6 48.5z'%3E%3C/path%3E%3Cpath d='M50.1 63.9c-.4 0-.8-.2-1.1-.4L24.8 39.2c-.6-.6-.6-1.5 0-2.1.6-.6 1.5-.6 2.1 0l23.2 23.2 46.8-48c.6-.6 1.5-.6 2.1 0 .6.6.6 1.5 0 2.1l-47.8 49c-.3.3-.7.5-1.1.5z'%3E%3C/path%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.work__item_title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.work__item_text {
    margin: 0;
}

.gallery {
    margin-bottom: 100px;
}

.gallery__image {
    height: 470px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    border-radius: 30px;
}

.map {
    margin-bottom: 100px;
}

.map__inner {
    overflow: hidden;
    border-radius: 30px;
    margin-inline: -110px;
}

.footer {
    margin-bottom: 100px;
}

.footer__inner {
    border-radius: 30px;
    background: url('/assets/images/footer-bg.webp') center center no-repeat;
    background-size: cover;
    background-color: var(--dark);
    padding: 60px 110px;
    margin-inline: -110px;
    margin-top: -30px;
}

.footer__top {
    display: -webkit-box;
    display: flex;
    gap: 30px;
    margin-bottom: 120px;
}

.footer__bottom {
    display: -webkit-box;
    display: flex;
    gap: 30px;
}

.footer__top > *,
.footer__bottom > * {
    width: calc(50% - 15px);
}

.footer__logo_image {
    width: 110px;
    height: auto;
}

.footer__phone_text {
    margin: 0;
    color: var(--white);
}

.footer__phone_num {
    font-size: 40px;
    line-height: normal;
    color: var(--white)!important;
}

.footer__row {
    display: -webkit-box;
    display: flex;
    gap: 30px;
}

.footer__col {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 10px;
    width: calc(50% - 15px); 
}

.footer__text {
    color: var(--white)!important;
    margin: 0;
}

.employee {
    margin-bottom: 100px;
}

.employee__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 30px;
}

.employee__image {
    min-height: 780px;
    height: 100%;
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}

.employee__content {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    border-radius: 30px;
    background-color: var(--light-grey);
    padding: 60px;
}

.employee__name {
    margin-bottom: 15px;
}

.employee__position {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.employee__position::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--red);
    bottom: 0;
    left: 0;
}

.employee__text > * {
    margin-bottom: 30px;
}

.employee__button {
    cursor: pointer;
    color: var(--red);
    font-weight: 800;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    border-bottom: 1px solid var(--red);
    outline: none!important;
    background: transparent;
    padding: 0;
}

.modal-dialog {
    max-width: 760px;
}

.modal-content {
    padding: 60px 30px 30px;
    border-radius: 30px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.modal-heading {
    font-size: 38px;
    line-height: 55px;
    font-weight: 800;
    text-align: center;
}

.modal-text {
    text-align: center;
    margin-bottom: 30px;
}

.modal-success .modal-dialog {
    max-width: 360px;
}

.modal-success .modal-content-wrapper {
    text-align: center;
}

.modal-success svg {
    margin-bottom: 30px;
}

.modal-success .modal-text {
    margin-bottom: 0;
}

.error {
    margin-top: 100px;
    margin-bottom: 100px;
}

.error__title {
    margin-bottom: 30px;
    text-align: center;
}

.error__text {
    margin-bottom: 30px;
    text-align: center;
}

.error__button {
    margin: 0 auto;
}

.error__image {
    margin-top: 100px;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
}

.error__image svg:first-child {
    margin: 0 auto;
}

.error__image svg:nth-child(2) {
    margin-left: 15%;
    margin-top: 20px;
}

.error__image svg:nth-child(3) {
    margin-left: 35%;
    margin-top: 30px;
}

.article__image {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.faq__item_content a {
	color: var(--red);
}

.dark {
    color: var(--dark);
}

.center {
    text-align: center;;
    justify-content: center;
}

.office__item_contacts a, .footer a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.office__item_contacts a, .office__item_contacts span {
    color: var(--red) !important;
}

.office__item_contacts a:hover, .office__item_contacts span, .footer a:hover {
    color: var(--red-light) !important;
}

.current_page {
    color: var(--dark) !important;
}

.current_page_footer {
    color: var(--red-light) !important;
}

.current_page_mob {
    color: var(--red) !important;
}

.footer__menu {
    margin-bottom: 50px;
}

.footer__menu p {
    text-align: center;
}

.footer__menu p, .footer__menu a {
    color: white;
}

.grecaptcha-badge {
    visibility: hidden;
}

.form__policy::after {
    content: "Нажимая на кнопку, вы автоматически соглашаетесь с условиями обработки персональных данных.";
}

.shipping__item_button.button.button-bordered::after {
    content: "Подробнее";
}

.services__item_more::after {
    content: "Подробнее →";
}

.descr {
    font-size: 12px;
    line-height: 16px;
    margin-left: -25px; 
    font-weight: 600;
}

.address span {
    color: var(--dark);
}

.dnone {
    display: none;
}

.desc__text a {
    color: var(--red);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.desc__text a:hover {
    color: var(--red-light);
}

#cookie-notice {
    display: none; 
    max-width: 100%; 
    position: fixed; 
    bottom: 10px; 
    right: 10px; 
    background-color: #f1f1f1; 
    padding: 10px; 
    border-radius: 5px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    z-index:9998;
}

#cookie-notice h2 {
    font-size: 14px
}

#cookie-notice p {
    font-size: 10px
}

#cookie-accept {
    background-color: var(--red); 
    color: white; 
    border: none; 
    padding: 5px 10px; 
    cursor: pointer; 
    border-radius: 8px; 
    font-size: 12px;
}

.features__item_num {
    font-size: 30px;
    font-weight: 700;
    color: var(--red); 
}

.calc {
    margin-top: 100px;
}

.calc-group > .form__input {
    margin-bottom: 15px;
}

.calc-group > .form__input:last-child {
    margin-bottom: 0;
}

.review {
    margin-bottom: 100px;
}

.review__title {
    margin-bottom: 64px;
}

.review__list {
    position: relative;
    padding-bottom: 70px;
    margin-bottom: -50px;
}

.review__list .slick-list {
    margin: -15px
}

.review__list .slick-slide {
    margin: 0 15px;
}

.review__list .review__item {
    margin: 15px 0;
}

.review__item {
    min-height: 220px;
    background-color: #ffffff;
    padding: 15px;
    border-width: 0px;
    border-color: transparent;
    border-radius: 10px;
    border-style: solid;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.review__item_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.review__item_image {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #f9f9f9;
    margin-right: 10px;
    overflow: hidden
}

.review__item_image img {
    object-fit: cover;
    max-width: 100%;
    width: 64px;
}

.review__item_name {
    color: #212121;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    margin-bottom: 0
}

.review__item_rating {
    font-size: 22px;
    line-height: 20px;
    display: block;
    /* color: #d8d8d8; */
    color: #fc0;
    position: relative
}

.review__item_rating:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    color: #ffcc00;
    height: 24px;
    width: 90px;
    z-index: 1
}

.review__item_rating.rating-1:before {
    content: "★"
}

.review__item_rating.rating-2:before {
    content: "★★"
}

.review__item_rating.rating-3:before {
    content: "★★★"
}

.review__item_rating.rating-4:before {
    content: "★★★★"
}

.review__item_rating.rating-5:before {
    content: "★★★★★"
}

.review__item_date {
    display: block;
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #757575
}

.review__item_text {
    color: #212121;
    font-size: 16px;
    line-height: 24px;
    display: flex;
}

.review__item.line-clamp-3 .review__item_text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.review__item.line-clamp-3.expanded .review__item_text {
    height: auto;
    -webkit-line-clamp: unset
}

.review__item_button {
    display: none;
    font-size: 13px;
    color: #757575 !important;
    cursor: pointer
}

.review__item.line-clamp-3 .review__item_button {
    display: block;
}

.review__item_button::after {
    content: "Читать полностью"
}

.expanded .review__item_button::after {
    content: "Скрыть"
}

.review__top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fafafa;
    border-radius: 4px;
    position: relative
}

.review__top_maps {
    display: block;
    margin-bottom: 10px
}

.review__top_maps svg {
    width: 88px
}

.review__sum {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

.review__sum_rating {
    font-size: 24px;
    font-weight: 500;
    margin-right: 15px
}

.review__sum_stars {
    color: #fc0;
    font-size: 30px;
    line-height: 25px;
    margin-right: 15px
}

.review__sum_quantity {
    font-size: 12px;
    line-height: 20px;
    color: #757575
}

.slick-arrow {
    position: absolute;
	z-index: 1;
	width: 40px;
	height: 40px;
    background-color: var(--red);
	border: none;
	border-radius: 100%;
	font-size: 0!important;
    cursor: pointer;
    outline: none!important;
    border: none!important;
	transition: all 0.5s;
}

.slick-arrow::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 15px;
    width: 14px;
    height: 14px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}

.slick-arrow.slick-next::before {
    left: 10px;
    transform: rotate(225deg);
}

.slick-next {
	right: calc(50% - 50px);
    bottom: 0;
}

.slick-prev {
	left: calc(50% - 50px);
    bottom: 0;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .button {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .menu__list a:hover {
        color: var(--dark);
    }
     body::-webkit-scrollbar {
    width: 6px; /* Ширина полосы прокрутки */
    }

    body::-webkit-scrollbar-thumb {
        background-color: #f4363e;
        border-radius: 3px;
    }

    body::-webkit-scrollbar-track {
        background-color: #f8f8f8;
    }
    .two_colums {
        flex-wrap: wrap;
        flex-direction: row !important;
        min-width: 600px;
    }

    .two_colums li {
        flex: 1 1 45%;
    }
}

.region-links {
    margin-bottom: 100px;
}

.region-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #f6f6f6;
    border-radius: 25px;
}

.region-link a {
    color: #f4363e;
    transition: all 0.3s;
}

.region-link a:hover {
    color: #ff6363;
}




@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1199px) {
    .banner__inner,
    .stat__inner,
    .footer__inner,
    .fos__inner {
        margin-inline: 0;
        padding: 60px;
    }
    .steps__inner {
        margin-inline: 0;
        padding: 60px 60px 90px;
    }
    .map__inner {
        margin-inline: 0;
    }
    .article__title {
        font-size: 48px;
    }
    .gallery__image {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .descr {
        display: none;
    }

    ul.two-columns, ol.two-columns {
        -webkit-columns: 1;
           -moz-columns: 1;
                columns: 1;
    }
    .mt50-mob {
        margin-top: 50px;
    }
    .header__phone {
        font-size: 0;
        gap: 0;
    }
    .header__phone::before {
        width: 32px;
        height: 32px;
    }
    .header__row {
        gap: 24px;
    }
    .footer__top > *,
    .footer__bottom > * {
        width: auto;
    }
    .company__info {
        margin-top: 30px;
    }
    .fos__form {
        min-height: unset;
        margin-top: 30px;
        padding: 30px 30px 110px;
    }
    .fos__title {
        margin-top: 0;
    }
    .stat__inner .row > * {
        margin-bottom: 40px;
    }
    .stat__inner .row > *:last-child {
        margin-bottom: 0;
    }
    .stat__item {
        text-align: center;
    }
    .gallery__image {
        height: 320px;
    }
    .employee__image {
        min-height: unset;
        height: 780px;
        margin-bottom: 30px;
    }
    .form__policy {
        font-size: 12px;
        line-height: 14px;
    }
}

@media (max-width: 767px) {
    .mob-dnone {
        display: none;
    }
    .header__button,
    .header__soc {
        display: none;
    }
    .header__menu-btn {
        display: block;
        width: 48px;
        height: 48px;
        border-radius: 100%;
        background-color: var(--light-grey);
        outline: none!important;
        border: none;
        padding: 0;
        position: relative;
        cursor: pointer;
    }
    .header__menu-btn::before {
        content: '';
        position: absolute;
        top: 18px;
        left: 10px;
        width: 28px;
        height: 2px;
        background: var(--red);
    }
    .header__menu-btn::after {
        content: '';
        position: absolute;
        bottom: 18px;
        left: 10px;
        width: 28px;
        height: 2px;
        background: var(--red);
    }
    .menu {
        position: fixed;
        background-color: var(--white);
        height: 100%;
        width: 320px;
        top: 0;
        right: -100%;
        z-index: 1000;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        overflow: auto;
    }
    .menu.menu-opened {
        right: 0; 
    }
    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        gap: 10px;
    }
    .menu__list li.has-children {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .submenu {
        position: static;
        display: none!important;
        gap: 10px;
        padding: 0;
        padding-left: 15px;
        box-shadow: none;
    }
    .submenu-level-two {
        position: static;
        display: none!important;
        gap: 10px;
        padding: 0;
        padding-left: 15px;
        box-shadow: none;
    }
    .menu__list li.has-children.opened .submenu {
        display: -webkit-box!important;
        display: flex!important;
        padding-top: 10px;
    }
    .menu__list li.has-children.opened .submenu-level-two {
        display: -webkit-box!important;
        display: flex!important;
        padding-top: 10px;
    }
    .submenu__item_title {
        font-weight: 400;
        color: var(--grey);
        margin-bottom: 0;
    }
    .submenu__item_image,
    .submenu-level-two__item_image,
    .submenu__item_image2,
    .submenu__item_text {
        display: none;
    }
    .menu__close {
        position: relative;
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background-color: transparent;
        outline: none!important;
        border: 0;
        padding: 0;
        margin-bottom: 30px;
        margin-left: auto;
    }
    .menu__close::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 1px;
        width: 24px;
        height: 2px;
        background: var(--grey);
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    .menu__close::after {
        content: '';
        position: absolute;
        top: 12px;
        left: 1px;
        width: 24px;
        height: 2px;
        background: var(--grey);
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    .menu__logo {
        display: block;
        margin-bottom: 30px;
    }
    .menu__logo_image {
        width: 110px;
        height: auto;
    }
    .menu__soc {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        gap: 30px;
        margin-top: 60px;
    }
    .menu__email {
        color: var(--dark)!important;
        border-bottom: 1px solid var(--red);
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .menu__button,
    .menu__phone {
        width: 100%;
    }
    .menu-backdrop {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--red);
        opacity: .6;
        z-index: 199;
    }
    .menu.menu-opened + .menu-backdrop {
        display: block;
    }
    .banner__inner,
    .stat__inner,
    .footer__inner,
    .fos__inner {
        padding: 60px 30px;
    }
    .steps__inner {
        padding: 60px 30px 90px;
    }
    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        margin-bottom: 60px;
    }
    .footer__bottom,
    .footer__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
    }
    .footer__col {
        width: 100%;
    }
    .article__content ul li {
        padding-left: 50px;
    }
    .article__title {
        font-size: 36px;
    }
    .about__right {
        margin-top: 30px;
    }
    .work__item {
        padding-left: 50px;
    }
    .work__item::before {
        width: 30px;
        height: 30px;
    }
    .gallery .row > *:first-child {
        margin-bottom: 30px;
    }
    .gallery__image {
        height: auto;
    }
    .employee__image {
        height: 600px;
    }
    .modal-heading {
        font-size: 28px;
        line-height: 36px;
    }
    .form__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
    }
    .trading__list .col-xs-6 {
        max-width: 50%;
    }
    .product__list .col-xs-6 {
        max-width: 50%;
    }
    .review__top {
        flex-direction: column;
    }
    .review__sum {
        margin-bottom: 15px;
        justify-content: center;
    }
    .review__top_maps {
        text-align: center;
    }
}

@media (max-width: 479px) {
    .banner__title {
        font-size: 28px;
        line-height: 40px;
    }
    .banner__text,
    .fos__text {
        font-size: 14px;
        line-height: 20px;
    }
    .section-title {
        font-size: 20px;
        line-height: 29px;
    }
    .steps__item,
    .features__list > *,
    .office__list > * {
        margin-bottom: 30px;
    }
    .features__list,
    .office__list {
        margin-bottom: -30px;
    }
    .footer__phone_num {
        font-size: 30px;
        line-height: 1.2;
    }
    .employee__image {
        height: 500px;
    }
    .header__time {
        width: 100px;
    }
}

.reviews-page {
    margin-top: 100px;
    margin-bottom: 100px;
}

.reviews-page__title {
    font-weight: 800;
    font-size: 60px;
    line-height: 1.17;
    margin-top: 60px;
    margin-bottom: 45px;
}

.nav-tabs.reviews-page__nav {
    display: flex;
    gap: 10px 30px;
    border: none;
    margin-bottom: 30px;
}

.nav-tabs .nav-link.reviews-page__nav_item {
    width: 200px;
    text-align: center;
    display: block;
    background-color: transparent;
    color: var(--red);
    border: 1px solid var(--red);
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    border-radius: 8px;
    outline: none !important;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.nav-tabs .nav-link.reviews-page__nav_item:hover {
    background-color: var(--pink);
    border-color: var(--pink);
}

.nav-tabs .nav-link.reviews-page__nav_item.active {
    cursor: default;
    background-color: var(--red);
    color: var(--white);
}

.review__row .review__item {
    margin-bottom: 30px;
}

.review__image {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.review__image::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg fill='none' height='64' viewBox='0 0 24 24' width='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19.25 19.25-3.75-3.75m-10.75-4.5c0-3.45178 2.79822-6.25 6.25-6.25 3.4518 0 6.25 2.79822 6.25 6.25 0 3.4518-2.7982 6.25-6.25 6.25-3.45178 0-6.25-2.7982-6.25-6.25z' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/svg%3E");    
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.3s;
}

.review__image:hover::before {
    opacity: 1;
}

.review__image img {
    width: 100%;
    /* height: auto; */
    height: 215px;
    object-fit: cover;
}

@media (max-width: 479px) {
    .nav-tabs .nav-link.reviews-page__nav_item {
        width: calc(50% - 15px);
    }
}


.offer {
    margin-top: 100px;
    margin-bottom: 100px;
    background: url(../images/map.webp) center center no-repeat;
    background-size: contain;
}

.offer button {
    position: absolute;
    bottom: 25px;
    min-width: 200px;
}

.offer h2 {
    min-height: 100px;
    color: white;
    font-weight: bold !important;
}

.offer p {
    min-height: 150px;
    color: white;
    font-weight: bold;
}

.star_image {
    position: absolute;
    top: 50px;
    right: 50px;
}

.star_image img {
    height: 50px;
}

.offer__item {
    height: 100%;
    background-color: #d1d1d1;
    border-radius: 8px;
    box-shadow: 0px 36px 60px 0px rgba(104, 103, 103, 0.1);
    padding: 40px 30px;
    display: block;
}

.offer__item_image {
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 8px;
    box-shadow: 0px 12px 28px 0px white;
    margin-bottom: 25px;
}

.offer__item_image  img {
    width: 43px;
    height: 43px;
    -o-object-fit: contain;
       object-fit: contain;
}

.offer__item_text {
    margin: 0;
}

.offer__item_num {
    font-size: 30px;
    font-weight: 700;
    color: var(--red); 
}

.phone-button {
    position: fixed;
    display: none;
    right: 5px;
    bottom: 100px;
    transform: translate(-50%,-50%);
    background: #f4363e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 35px;
    z-index: 10
}

.phone-button:hover {
    opacity: .8
}

.phone-button:before,.phone-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #f4363e;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
    overflow-x: hidden;
    z-index: 0
}

.phone-button:after {
    animation-delay: .5s
}

@keyframes animate {
    0% {
        transform: scale(.5);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

@media (max-width: 767px) {
    .phone-button {
        display: block;
    }
    .header__row {
        padding: 10px 0;
    }
    .header__time {
        font-weight: 400;
        font-size: 12px;
    }
    .service__banner {
        padding: 15px !important;
    } 
    .article__content ul li, .banner__inner ul li {
        padding-left: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header__phone {
        font-size: 14px;
        min-width: 165px;
    }
    .header__time {
        font-weight: 400;
    }
    .header__soc {
        gap: 12px;
    }
    .header__soc button {
        padding: 10px 30px;
    }

}

/* vacancy */

.vacancy {
    margin-top: 100px;
    margin-bottom: 100px;
}

.vacancy__item {
    border-radius: 30px;
    background-color: var(--light-grey);
    padding: 60px;
    margin-bottom: 60px;
}

.vacancy__item:last-child {
    margin-bottom: 0;
}

.vacancy__item_top {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--red);
}

.vacancy__item_header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px 30px;
}

.vacancy__item_title {
    margin-bottom: 15px;
}

.vacancy__item_date {
    white-space: nowrap;
    color: var(--grey);
}

.vacancy__item_salary {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.vacancy__item_conditions {
    margin-bottom: 30px;
}

.vacancy__item_desc {
    margin-bottom: 30px;
}

.vacancy__item_salary span {
    color: var(--red);
}

.vacancy__item_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vacancy__item_tag {
    padding: 2px 10px;
    border: 1px solid var(--grey);
    border-radius: 30px;
}

.vacancy__item_block {
    margin-bottom: 30px;
}

.vacancy__item_block_title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--red);
}

textarea.form__input {
    padding: 20px;
    height: 140px;
    resize: none;
}

@media (max-width: 767px) {
    .vacancy__item {
        padding: 30px;
    }
    .vacancy__item_header {
        flex-direction: column-reverse;
    }
    .vacancy__item_salary {
        font-size: 16px;
    }
    .vacancy__item_block_title {
        font-size: 16px;
    }
}