div.packages {
    margin-top: 0;
    background-color: rgba(233, 76, 59, 0.1);
    margin-bottom: 50px;
    border-radius: 27px;
    /* padding: 30px; */
    /* width: calc(1240px - 60px); */
}
div.packages h2 {
    padding: 30px 30px 20px 30px;
}

div.packages div.child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 30px;
}
a.package {
    position: relative;
    width: calc(33.33% - (10px + 14px));
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 5px solid #fff;
    text-decoration: none;
    color: #000;
}
a.package:hover {
    opacity: 0.7;
}
a.package img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
a.package div.texts {
    margin: 16px;
}
a.package p.package-name {
    font-size: 22px;
    font-weight: 600;
}
a.package p.duration {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 15px;
    color: #353535;
}
a.package p.duration span {
    display: block;
    padding-left: 7px;
}
a.package p.duration svg {
    height: 16px;
    width: 16px;
    display: flex;
    fill: #454545;
    overflow: visible;
}

a.package div.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    margin: 0 16px 10px 16px;
}
a.package div.footer p.rating {
    overflow: visible;
    display: flex;
    align-items: center;
    font-size: 15px;
    span {
        padding-left: 7px;
        color: #454545;
    }
    svg,
    img {
        height: 16px;
        width: 16px;
        display: flex;
        fill: #f7a22b;
    }
}
a.package div.footer p.price {
    color: #454545;
    font-size: 15px;
    span {
        color: #000;
        font-size: 17px;
        font-weight: 500;
    }
}

p#popular-package {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 10px;
    background-color: #f7a22b;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border-radius: 5px;
}

@media only screen and (max-width: 1040px) {
    a.package {
        width: calc(50% - (10px + 14px));
    }
}