section {
    margin-top: calc(60px + 30px);
    margin-bottom: 50px;
}
h1 {
    font-size: 20px;
    font-weight: 400;
    /*color: #5F17C5;*/
    color: rgb(233 76 59);
    line-height: 1.2;
}
h2 {
    margin: 20px 0 10px 0;
    line-height: 1.4;
}
h3 {
    font-weight: 400;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 30px;
}

div.highlights {
    & h2 {
        font-size: 24px;
    }
    & div.child {
        display: flex;
        gap: 20px;
    }
    height: auto;

    & div.highlight {
        flex: 1;
        padding: 20px;
        background-color: #f7f7f7;
        border-radius: 17px;
    }
}
div.highlight p:first-child {
    font-weight: 600;
    font-size: 17px;
}
div.highlight p:last-child {
    font-size: 15px;
    color: #212121;
    margin-top: 10px;
}

div.packages {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    & div.package {
        position: relative;
        width: calc(50% - 10px);
        /*height: 180px;*/
        aspect-ratio: 3.4/1;
        min-height: 180px;
        box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.06) 0 1px 2px 0;
        /*background-color: #f7f7f7;*/
        display: flex;
        gap: 20px;
        border-radius: 17px;
        overflow: hidden;
    }
}

div.package div.image {
    overflow: hidden;
    aspect-ratio: 1/1;
    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
div.package div.texts {
    flex: 1;
    margin: 14px 20px 14px 0;
    & h3 {
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 7px;
    }
    & div.dr {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    & svg {
        height: 16px;
        width: 16px;
        display: flex;
        overflow: visible;
        fill: #353535;
    }
}
div.package div.texts div.dr p {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    color: #212121;
    & img {
        height: 16px;
        width: 16px;
    }
}
div.package div.texts p.price {
    margin-top: 14px;
    color: #454545;
    font-size: 15px;
    & span {
        color: #000;
        font-size: 22px;
        font-weight: 600;
    }
}
div.package div.links {
    bottom: 18px;
    position: absolute;
    margin-top: 14px;
    display: flex;
    gap: 14px;
}
div.package div.links a {
    font-size: 15px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    color: #212121;
    background-color: #f1f1f1;
    font-weight: 500;
}
div.package div.links a:hover {
    opacity: 0.7;
}
div.package div.links a:first-child {
    background-color: rgb(233 76 59);
    color: #fff;
    box-shadow: 0 0 2px 1px #e8e8e8;
}

@media only screen and (max-width: 1040px) {
    div.packages {
        display: grid;
        & div.package {
            width: 100%;
            aspect-ratio: auto;
            min-height: auto;
            height: 180px;
        }
    }
    div.highlights div.child {
        flex-wrap: wrap;
        & div.highlight {
            flex: auto;
            width: calc(50% - 50px);
        }

    }
}