.delivery {
    padding-top: 100px;
}

.delivery-header {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    padding-bottom: 12px;
    border-bottom: 6px solid;
    max-width: 325px;
}

.delivery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.delivery-content {
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.delivery-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    min-width: 420px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    padding: 20px;
}

.delivery-content-header {
    padding-top: 64px;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    padding-bottom: 16px;
}

.delivery-content-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    width: 100%;
    height: 75px;
    text-align: center;
}

.delivery-content-image {
    margin-top: 32px;
    width: 100%;
    height: 345px;
    border-radius: 6px;
}

.delivery-content-separator {
    margin-top: 32px;
    width: 100%;
    height: 1px;
    background-color: #CBD5E1;
}

.delivery-content-price {
    padding-top: 32px;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
}

.delivery-content-price-description {
    width: 100%;

    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;

    text-align: center;

    color: #94A3B8;
    margin-bottom: 32px;
}

.delivery-content-action-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 16px;
    text-align: center;
    color: white;
    background-color: #DB522A;
    border-radius: 5px;
    width: 100%;
    height: 52px;
    cursor: pointer;
}


@media (max-width: 768px) {

    .delivery-content {
        flex-direction: column;
        /* gap: 10px; */
        align-items: center;
    }

    .delivery-content-item {
        min-width: 0 !important;
    }
    
}