section.section_first {
    height: 50vh;
    background: linear-gradient(to bottom, #000000, #1abc9c);
}

div.FAQ_section div.FAQ {
    background-image: linear-gradient(to bottom, #262626, #252e33);
    padding: 10px 17px;
    cursor: pointer;
    width: 60%;
    margin-bottom: 14px;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

div.FAQ_section div.answer {
    max-height: auto;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

div.FAQ_section div.answer.open {
    max-height: 200px;
}

div.FAQ_section div.answer p {
    margin: 10px 0;
    color: white;
    font-size: 14.5px;
}

h4.plus {
    rotate: 0deg;
}

h4.plus.rotate {
    rotate: -45deg;
}

div.testimonial_section {
    padding: 0px 4rem;
}

div.testimonial_section div.main-box {
    width: 32%;
    border: 1px solid #727272;
    padding: 23px 21px;
    border-radius: 16px;
}

div.FAQ_section div.FAQ:hover {
    background-image: linear-gradient(to bottom, #21BDA6, #21BDA6);
    color: black;
}

div.testimonial_section div.main-box:hover {
    background-color: #21BDA6;
    transform: scale(1.05);
}

div.testimonial_section div.main-box div.image_box {
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.testimonial_section div.main-box p {
    font-size: 14.5px;

}

div.FAQ_section h2.frequently_asked_questions {
    margin-top: 0rem !important;
}

div.FAQ_section h2.frequently_asked_questions div.col:hover {
    background-image: linear-gradient(to bottom, #21BDA6, #21BDA6);
}

div.FAQ_section h3.color_text {
    color: #1abc9c;
    font-weight: 700;
    font-size: 37px;
    margin-top: 2rem;
}

@media screen and (max-width:1000px) {
    div.FAQ_section h2.frequently_asked_questions {
        font-size: 30px;
    }

    div.FAQ_section div.FAQ {
        width: 80% !important;
    }

    div.FAQ_section h3.color_text {
        width: 80% !important;
    }
}

@media screen and (max-width:600px) {
    div.FAQ_section h2.frequently_asked_questions {
        font-size: 30px;
    }

    div.FAQ_section div.FAQ {
        width: 100% !important;
    }

    div.FAQ_section h3.color_text {
        width: 100% !important;
    }
}