h1 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 70px;
    font-family: var(--font-family-Tenor);
    color: var(--baseLight-color);
}

h4 {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-color-1);
    font-family: var(--font-family-Tenor);
}

/*********************
START: IMAGE SECTION
*********************/
.image-section {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/assets/img/heroInner-contact.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--baseLight-color);
    position: relative;
    height: 600px;
}

.image-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.30));
}

.custom-intro {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.custom-intro__title {
    margin-bottom: 0px;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.25;
}

/*********************
END: IMAGE SECTION
*********************/


/*********************
START: TESTIMONIALS
*********************/
.testimonials {
    padding-top: calc(2 / 4* var(--global-section-padding)) !important;
    padding-bottom: calc(2 / 4* var(--global-section-padding)) !important;
}

.testimonials ul {
    padding-inline: 0;
    max-width: 1080px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    list-style: none;
}

.testimonials__item {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 40px 36px 32px;
    background: var(--baseLight-color);
    border: 1px solid #ECECEC;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: var(--text-color-1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.testimonials__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.testimonials__quote {
    font-family: var(--font-family-Tenor);
    font-size: 84px;
    line-height: .6;
    color: #D8C7A8;
    height: 40px;
    margin-bottom: 12px;
}

.testimonials .testimonial-stars {
    display: flex;
    gap: .15rem;
    font-size: 20px;
    margin-bottom: 14px;
}

.testimonials .testimonial-stars__star--full { color: #f5a623; }
.testimonials .testimonial-stars__star--empty { color: #d9d9d9; }
.testimonials .testimonial-stars__star--half {
    position: relative;
    color: #d9d9d9;
}
.testimonials .testimonial-stars__star--half::before {
    content: "?";
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 50%;
    overflow: hidden;
    color: #f5a623;
}

.testimonials__title {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 14px;
    font-family: var(--font-family-SuiteHome);
    font-weight: 400;
}

.testimonials-list__item-content {
    flex: 1 1 auto;
}

.testimonials-list__item-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color-1);
}

.testimonials__name {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid #ECECEC;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--secondary-color);
}

.testimonials--noPosts {
    font-size: var(--text-2xl);
    color: var(--Ocean);
    border: 1px solid var(--Yarrow);
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-family: var(--font-family-Tenor);
}
/*********************
END: TESTIMONIALS
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1320px) and (max-width: 1439px) {}

@media screen and (max-width: 1319px) {}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 992px) {
    .testimonials ul{
        padding-inline: 40px;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .custom-intro__title {
        font-size: 32px;
    }

    .testimonials ul{
        padding-inline: 24px;
    }

    .testimonials__item {
        padding: 32px 24px 28px;
    }

    .testimonials__title {
        font-size: 21px;
    }

}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 425px) {}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/