* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.deliver_section {
    padding: 100px 0;
    width: 100%;
    max-height: 640px;
    background-color: #f3f5ee;
}

.deliver_container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 110px;
}

.deliver_image {
    display: flex;
    gap: 20px;
}

.deliver_images {
    display: flex;
    flex-direction: column;
    padding: 30px 0px 0px 0px;
    gap: 20px;
}

.deliver1_image img {
    width: 350px;
    height: 420px;
    transition: transform 0.3s ease-in-out;
}

.deliver_images img {
    width: 210px;
    height: 210px;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.deliver_images img:hover {
    transform: scale(0.9);
}

.deliver1_image img:hover {
    transform: scale(1.05);
}

.deliver_text {
    padding: 0px 30px 0px 0px;
}

.deliver_text h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 13px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.deliver_text p {
    font-size: 1rem;
    color: #474747;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;

}

.icon img {
    width: 12px;
    height: 12px;

}

.icon_image {
    width: 30px;
    height: 30px;
    background-color: #b3002d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.icon_image:hover{
    background-color: #e25e7f;
}
.icon h3 {
    font-size: 1rem;
    color: #474747;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 1.5;
}