header{
    position: relative;
}
.FAQ-title{
    color: var(--cl-green);
    text-align: center;
    font-family: var(--ff-secondary);
    font-size: 1.2rem;
    padding-top: 10px;
}
.FAQ-title-img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: .9;
    z-index: -10;
}
.dropdown_icon {
    width: 20px;
    height: 20px;
    fill: #000; 
    cursor: pointer;
    transition: .2s ease;
}
.main{
    background-color: var(--cl-white);
    margin-top: 40px;
    padding: 2em 1em;
}

.question-wrapper{
    background: rgb(161, 161, 161);
    border-radius: 20px;
    padding: 0 1em
}
.question-section{
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.question{
    font-family: var(--ff-secondary);
    font-size: 1rem;
}
.answer{
    margin: 0;
    padding-bottom: 10px;
    font-family: var(--ff-primary);
}
.rotateFaq {
    transform: rotate(180deg); 
}

.answer-wrapper{
    max-height: 0;
    overflow: hidden;
    display: none;
}
.answer-wrapper.active{
    max-height: 1000px;
    overflow: visible;
    display: block;
}
.Faq-splitter{
    width: 100%;
    color: black;
}


.contact-title__desktopView{
    display: none;
}
.contacts{
    /* text-align: center; */
    background: var(--cl-blue);
    padding: .5em;
}
.contact-title{
    font-family: var(--ff-secondary);
    color: #cfcfcf;
    font-size: 1.75rem;
}
.contact-text{
    font-family: var(--ff-primary);
    letter-spacing: 1px;
    color: #f1e8e8;
    font-size: .9rem;
    font-weight: 100;
    text-align: left;
    margin-right: 20px;
}
.Google-map{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: var(--bs);
    margin-bottom: 30px;
}
/* Form */
.form{
    margin: 3em 0;
}
.form-input{
    display: block;
    margin-bottom: 1em;
    background: #d7d7d7;
    border: none;
    border-radius: 2px;
    width: 90%;
    padding: .3em;
    font-family: var(--ff-primary);
}
.form label{
    font-family: var(--ff-primary);
    color: #e7e7e7;
}
.form-cbtn{
    width: 90%;
    text-align: center;
}
.form-btn{
    color: var(--cl-blue);
    background: #e7e7e7;
    border: none;
    border-radius: 5px;
    padding: .4em .8em;
    font-weight: 600;
    box-shadow: var(--bs);
    cursor: pointer;
}

.products-splitter{
    display: none;
}


/* footer */

.f-footer{
    font-size: 1.5rem;
    margin: 1.5em;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-link{
    color: #c1c1c1;
    font-family: var(--ff-primary);
    text-decoration: none;
}
.footer-text{
    text-align: center;
    color: #c1c1c1;
    font-family: var(--ff-primary);
    font-weight: 100;
}

@media(min-width){
    
}

@media(min-width:768px){
    .main{
        padding: 3em 1em;
    }
    .question-wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
        text-align: center;   
        
        padding: 1em;
    }
    .Faq-splitter{
        display: none;
    }
    .dropdown_icon{
        display: none;
    }
    .answer-wrapper{
        max-height: 1000px;
        overflow: visible;
        display: block;
    }
    .question-section{
        display: block;
    }

    .FAQ-title{
        font-size: 2em;
        margin: 2em 2em;
    }
    .FAQ-title-img{
        display: none;
    }


     /*footer*/
     .contact-title__desktopView{
        display: block;
    }
    .contacts{
        padding: 3em 0;
    }
    .contact-title{
        text-align: left;
        margin-left: 30px;
    }
    .flex-footer{
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .flex-map hr{
        display: none;
    }
    .P-S__footer{
        background: var(--cl-white);
    }

    .flex-contact{
        display: flex;
        flex-direction: column-reverse;
    }
   
    .contact-title__mobileView{
        display: none;
    }
    .contact-text{
        font-size: 1rem;
        font-weight: 200;
        width: 90%;
    }
    .form{
        margin: 0;
        width: 100%;
    }

    .map-img{
        padding-top: 1.5em;
    }

   .footer-text{
        margin-top: 2em;
        margin-left: 100px;
        font-size: .9em;
   }

   .products-splitter{
    display: block;
    transform: rotate(180deg);
    width: .5px;
    opacity: .7;
    background: rgb(217, 217, 217);
}
}