@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend Peta';
    src: url('/assets/fonts/LexendPeta-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('/assets/fonts/FiraSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('/assets/fonts/FiraSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('/assets/fonts/FiraSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

.parallax-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#parallax-bg {
    transition: transform 0.1s ease-out;
}

/* This container is needed to clip the overflowing pseudo-element */
.s1parallax-container {
    overflow: hidden;
}


.s1parallax-bg {
    background-image: url('/assets/web-media/Mountains-2.png');
    background-position: center;
    width: fit-content;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

.timeline-dashed-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 50%,
            white 50%,
            white 100%
    );
    background-size: 20px 1px;
    background-position-y: center;
    opacity: 0.7;
    mask-image: linear-gradient(to right, white, black);
    /*-webkit-mask-image: -webkit-linear-gradient(left, white, black);*/
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.active {
    transform: rotate(180deg);
}
.cert-logo {
    filter: grayscale(100%);
    opacity: 1;

}

.cert-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
