.offer_section {
    position: relative;
    background-color: #FFF3E2;
    z-index: 1;
}

.offer_section .title_area {
    margin-bottom: 30px;
    text-align: center;
}

.offer_section .title_area h3 {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 30px;
    color: var(--black);
    margin-bottom: 15px;
}

.offer_section .title_area p {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-400);
    font-size: 18px;
    color: var(--black);
}

/* *** Main Area Style *** */
.offer_section .main_area .each_offer {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.offer_section .main_area .each_offer:hover {
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, .10));
    transform: translateY(-20px);
}

.offer_section .main_area a img {
    max-width: 100%;
}