:root {
    --font-size_10: 0.63rem;
    --font-size_14: 0.88rem;
    --font-size_15: 0.94rem;
    --font-size_16: 1rem;
    --font-size_18: 1.125rem;
    --font-size_20: 1.25rem;
    --font-size_24: 1.5rem;
    --font-size_25: 1.56rem;
    --font-size_32: 2rem;
    --font-size_48: 3rem;
    --font-size_72: 4.5rem;
}
.d-flex {
    flex-direction: row;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0 0;
}
@media (max-width: 992px) {
    .container {
        padding-top: 20px;
    }
    .invisible-md {
        display: none;
    }
}

body {
    font-family: "Open Sans", sans-serif, Helvetica;
    color: #000000;
}

header {
    font-size: var(--font-size_24);
    font-weight: bold;
    display: block;
    border-bottom: 3px solid #e4e7eb;
    padding-bottom: 25px;
    margin: 0 40px;
}
.header__logo {
    width: 220px;
    height: 60px;
    background-image: url("../img/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Resize the background image to cover the entire container */
}
.header__whatsapp__container {
    margin-left: 20px;
}
.header__whatsapp {
    width: 60px;
}
.header__link {
    color: #000000;
}
.header__icon {
    font-size: 1.8rem;
    line-height: 1.8rem;
    margin-right: 10px;
}
.header__row {
    align-items: center;
    justify-content: space-between;
}
.header__contacts {
    gap: 40px;
    align-items: center;
}
@media (max-width: 768px) {
    header {
        margin: 0 20px;
    }
    .header__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .header__icon {
        font-size: 1.4rem;
        line-height: 1.4rem;
    }
}
.header__contacts_phones {
    gap: 20px;
    flex-direction: column;
    line-height: var(--font-size_24);
}
@media (max-width: 992px) {
    .header__logo {
        width: 210px;
        height: 57px;
    }
    .header__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
    }
}
@media (max-width: 768px) {
    header {
        font-size: var(--font-size_18);
    }
    .header__logo {
        background-image: url("../img/logo-vertical.png");
        width: 109px;
        height: 91px;
    }
    .header__whatsapp {
        width: 50px;
    }
    .header__whatsapp__container {

    }
    .header__row {
        gap: 15px;
    }
    .header__row > div {
        margin: 0 auto;
    }
    .header__contacts_phones {
        gap: 15px;
    }
}


.title {
    margin: 60px 40px 0;
    justify-content: space-between;
}
.title__worker {
    width: 450px;
}
.title h1 {
    font-size: var(--font-size_72);
    font-weight: 800;
}
.title h2 {
    color: #e2461c;
    font-size: var(--font-size_32);
    font-weight: 700;
}
.title__content {
    flex-direction: column;
    gap: 20px
}
@media (max-width: 992px) {
    .title {
        flex-direction: column;
        align-items: center;
        gap: 85px;
    }
    .title__content {
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .title {
        margin: 50px 20px 0;
        gap: 50px;
    }
    .title h1 {
        font-size: 2rem;
    }
    .title h2 {
        font-size: 1rem;
    }
    .title__content {
        gap: 5px
    }
    .title__worker {
        width: 250px;
    }
}




.advantages {
    background-color: #fafafa;;
    margin-top: 5px;
    color: #2d231e;
}
.advantages__top_border {
    background-color: #fff;
    border-radius: 0 0 100px 100px;
    align-self: stretch;
    width: 100%;
    height: 80px;
}
.advantages__bottom_border {
    background-color: #fff;
    border-radius: 100px 100px 0 0;
    align-self: stretch;
    width: 100%;
    height: 80px;
    position: relative;
}
.advantages__items {
    padding: 60px 0;
    justify-content: space-around;
}
.advantages__item {
    flex-grow: 0;
    align-items: center;
    max-width: 300px;
    text-align: center;
    flex-direction: column;
    gap: 10px
}
.advantages__item__img {
    width: 100px;
}
.advantages__item__title {
    font-size: var(--font-size_20);
    font-weight: 800;
    margin: 0;
}
@media (max-width: 992px) {
    .advantages__items {
        flex-wrap: wrap;
        gap: 85px;
        padding: 50px 0;
    }
    .advantages__item {
        width: 300px;
        flex-grow: 1;
        flex-shrink: 0;
    }
}
@media (max-width: 768px) {
    .advantages__bottom_border {
        height: 30px;
    }
    .advantages__top_border {
        height: 30px;
    }
    .advantages__items {
        flex-direction: column;
        gap: 35px;
        align-items: center;
        padding: 35px 0;
    }
    .advantages__item {
        width: 250px;
        gap: 5px
    }
    .advantages__item__img {
        width: 80px;
    }
    .advantages__item__title {
        font-size: var(--font-size_16);
    }
    .advantages__item__description {
        font-size: 0.8rem;
    }
}


.contacts {
    margin: 30px 40px 0;
}
.contacts__address {
    flex-direction: column;
}
.contacts__address__title {
    font-size: var(--font-size_32);
    font-weight: 700;
    margin: 0 0 10px;
}
.contacts__address__container {
    flex-direction: column;
}
.contacts__address__address {
    font-size: var(--font-size_20);
}
.contacts__address__warehouse {
    font-size: var(--font-size_20);
    color: #777;
}
.contacts__map {
    border-radius: 50px;
    width: 100%;
    height: 370px;
}
.contacts__map__marker {
    text-align: center;
}
.contacts__map__marker__icon {
    height: 50px;
}
.contacts__map__marker__title {
    font-size: var(--font-size_20);
    font-weight: bold;
    color: #FA4D25;
    margin-top: 5px;
}
@media (max-width: 992px) {
    .contacts__map {
        margin-top: 30px;
    }
    .contacts {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .contacts {
        margin: 0 20px;
        text-align: center;
    }
    .contacts__address__title {
        font-size: 1.7rem;
        margin: 0;
    }
    .contacts__address__container {
        flex-direction: row;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    .contacts__address__address {
        font-size: var(--font-size_16);
    }
    .contacts__address__warehouse {
        font-size: var(--font-size_16);
    }
    .contacts__map {
        height: 340px;
    }
}



.partners {
    margin: 80px 40px 0;
}
.partners_items {
    margin-top: 40px;
    gap: 60px
}
.partners_item {
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 50px;
    padding: 40px 60px;
    font-size: var(--font-size_20);
    font-weight: 400;
}
.partners_item__country {
    font-size: var(--font-size_32);
    font-weight: 700;
    margin: 0;
}
.partners_item__title {
    font-weight: 700;
    margin: 15px 0 0;
}
.partners_item__address {
    margin: 0;
}
.partners_item__phones, .partners_item__web {
    margin-top: 20px;
    gap: 7px;
    line-height: var(--font-size_20);
}
.partners_item__phones__content {
    flex-direction: column;
    gap: 7px
}
.partners__header {
    color: #e2461c;
    font-weight: 800;
    font-size: var(--font-size_48);
    margin: 0;
}
@media (max-width: 992px) {
    .partners_items {
        flex-direction: column;
        align-items: center;
    }
    .partners_item {
        width: 550px;
    }
    .partners__header {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .partners {
        margin: 50px 20px 0;
    }
    .partners__header {
        font-size: 2rem;
    }
    .partners_items {
        margin-top: 30px;
        gap: 35px
    }
    .partners_item {
        width: 100%;
        border-radius: 40px;
        padding: 25px;
        font-size: var(--font-size_15);
    }
    .partners_item__country {
        font-size: var(--font-size_24);
    }
    .partners_item__title {
        margin-top: 5px;
    }
    .partners_item__phones, .partners_item__web {
        margin-top: 15px;
        gap: 5px;
    }
    .partners_item__phones__content {
        gap: 3px;
    }
}



footer {
    margin: 40px 0 0;
}
.footer__container {
    background-color: #ff7e1d;
    color: #ffffff;
    padding-bottom: 60px;
    font-size: var(--font-size_20);
    font-weight: 400;
}
.footer__top {
    height: 161px;
    background-image: url("../img/footer-xxl.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Resize the background image to cover the entire container */
}
.footer__items {
    padding: 0 40px;
    gap: 170px
}
.footer__item {
    flex-direction: column;
    gap: 15px
}
.footer__item__contacts {
    flex-direction: column;
    gap: 25px
}
.footer__item__contacts__phones {
    flex-direction: column;
    gap: 25px
}
.footer_item__content {
    gap: 7px;
}
.footer__item__logo {
    width: 135px;
    height: 135px;
}
.footer__item__title {
    font-size: var(--font-size_32);
    font-weight: 700;
    margin: 0 0 15px;
}
.footer__link {
    color: #ffffff;
    font-size: var(--font-size_24);
    line-height: var(--font-size_24);
    font-weight: 600;
}
.footer__whatsapp {
    height: 60px;
    margin-left: 30px;
}
.footer__bottom {
    text-align: center;
    padding-top: 40px;
    background-color: #ff7e1d;
    color: #ffffff;
}
@media (max-width: 992px) {
    .footer__top {
        background-image: url("../img/footer-md.png");
    }
}
@media (max-width: 768px) {
    .footer__top {
        height: 100px;
        background-image: url("../img/footer-xs.png");
        background-size: 100% 100px;
    }
    .footer__items {
        align-items: center;
        padding: 0 20px;
        gap: 40px;
        flex-direction: column;
    }
    .footer__item {
        width: 300px;
        gap: 10px
    }
    .footer__item__reg_nr {
        text-align: center;
    }
    .footer__item__title {
        font-size: var(--font-size_25);
    }
    .footer__item__logo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .footer__container {
        font-size: var(--font-size_15);
    }
    .footer__link {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    .footer__item__contacts__phones {
        gap: 15px;
    }
    .footer__item__contacts {
        gap: 15px;
    }
    .footer__whatsapp__container {
        align-self: center;
    }
    .footer__whatsapp {
        height: 40px;
        margin-left: 10px;
    }
}
