﻿.offer {
    background: linear-gradient(rgba(0, 0, 0, 0.85) 0%,rgba(0, 0, 0, 0.85) 100%), url(../assets/heading-background.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offer__inner {
    width: 600px;
    padding:300px 0;
}

.offer__title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
}

.offer__text {
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
}

.offer__button {
    width: 250px;
}

.icon {
    height: 60px;
}

.services {
    background-color: #ffffff;
}

.services__items{

}

.items {
    display: grid;
    padding: 40px 0;
    grid-template-columns: repeat(auto-fit, minmax(290px, 290px));
    grid-gap: 100px;
    justify-content: center;
}

.item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.item__title {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #041554;
}

.item__text {
    font-weight: normal;
    font-size: 14px;
    color: rgba(4, 21, 84, 0.75);
}



.about {
    background: linear-gradient(rgba(0, 0, 0, 0.85) 0%,rgba(0, 0, 0, 0.85) 100%), url(../assets/advantage-background.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 700px));
    justify-content: center;
    grid-gap: 50px;
    padding: 40px 0;
}

.about__item{

}

.about__item-title {
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.about__item-text {
    font-size: 16px;
    color: white;
}

.about__item-img {
    width: 100%;
}

.about__item-button {
    width: 250px;
}


.advantage {
    background-color: #ffffff;
}

.advantage__items{

}


.contact {
    /*    background: linear-gradient(rgba(0, 0, 0, 0.85) 0%,rgba(0, 0, 0, 0.85) 100%), url(../assets/heading-background.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
    background: #fff;
}

.contact-form {
    width: 45%;
    min-width: 250px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0 60px 0;
}

.contact-form__textarea {
    height: 250px;
}



@media (max-width: 1196px) {

    .services__items, .advantage__items {
        grid-gap: 40px;
    }
}

@media (max-width: 768px) {

    .offer__inner {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .offer__title {
        font-size: 22px;
    }

    .offer__text {
        font-size: 14px;
    }

    .offer__button {
        width: 100%;
        font-size: 12px;
    }
}