* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* header */

.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}

.header {
    padding: 5px 0;
    background: #005BBB;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffff;
    font-size: 21px;
}

.header__logo-image {
    width: 50px;
}

.header__offer {
    color: #ffff;
    font-size: 19px;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__contacts a {
    color: #fff;
}

.header__contacts-link {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header__contacts a img {
    width: 30px;
}

/* header */

/* nav */

.nav {
    padding: 10px 0;
    background: #333333;
}

.nav .container {
    display: flex;
    justify-content: space-between;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}

.nav__link {
    transition: 0.5s;
    color: #ffff;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
}

.nav__link:hover {
    background: #007BFF;
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__btn {
    max-width: 200px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding: 5px;
    /* border: 3px solid #FF7F00; */
    outline: 0;
    border: 0;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #FF7F00;
    color: #fff;
    transition: 0.3s ease all;
    z-index: 1;
    cursor: pointer;
}


.nav__btn:hover,
.nav__btn:focus {
    background: #cc5500;
}

.nav__btn:active {
    transform: scale(0.9);
}

/* Бургер-меню */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: 0.3s;
}

/* nav */

/* hero */

.hero {
    padding-top: 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/master-bg.jpg)center center / cover no-repeat;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}

.hero .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__title {
    color: #ffff;
    font-size: 65px;
    margin-bottom: 20px;
}

.hero__title span {
    color: #007BFF;
}

.hero__subtitle {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}

.hero__benefits {
    display: flex;
    color: #fff;
    gap: 20px;
    font-size: 22px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero__btn--green {
    background: #FF7F00;
    padding: 10px 15px;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
}

.hero__btn--green:hover {
    box-shadow: 0 0 5px #ffff;
}

.hero__btn--purple {
    background: #007BFF;
    padding: 10px 15px;
    text-align: center;
    transition: 0.4s;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
}

.hero__btn--purple:hover {
    box-shadow: 0 0 5px #ffff;
}

/* hero */

/* why us */

.why-us {
    background: #f4f4f4;
    padding: 50px 15px;
    text-align: center;
}

.why-us__title {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #005BBB;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.why-us__item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.why-us__item:hover {
    transform: translateY(-5px);
}

.why-us__icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.why-us__text {
    font-size: 18px;
    font-weight: 500;
}

/* why us */

/* service */

.services {
    background: #fff;
    padding: 50px 15px;
    text-align: center;
}

.services__title {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #005BBB;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.services__item {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/furniture.jpeg);
    background-position: center;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.services__item:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/electric.webp);
    background-position: bottom right;
}

.services__item:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/plumbing.jpg);
    background-position: center;
}

.services__item:nth-child(4) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/appliances.webp);
    background-position: center top;
}

.services__item:nth-child(5) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/interior.jpg);
    background-position: center;
}

.services__item:nth-child(6) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/demolition.jpg);
    background-position: center;
}

.services__item:nth-child(7) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/remont.webp);
    background-position: center;
}

.services__item:nth-child(8) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./image/other.webp);
    background-position: center;
}

.services__item:hover {
    transform: translateY(-5px);
}

.services__icon {
    max-width: 80px;
    margin-bottom: 10px;
}

.services__btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    width: 150px;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.services__btn:hover {
    background: #cc5500;
}

/* service */

/* guarantees */

.guarantees {
    padding: 50px 0;
    text-align: center;
}

.section-title {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #005BBB;
}

.guarantees__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee__item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.guarantee__item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.guarantee__icon {
    font-size: 28px;
}

.guarantees__footer {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
}

/* guarantees */

/* masters */

.masters {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 45px;
    color: #005BBB;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.masters__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.master-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.master-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.master-name {
    font-size: 22px;
    color: #007BFF;
    margin-bottom: 5px;
}

.master-experience {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.master-specialty {
    font-size: 16px;
    color: #666;
}

.masters__footer p {
    margin-bottom: 30px;
}

.masters__footer {
    margin-top: 30px;
}

.btn-primary {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #005BBB;
}

/* masters */

/* reviews */

.reviews__btn {
    background: #FF7F00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.reviews {
    text-align: center;
    padding: 50px 0;
}

.reviews-slider {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Показываем по 2 отзыва */
@media (min-width: 768px) {
    .swiper-slide {
        width: 48%;
    }
}

.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    background: #007BFF;
    width: 10px;
    height: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #005BBB;
    opacity: 1;
}

/* Форма отзыва */
.review-form {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.review-form textarea {
    resize: none;
    height: 100px;
}

/* Кнопка закрытия */
.close-form {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.close-form:hover {
    color: #ff0000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* reviews */

/* form */

.order-form {
    text-align: center;
    padding: 50px 0;
    background: #f8f8f8;
}

.order-form .section-title {
    font-size: 45px;
    margin-bottom: 30px;
    color: #333;
    color: #005BBB;
}


#request-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#request-form input,
#request-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#request-form textarea {
    resize: none;
    height: 120px;
}


.request-form__button {
    background-color: #FF7F00;
    color: white;
    padding: 12px 25px;
    /* Меньше отступов */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.request-form__button:hover {
    background-color: #E66A00;
}


.btn-primary {
    background: #FF7F00 !important;
    padding: 12px;
    font-size: 18px;
    color: #fff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ff6600;
    box-shadow: 0 0 5px #005BBB;
}

/* form */

/* how-it-works */

.how-it-works {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 45px;
    margin-bottom: 30px;
    color: #005BBB;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    width: 250px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 30px;
    color: #007BFF;
    font-weight: bold;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #333;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005BBB;
    box-shadow: 0 0 10px rgba(0, 91, 187, 0.5);
}

/* how-it-works */

/* faq */

.faq {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.faq-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background: #FF7F00;
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}

.faq-question:hover {
    background: #ff6600;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* faq */

/* benefits */

.service-benefits {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.service-benefits-title {
    font-size: 45px;
    margin-bottom: 20px;
    color: #005BBB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.benefit-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
    min-height: 200px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefit-item img {
    width: 60px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 18px;
    color: #333;
}

.center {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: #FF7F00;
    color: white;
    font-size: 18px;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    border: 0;
    outline: 0;
}

.cta-button:hover {
    background: #cc5500;
}

/* benefits */

/* promo */

.promotions {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.promo-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.promo-item:hover {
    transform: scale(1.05);
}

.promo-item img {
    width: 60px;
    margin-bottom: 10px;
}

.promo-item p {
    font-size: 18px;
    color: #333;
}

/* promo */

/* contacts */

.contacts {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact-info {
    font-size: 18px;
    color: #333;
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* contacts */

/* footer */

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 20px;
    font-size: 16px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f8f9fa;
}

.footer-column p {
    margin: 5px 0;
}

.footer-column a {
    color: #FF7F00;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links img {
    width: 32px;
    height: 32px;
    transition: 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* footer */

/* Стили для кнопки открытия */
.open-modal-btn {
    padding: 12px 20px;
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.open-modal-btn:hover {
    background: #005BBB;
}

/* Фон модального окна */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Контент внутри модального окна */
.modal-content {
    position: relative;
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Заголовок */
.modal-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
    text-align: center;
}

/* Поля ввода */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Кнопка закрытия */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Кнопка отправки */
.submit-btn {
    background: #FF7F00;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #E66A00;
}


.checkbox-wrapper {
    display: flex;
    margin-bottom: 15px;
    /* Меньше отступов */
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 16px;
    color: #555;
}

.checkbox-label a {
    color: #FF7F00;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}


#request-form .checkbox-wrapper {
    display: flex;
    margin-bottom: 15px;
    /* Меньше отступов */
}

#request-form .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

#request-form .checkbox-label {
    font-size: 16px;
    color: #555;
}

#request-form .checkbox-label a {
    color: #FF7F00;
    text-decoration: none;
}

#request-form .checkbox-label a:hover {
    text-decoration: underline;
}




/* Адаптация под 1080px */
@media (max-width: 1080px) {

    .hero {
        padding-top: 100px;
    }

    .nav .container {
        align-items: flex-start;
    }

    .burger {
        display: flex;
    }

    .nav__list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #333333;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
    }

    .nav__list.active {
        display: flex;
    }

    .nav__btns a:nth-child(1) {
        display: none;
    }
}


@media (max-width: 1200px) {
    .hero__title {
        font-size: 50px;
    }
    .hero__subtitle {
        font-size: 25px;
    }
    .hero__benefits {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 200px;
    }
    .hero__title {
        font-size: 42px;
    }
    .hero__subtitle {
        font-size: 22px;
    }
    .hero__benefits {
        font-size: 18px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .header .container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .header__offer {
        display: none;
    }

    .hero__title {
        font-size: 35px;
    }
    .hero__subtitle {
        font-size: 20px;
    }
    .hero__actions {
        /* flex-direction: column; */
        gap: 15px;
    }

    .checkbox-wrapper {
        flex-direction: column; /* Переходим на вертикальное расположение для мобильных устройств */
        align-items: flex-start; /* Располагаем элементы в начало */
    }

    .checkbox-label {
        font-size: 12px; /* Уменьшаем шрифт для чекбокса */
    }

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }
    .hero__subtitle {
        font-size: 18px;
    }
    .hero__benefits {
        font-size: 16px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .service-benefits-title {
        font-size: 35px;
    }

    .modal-content {
        width: 95%;
    }
}

@media (max-width: 414px) {
    .service-benefits-title {
        font-size: 27px;
    }

    
}

@media (max-width: 360px) {
    .header__contacts a img {
        width: 20px;
    }

    .header__logo {
        font-size: 18px;
    }

    .header__offer {
        font-size: 16px;
    }
}
