    @import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Poppins&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap');

    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    }

    .navbar {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    background-color: #333;
    margin-bottom: 5rem;
    }

    .active{
    border-bottom: 1px solid orange;
    }

    .logo .first {
    color: #f2f2f2;
    font-size: 1.5em;
    }

    .logo .last {
    color: orange;
    font-size: 1.8em;
    }

    .menus {
    display: flex;
    list-style-type: none;
    }

    .menus a {
    color: #f2f2f2;
    text-decoration: none;
    margin: 0 10px;
    }

    .menus a:hover {
    color: #ddd;
    }

    .burger-menu {
    display: none;
    }

/* background-pattern for desktop */
.background-pattern_desktop{
    display: none;
    min-height: 25%;
    position: absolute;
    top: 7%;
    bottom: 75%;
    width: 100vw;
    z-index: -9999;
}

.background-pattern_desktop img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}
/* background pattern for mobile */
.background-pattern_mobile{
    min-height: 25%;
    position: absolute;
    top: 0;
    bottom: 75%;
    width: 100vw;
    z-index: -9999;
}

.background-pattern_mobile img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

    @media screen and (max-width: 600px) {
    .menus {
        display: none;
    }

    .burger-menu {
        display: block;
        cursor: pointer;
        color: #fff;
    }

    .burger-menu-items {
        display: none;
        position: absolute;
        background-color: #333;
        width: 100%;
        list-style-type: none;
        padding: 0;
        right: 0;
        margin-top: 2rem;
    }

    .burger-menu-items a {
        display: block;
        color: #f2f2f2;
        text-decoration: none;
        padding: 14px 16px;
    }

    .burger-menu-items a:hover {
        background-color: #ddd;
        color: #333;
    }

    .burger-menu.open .burger-menu-items {
        display: block;
        animation: nav-animation  0.7s ease-in;
    }
    }

    /* footer */
    footer{
    width: 100vw;
    padding: 14px 16px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    margin-top: 15%;
    /* position: fixed;

    bottom: 0; */

    }
    .footer{
    display:flex;
    flex-direction: column;
    gap: 2em;
    padding: 2em;
    /* gap: 40%; */
    max-width: 100vw;
    justify-content: space-between;
    }
    .copyright{
    color: white;
    align-self: center;
    background-color: #333;
    text-align: center;
    }

    .contacts{
    display: flex;
    gap:1em;
    flex-direction: column;
    }

    .icon{
    text-decoration: none;
    color: white

    }

.faq-body{
    /* background: url("assets/images/background-pattern-mobile.svg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat; */
  
    background-color: hsl(275, 100%, 97%);
    width: 100vw;
    height: 100vh;
   
}


/* common layout designs */
ul{
    list-style: none;
}

.faq-container{
    width:75%;

    
    /* position: absolute; */
    /* top: 10%;
    left: 12.5%;
    right: 12.5%; */

    background-color: hsl(0, 0%, 100%);
    padding: 1em 2em;
    border-radius: 1rem;
    margin: auto;
   
}


/* card styling */

.faq-card-header{
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    margin-bottom: 1em;
}

/* questions section */
.questions__question{
    margin-bottom: 1em;
}
.questions__question:not(:last-child){
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}
.question__top{
    display: flex;
    gap: 1em;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1em;
    align-items: center;
}
.question__top p:hover{
    cursor: pointer;
    color:orange;
}
.question__top img:hover{
    cursor: pointer;
}
.question__bottom{
    color:hsl(42, 26%, 37%);
    opacity: .7;
    font-weight: 400;
    display: none;
    margin-bottom: .5em;
}
.opened{
    display: block;
}





@media (min-width:1440px){
    .background-pattern_mobile{
        display: none;
    }
    .background-pattern_desktop{
        display: block;
    }
}

@media (min-width:1000px){
    .faq-container{
        width: 700px;
        left: 25%;
    }
}

    @media (min-width: 900px){
        /* Footer */
        .footer{
            flex-direction: row;
            justify-content: space-between;
    }
        .contacts{
            flex-direction: row;
        }
        .icon{
            font-size: 1.5rem;
        }
    }

    @keyframes nav-animation{
    0% {
        opacity: 0;
        
    }

    /* 50% {
        opacity: 0.5;
    } */
    100%{
        opacity: 1;
    }
    }
