/* Set default font */
.content {
    font-family: 'Roboto', sans-serif;
    color: var(--color-onyx);
    font-size: 1.05rem;
}

.content__introduction {
    background: var(--color-jade-emerald-gradient);
    padding: 4em !important;
    @media (max-width: 800px) {
        padding: 3em !important;
    }
    @media (max-width: 650px) {
        padding: 2em !important;
    }
}

.content__section {
    height: auto;
    scroll-snap-align: start;
    background-color: var(--color-snowcap);
    padding: 90px 0;
    &:nth-child(even) {
        background-color: var(--color-background-gray);
    }
}

.glide {
    border-radius: 1em;
    overflow: hidden;
}

h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.4em;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--color-jade);
    @media (max-width: 700px) {
        font-size: clamp(1.5em, 8vw, 2.2em);
        margin-bottom: 20px;
    }
}

h3 {
    font-family: "Roboto Serif", sans-serif;
    font-weight: 400;
    border-left: 5px solid var(--color-citrine);
    padding-left: 20px;
    margin: 50px 0 30px 0;
}

h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.1em, 4vw, 2em);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-jade);
}

ol, ul {
    margin-left: 40px;
    @media (max-width: 1100px) {
        margin-left: 20px;
    }
}

li {
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.5;
}

p {
    font-weight: 400;
    margin: 20px 0;
    line-height: 1.6;
}

.content__section__content__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 80px;
    @media (max-width: 1000px) {
        gap: 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-evenly;
        padding: 0 40px;
    }
    @media (max-width: 600px) {
        padding: 0 30px;
        gap: 30px;
    }
}

.content__section__content__text {
    min-width: 0;
    max-width: 770px;
    @media (max-width: 1000px) {
        max-width: none;
    }
}

.content__section__content__images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media (max-width: 1000px) {
        margin: 0 auto;
    }
}
.content__section__content__images__image {
    object-fit: cover;
    overflow: hidden;
    border-radius: 1em;

    height: auto;
    max-height: 60vh;
    max-width: 40vw;
    
    @media (max-width: 1000px) {
        aspect-ratio: 4 / 3;
        width: 100%;
        max-width: none;
    }
    @media (max-width: 1000px) {
        border-radius: 0.5em;
    }
}

.introduction__slogan {
    font-family: 'Plus Jakarta Sans', serif;
    font-size: 2em !important;
    color: var(--color-snowcap);
    font-weight: 200;
    line-height: 100%;
    margin-bottom: 2em;
    text-align: center;
}

.introduction__description {
    font-family: 'Roboto', serif;
    font-size: clamp(0.8em, 4vw, 1.2em);
    color: var(--color-snowcap);
    font-weight: 300;
    text-align: center;
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
    margin-bottom: 6em;
    line-height: 1.5;

    @media (max-width: 900px) {
        max-width: 80vw;
    }
}

.introduction__pictures__desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 clamp(10px, 7vw, 200px);
    height: auto;
    @media (max-width: 1100px) {
        display: none;
    }
}

.introduction__pictures__desktop__image {
    object-fit: cover;
    height: auto;
    max-height: 60vh;
    width: 100%;
    border-radius: 1em;
    aspect-ratio: 2 / 3;
}

.introduction__pictures__mobile__image {
    height: 100%; 
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.introduction__pictures__mobile {
    display: none !important;
    height: 50vh;
    margin: 2em auto;
    width: 90% !important;
    
    @media (max-width: 1100px) {
        display: block !important;
    }
    
}

.introduction__pictures__mobile .glide__track, 
.introduction__pictures__mobile .glide__slides {
    height: 100%;
}

.content__section__carousel {
    height: clamp(600px, 80dvh, 90vh);
    margin: 0;
    @media (max-width: 900px) {
        max-height: none;
        min-height: auto;
    }
}

.content__section__carousel .glide__track,
.content__section__carousel .glide__slides {
    height: 100%;
    @media (max-width: 900px) {
        height: auto;
    }
}

.content__section__carousel__layout {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: 100%;
    align-items: stretch;
    margin: 0 auto !important;

    @media (max-width: 900px) {
        flex-direction: column-reverse;
        height: auto;
    }
}

.content__section__carousel__layout__image img{
    height: 100%; 
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.content__section__carousel__layout__image {
    width: 60%;
    height: 100%;
    align-self: stretch;
    overflow: hidden;
    @media (max-width: 900px) {
        width: 100vw;
        height: 40vh;
        height: 40dvh;
    }
}

.content__section__carousel ul {
    list-style-type: disc;

}
.content__section__carousel__layout__text li {
    margin-left: 20px;
    font-size: clamp(0.9em, 3vw, 1.2em) !important;
}

.content__section__carousel__layout__text {
    padding: clamp(30px, 4vw, 50px);
    width: 40%;
    overflow-y: auto;
    @media (max-width: 900px) {
        width: 100%;
        height: auto;
    }
}

.content__section__carousel__layout__text p {
    font-size: clamp(0.9em, 3vw, 1.2em);
}

.content__section__carousel__layout__text h3 {
    font-size: clamp(1.1em, 4vw, 2em);
}

.glide__slide {
    margin: 0 !important;
}

.glide__arrow {
    background-color: rgba(106, 106, 106, 0.3) !important;
    
}

.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    counter-reset: glide-bullet;
}

.glide__bullet {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    background-color:      rgba(141, 141, 141, 0.295) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: background-color 0.2s ease !important;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1;
}

.glide__bullet::before {
    counter-increment: glide-bullet;
    content: counter(glide-bullet);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    
}

@media (max-width: 900px) {
    .glide__bullet {
        display: none;
    }
}

.glide__bullet:hover {
    background-color: rgba(100, 100, 100, 0.7) !important;
}

.glide__bullet--active {
    border: 3px solid white !important
}