/* 
* Section single prices hero
* Section single prices description
*/
/* ! Section single prices hero start ! */
.single-prices-hero {
    padding: 20px 0;
}
.single-prices-hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.single-prices-hero__title {
    width: 100%;
    max-width: 880px;

    color: var(--blue_text, #162250);
    font-family: var(--font-literata);
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 105%; /* 100.8px */
    letter-spacing: -4px;
}
.single-prices-hero__image {
    width: 100%;
    max-width: 930px;
    height: 410px;
    border-radius: 20px;
    overflow: hidden;
}
.single-prices-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (width <= 1440px) {
    .single-prices-hero__title {
        font-size: 70px;
    }
}
@media screen and (width <= 1100px) {
    .single-prices-hero .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .single-prices-hero__title,
    .single-prices-hero__image {
        max-width: none;
    }
}
@media screen and (width <= 768px) {
    .single-prices-hero__title {
        font-size: 42px;
        letter-spacing: normal;
    }
    .single-prices-hero__image {
        height: 360px;
    }
}
@media screen and (width <= 576px) {
    .single-prices-hero__image {
        height: 240px;
    }
}
/* ! Section single prices hero end ! */

/* ! Section single prices description start ! */
.single-prices-description {
    margin: 0;
    overflow-x: auto;
}
.single-prices-description .container {
    min-width: min-content;
}
.single-prices-description table {
    margin: 0;
    background-color: var(--color-white);
}
.single-prices-description th {
    line-height: unset;
}
/* ! Section single prices description end ! */
