/* Услуги */
.offers {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.offer__block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin-top: 20px;
}

.offer__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.offer__text p {
    margin-block-start: 0;
    margin-block-end: 0;
}

.offer__text ul {
    margin: 0;
}

.header__list {
    margin-left: -40px;
    margin-bottom: 10px !important;
}

.offer__block h2 {
    text-align: unset;
}

.offer__block img {
    margin-top: 20px;
    max-width: 550px;
    max-height: 550px;
}

.offer__block img[class="baggage"] {
    padding-top: 60px;
}

.camp__img {
    max-width: 450px;
    max-height: 450px;
    border-radius: 25px;
}

/* Бесплатно */
.free {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, rgb(26, 60, 165) 32%, rgb(245, 245, 245) 100%);
    max-width: 100%;
}

.free__text {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.free__text h3 {
    font-size: 36px;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.free__text p {
    font-size: 24px;
}

.social__img {
    width: 40px;
    height: 40px;
    transition: 250ms;
}

.social__img:hover {
    transform: scale(1.1);
}

/*=================================МОБИЛЬНЫЙ АДАПТИВ==========================================*/

@media (max-width: 1024px) {
    .offer__block {
        flex-direction: column;
        max-width: 100vw;
    }

    .offer__block[alt="left"] {
        flex-direction: column-reverse;
    }

    .offer__block img, .camp__img {
        max-width: 80%;
        align-self: center;
    }

    .offer__block img[class="baggage"] {
        padding-top: unset;
        max-height: 400px;
        align-self: center;
    }

    .offer__text ul {
        padding-left: 40px;
    }

    .free {
        background: var(--primary-color);
    }

    .free__text {
        gap: 20px;
    }

    .free__text p {
        font-size: 24px;
        color: white;
    }
}