﻿/* ------------ Fonts ---------- */


/**** TEKO *****/
@font-face {
    font-family: Teko;
    src: url("font/Teko-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}

/**** Inter ****/
@font-face {
    font-family: Inter;
    src: url(font/Inter-Bold.woff2) format("woff2"), url(font/Inter-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-ExtraBold.woff2) format("woff2"), url(font/Inter-ExtraBold.woff) format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-Medium.woff2) format("woff2"), url(font/Inter-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-Regular-Italic.woff2) format("woff2"), url(font/Inter-Regular-Italic.woff) format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-Regular.woff2) format("woff2"), url(font/Inter-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-SemiBold-Italic.woff2) format("woff2"), url(font/Inter-SemiBold-Italic.woff) format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url(font/Inter-SemiBold-Italic.woff2) format("woff2"), url(font/Inter-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.faqholder {
    max-width: min(100%, 1140px);
    margin: 0 auto;
    padding: 0 20px;
}

.accordion {
    background-color: transparent;
    color: #a6a6a6;
    ;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    line-height: 160%;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}


.active {
    color: #ffdea8;
    font-weight: 400;
    border-bottom: 1px solid #212121;
    transition: all 0.4s ease-in-out;
}

.accordion:after {
    content: "";
    background-image: url(../image/faq_img/icon-chev-down.svg);
    height: 17px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(4px);
    transition: all 0.4s ease-in;
    filter: grayscale(1) brightness(0.6);
}

.active:after {
    transition: all 0.4s ease-out;
    filter: grayscale(0) brightness(1);
    transform: translateY(-2px);
    transform: rotate(180deg);
}



.panel {
    padding: 0 18px;
    color: #a6a6a6;
    ;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid #3d3d3d;
}

    .panel li {
        margin-bottom: 1rem;
    }

ul > li {
    margin-bottom: 0.3rem;
}

/* ------------ Typography CSS ---------- */
.faqh4 {
    font-family: Teko, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 24px;
    text-align: start;
    text-transform: uppercase;
    color: #ffdea8;
    margin: 2rem auto 0.25rem auto;
}

.faqh4Inter {
    font-family: Inter, Sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    margin: 0 auto;
    color: #ffdea8;
}

    .faqh4Inter.faqsubitem {
        margin-top: 2rem;
    }


h4 {
    font-size: 1.5rem;
    font-family: Teko, Sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.panel p {
    line-height: 175%;
    font-size: 1rem;
    margin-bottom: 1.5em;
}

.panel a {
    color: #ffdea8
}
