h1 {
    margin-bottom: 30px;
}

h2, h3, .h2, .h3 {
    margin-top: 70px;
    margin-bottom: 35px;
    padding: 0;
}

@media (width <= 767.98px) {
    h2, h3, .h2, .h3 {
        margin-block: 2rem 1rem;
    }
}

.h3 {
    text-transform: initial;
    font-size: 28px;
    font-weight: bold;
}

.h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 600;
}

.h5 {
    font-size: 16px;
    font-weight: 600;
}

.b-hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 45px;
    padding: 20px 60px 60px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffbea7;
}
.b-hero__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.b-hero__bg-img img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.b-hero__title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}
.b-hero__text {
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: normal;
    color: #fff;
}
.b-hero__published {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}
@media (width <= 767.98px) {
    .b-hero {
        height: auto;
        padding: 40px 20px 80px;
        /* background-position-x: 70%; */
    }
    .b-hero__title {
        max-width: 60%;
        font-size: 28px;
    }
    .b-hero::after {
        display: none;
    }
}

.table-styled {
    --head-bg-color: #db473f;
    --head-color: #fff;
    --border-color: #ffd9cf;
    --bg-color: #fff;
}
.table-styled :is(td, th) {
    font-weight: 300;
}
.table-styled thead :is(td, th) {
    background: linear-gradient(to top, #db473f, #ff996f);
}
.table-styled tbody tr:nth-child(odd) td {
    background: #f8f8f8;
}
.table-styled thead :is(td, th) {
    font-size: 20px;
}
.table-styled td:first-child {
    font-size: 16px;
    font-weight: bold;
    color: #ff592b;
}


.g-box {
    margin-block: 45px 90px;
    display: grid;
    grid-auto-flow: column;
    gap: 20px;
}
.g-box__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 40px;
    border-radius: 8px;
    background: #db473f linear-gradient(to right, #d34747, #ff5628 36%, #ffc19c);
    color: #fff;
}
.g-box__item-title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
}
.g-box__item-text {
    font-size: 16px;
    line-height: 1.2;
}

