@font-face {
  font-family: 'caviar_dreamsbold';
  src: url('font-family/CaviarDreams.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'caviar_dreamsbold';
  src: url('font-family/CaviarDreams_Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Josefin Sans', sans-serif;
  src: url('font-family/JosefinSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Josefin Sans', sans-serif;
  src: url('font-family/JosefinSans-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    background-color: #0f1d22;
    color: #fff;
}
img {
    display: block;
}
.container{
    max-width: 600px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.background {
    background: url('img/hero-asset.png.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 20px;
}

.background .text-center {
    text-align: center;
    margin-bottom: 30px;
}

.background .logo {
    width: 100%;
    max-width: 145px;
    margin: 0 auto;
    display: block;
}

.background h1 {
    font-family: caviar_dreamsbold, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #88998c;
    font-size: 48px;
    line-height: 1.27em;
    letter-spacing: .22em;
}

.background .tagline {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.background .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.eltdf-title-decor {
    margin: 15px 0;
}
.background .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #88998c;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    margin: 5px 0;
    max-width: calc(100% - 30px);
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    transition: background-color 0.3s;
    font-family: 'caviar_dreamsbold';
}

.background .btn:hover {
    background-color: #88998c;
}

.background .btn i {
    font-size: 22px;
}

.background .subtext {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.background .btn .d-flex {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.background .btn .d-flex div {
    text-transform: uppercase;
}
@media(max-width: 767.98px){
    .background h1 {
        font-size: 40px;
    }
}

/* faq */
.faq-sec {
    margin: 70px 0;
}
.faq-sec h2.faq-title {
    font-size: 40px;
    margin-top: 0;
        font-family: caviar_dreamsbold, sans-serif;
    font-weight: 700;
}
.faq-sec .accordion {
    border-top: 1px solid #333;
}

.faq-sec .accordion-item {
    border-bottom: 1px solid #333;
}

.faq-sec .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}
.faq-sec .accordion-header div:first-child {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.faq-sec .accordion-header:hover {
    background-color: #1111114d;
}

.faq-sec .accordion-icon {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.5s;
}
.faq-sec .accordion-content {
    display: none;
    padding: 0 15px 15px;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}

.faq-sec .accordion-item.active .accordion-content {
    display: block;
    padding-top: 15px;
}
@media(max-width: 767.98px){
    .faq-sec h2.faq-title {
        font-size: 30px;
    }
    .faq-sec {
        margin: 50px 0;
    }
    .eltdf-title-decor img {
        width: 80%;
        margin: 0 auto;
    }
}