.offers-section {
    position: relative;
}

.offers__wrapper {
    padding-top: 40px;
    padding-bottom: 120px;
}

.offers__titles {
    text-align: center;
}

.offers__title {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 20px;
    color: #212121;
    font-weight: 500;
}

.offers__title span {
    color: #d0a650;
}

.offers__text {
    font-size: 18px;
    line-height: 24px;
    color: #212121;
    font-weight: 300;
    margin: 0 auto 60px auto;
    max-width: 960px;
}

.offers__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.offers__list-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    height: 400px;
}

.offers__list-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.offers__item-content {
    padding: 34px;
    z-index: 2;
}

.offers__item-title {
    font-size: 20px;
    line-height: 28px;
    color: #f2f2f2;
    font-weight: 600;
    margin-bottom: 20px;
}

.offers__item-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 30%, transparent);
    z-index: 0;
    pointer-events: none;
}

.offers__list-item:hover .offers__item-link {
    color: #fff;
    transition-delay: .5s;
}

.offers__list-item:hover .offers__item-link svg path {
    stroke: #fff;
    transition-delay: .5s;
}

.offers__list-item:hover .offers__item-link span,
.offers__list-item:hover .offers__item-link svg {
    z-index: 1;
}

.offers__list-item:hover .offers__item-link::before {
    transition-delay: 0s;
    width: 100%;
}

.offers__list-item:hover .offers__item-link::after {
    background: #d0a650;
    transition-delay: .35s;
    width: 100%;
}

.offers__list-item:hover img {
    transform: scale(1.2);
}
@media screen and (max-width: 600px) {
    .offers__list{
        grid-template-columns: 1fr;
    }
}