body {
    margin: 0;
    padding: 0;
    background-color: #FEFFFF;
}

.introduction__heading {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    line-height: 150%;
    color: #3E606F;
    margin: 1em 0;
    letter-spacing: 1px;
}

.introduction__text {
    font-size: 1em;
    line-height: 175%;
}

.masthead-heading,
.masthead-intro {
    text-align: center;
    color: #FFF;
}

.masthead {
    padding: 6em 0;
    background-image: url('/assets/about-bg.jpg');
    background-color: linear-gradient(90deg, rgba(0, 155, 157, 1) 0%, rgba(26, 56, 118, 1) 100%);
    background-size: cover;
    background-repeat: no-repeat;

}

.masthead-intro {
    margin-bottom: 0.1em;
    font-family: "Gentium Book Basic", Georgia, serif;
    font-size: 2em;
}

.masthead-heading {
    margin-top: -0.2em;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: bold;
    font-size: 4em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}

.questions-section h2 {
    font-family: "Gentium Book Basic", Georgia, serif;
    font-size: 1.2em;
    font-weight: bold;
}

.introduction-section,
.location-section,
.questions-section {
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
}

/* ---- Splide CSS ---- */
.about__gallery {
    padding: 3em 0;
}

.about__gallery .splide__track:hover {
    cursor: grab;
}

.gallery__image {
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 2em;
}

.gallery__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section__cta {
    margin: 2em 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* ---- No Animate Button ---- */

.custom_no_animate_button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    padding: 10px;
}

.custom_no_animate_button .no_animate {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    background: linear-gradient(90deg, rgba(0, 155, 157, 1) 0%, rgba(26, 56, 118, 1) 100%);
    border-radius: 1000px;
    transition: all 350ms linear;
}

.custom_no_animate_button .label_content {
    padding-inline-start: unset;
}

/* ---- Customer Stories ---- */

.section__heading {
    text-align: center;
    padding-top: 2em;
}

/* Stories Slider Card CSS */
#stories__autoscroll{
    padding: 4em 0;
}

.customer__stories .splide__track:hover {
    cursor: grab;
}

figure.snip1200 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    height: 350px;
    max-height: 350px;
    width: 100%;
    max-width: 100%;
    background: #000;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    border-radius: 2em;
}

figure.snip1200 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

figure.snip1200 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    position: relative;
    opacity: 0.9;
}
.review__img{
    position: relative;
    max-width: 150px;
    overflow: hidden;
}
.review__img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure.snip1200 figcaption {
    position: absolute;
    top: 45%;
    left: 7%;
    right: 7%;
    bottom: 45%;
    border: 1px solid white;
    border-width: 1px 1px 0;
    border-radius: 2em;
}

figure.snip1200 .heading {
    overflow: hidden;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    bottom: 0;
    width: 100%;
}

figure.snip1200 .review__wrapper {
    display: table;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    text-align: center;
    width: auto;
    text-transform: uppercase;
    font-weight: 400;
}


figure.snip1200 .review__wrapper span {
    font-weight: 800;
}


figure.snip1200 .review__wrapper:before {
    left: -1000%;
}

figure.snip1200 .review__wrapper:after {
    right: -1000%;
}

figure.snip1200 p {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    padding: 0 20px;
    margin: 0;
    opacity: 0;
    line-height: 1.6em;
    font-size: 0.9em;
}

figure.snip1200 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

figure.snip1200:hover img,
figure.snip1200.hover img {
    opacity: 0.25;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

figure.snip1200:hover figcaption,
figure.snip1200.hover figcaption {
    top: 7%;
    bottom: 7%;
}

figure.snip1200:hover p,
figure.snip1200.hover p {
    opacity: 1;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

@media only screen and (max-width: 750px){
    .introduction-section{
        padding: 0 20px;
    }

    .introduction-section h1{
        flex-direction: column;
    }
}