/* _START____________________________ HEADER ____________________________ */
.header_wrapper {

    width: 100%;
    box-shadow: 0px 1px 4px -2px;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 172;
    background: white;
}

.header_content {
    width: 80%;
    display: flex;
    justify-content: space-between;
}


.header_content .logo a {
    user-select: none;
    cursor: pointer;
    color: #202021;
    text-decoration: none;
    font-weight: 700;
}

.header_content .menu {
    display: flex;
    width: 50%;
    justify-content: space-between;
}


.header_content .menu .about_us_page span,
.header_content .menu .contact_us_page span,
.header_content .menu .our_services_page span {
    text-decoration: none;
    color: #202021;
    cursor: pointer;
}

.header_content .menu .about_us_page .hover_effect,
.header_content .menu .contact_us_page .hover_effect,
.header_content .menu .our_services_page .hover_effect {
    width: 0%;
    height: 2px;
    background: #202021;
}

.header_content .menu .about_us_page span:hover+.hover_effect {
    width: 100%;
}

.header_content .menu .contact_us_page span:hover+.hover_effect {
    width: 100%;
}

.header_content .menu .our_services_page span:hover+.hover_effect {
    width: 100%;
}

.header_mob {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
    background: #202021;
    display: none;
}

.header_mob .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin-top: 20px;
}

.header_mob .content .logo a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.header_mob .content .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.header_mob .content .hamburger div {
    width: 20px;
    height: 2px;
    background-color: #d7d7d7;
}

.header_mob .menu {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    height: 0px;
    overflow: hidden;
    background-color: #202021;
    box-shadow: 0 0px 4px -3px white;
    animation: hideMenu 0.3s, ease-out;
}

.header_mob .menu span {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 16px;
}

.header_mob .menu div {
    padding: 15px;
}

.close_hamburger_menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 60;
    display: none;
}

.close_hamburger_menu.active {
    display: block;
}

.menu.active {
    display: flex;
    height: 160px;
    animation: showMenu 0.3s, ease-out;
}

@keyframes showMenu {
    from {
        height: 0;
        display: none;
    }

    to {
        height: 160px;
        display: flex;
    }
}

@keyframes hideMenu {
    from {
        height: 100px;
        display: flex;
    }

    to {
        height: 0;
        display: none;
    }
}

/* _END____________________________ HEADER ____________________________ */
/* _START____________________________ HERO ____________________________ */
.hero {
    width: 100%;
    background: #d7d7d7;
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/background.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .hero_content {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.hero .hero_content .hero_theme {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    border-left: 1px solid #3A5BCC;
    padding-left: 10px;
}

.hero .hero_content .hero_title {
    font-size: 60px;
    font-weight: 700;
    line-height: 58px;
}

.hero .hero_content .hero_info {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    max-width: 1100px;
}

.hero .hero_content .rate_wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 180px;
}

.hero .hero_content .rate_wrapper .star {
    width: 110px;
}

.hero .hero_content .rate_wrapper .rate_number {
    display: flex;
    align-items: baseline;
}

.hero .hero_content .rate_wrapper .how_many {
    font-size: 36px;
    font-weight: 700;
}

.hero .hero_content .rate_wrapper .from {
    font-size: 18px;
    font-weight: 400;
}

.hero .hero_content .rate_wrapper .comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.hero .hero_content .rate_wrapper .count {
    font-size: 46px;
    font-weight: 700;
}

.hero .hero_content .rate_wrapper .customers {
    font-size: 22px;
    font-weight: 400;
}

.hero .image_wrapper {
    position: absolute;
    top: 0;
    left: 10%;
    z-index: -1;
    width: 80%;
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    justify-content: center;
}

.hero .image_wrapper .image img {
    opacity: 0.2;
    width: 100%;
    transform: scale(1.1);
}

.hero span.button {
    background: #3a5bcc;
    border: none;
    border-radius: 5px;
    padding: 12px 60px;
    color: white;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
    text-decoration: none;
    width: 300px;
    text-align: center;
    cursor: pointer;
}

/* _END____________________________ HERO ____________________________ */
/* _START____________________________ ABOUT US ____________________________ */

.about_us {
    width: 100%;
    background-color: #202021;
    opacity: 1 !important;
}

.about_us .about_us_content {
    width: 80%;
    margin: 0 auto;
    padding: 120px 0;
    color: #d7d7d7;
    display: flex;
    justify-content: space-between;
}

.about_us .about_us_content .about_theme {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 32px;
}

.about_us .about_us_content .about_title {
    font-size: 28px;
    font-weight: 700;
    max-width: 600px;
}

.about_us .about_us_content .about_progress p {
    font-size: 18px;
    font-weight: 400;
}

.about_us .about_us_content .about_progress p span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}

.about_us .about_us_content .about_progress>div {
    margin: 10px 0;
}

.about_us .about_us_content .progress_writing .progress {
    width: 90%;
    height: 6px;
    max-width: 600px;
    background: #3A5BCC;
}

.about_us .about_us_content .progress_analysis .progress {
    width: 90%;
    max-width: 600px;
    height: 6px;
    background: linear-gradient(to right, #3A5BCC 25% 90%, white 90%);
}

.about_us .about_us_content .progress_services .progress {
    width: 90%;
    height: 6px;
    max-width: 600px;
    background: linear-gradient(to right, #3A5BCC 25% 95%, white 95%);
}

.about_us .about_us_content .about_affairs {
    display: flex;
    margin: 60px 0;
}

.about_us .about_us_content .title {
    font-size: 24px;
    font-weight: 700;
}

.about_us .about_us_content .about_vision {
    max-width: 700px;
}

.about_us .about_us_content .about_vision .info {
    font-size: 16px;
    font-weight: 400;
    margin-right: 80px;
    margin-top: 10px;
}

.about_us .about_us_content .about_mission {
    max-width: 700px;
    margin-top: 70px;
}

.about_us .about_us_content .about_mission .content_wrapper {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.about_us .about_us_content .mission_content {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about_us .about_us_content .icon_wrapper {
    padding: 5px;
    background-color: #898989;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/* _END____________________________ ABOUT US ____________________________ */
/* _START____________________________ SPECIALIZATION ____________________________ */

.spec {
    width: 100%;
}

.spec .spec_content {
    width: 80%;
    margin: 100px auto 0;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.spec .spec_content .spec_info_wrapper {
    max-width: 700px;
    width: 60%;
}

.spec .spec_content .theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.spec .spec_content .title {
    font-size: 42px;
    font-weight: 700;
}

.spec .spec_content .spec_values {
    margin-top: 20px;
}

.spec .spec_content .spec_values>p {
    font-size: 24px;
    font-weight: 700;
}

.spec .spec_content .spec_values .values_wrapper {
    margin-top: 10px;
    display: flex;
    gap: 30px;
}

.spec .spec_content .spec_values .content p {
    font-weight: 600;
    margin-bottom: 10px;
}

.spec .spec_content .spec_values .content span {
    font-size: 14px;
}

.spec .spec_content .spec_image {
    /* width: 380px; */
    max-height: 500px;
    height: 360px;
}

.spec .spec_content .spec_image img {
    height: 100%;
    width: 100%;
}

/* _END____________________________ SPECIALIZATION ____________________________ */
/* _ START ____________________________ OUR TEAM ____________________________ */

.our_team {
    width: 100%;
    margin-top: 50px;
}

.our_team .our_team_content {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.our_team .our_team_content .theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.our_team .our_team_content .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.our_team .our_team_content .slider_wrapper {
    display: flex;
    padding: 10px 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
}

.slider_wrapper::-webkit-scrollbar-track {
    box-shadow: none !important;
}

.our_team .our_team_content .staff_wrapper {
    display: flex;
    gap: 40px;
    flex-direction: row;
    transition: transform 0.3s ease;
    will-change: transform;
    margin: auto;
    padding: 0 2px;
}

.staff_wrapper.dragging {
    cursor: grabbing;
}

.our_team .our_team_content .staff {
    border-radius: 10px;
    box-shadow: 0 0 2px 1px #7d7d7d7d;
    height: 500px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

.our_team .our_team_content .image_wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 20px;
}

.our_team .our_team_content .image_wrapper img {
    width: 80px;
    height: 80px;
}

.our_team .our_team_content .name_wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.our_team .our_team_content .name_wrapper .name {
    font-weight: 700;
}

.our_team .our_team_content .name_wrapper .profession {
    font-size: 12px;
}

.our_team .our_team_content .about_staff {
    padding: 0 10px;
}

.our_team .our_team_content .about_staff p {
    text-align: justify;
}


/* _ END ____________________________ OUR TEAM ____________________________ */
/* _START____________________________ SERVICES ____________________________ */

.services {
    width: 100%;
    margin-top: 50px;
}

.services .services_content {
    width: 80%;
    margin: auto;
}

.services .services_content .services_theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.services .services_content .services_title {
    font-size: 42px;
    font-weight: 700;
}

.services .services_content .plans_wrapper {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    align-content: flex-end;
}

.services .services_content .plans_wrapper .plan {
    display: flex;
    width: 47%;
    height: 200px;
    background-color: #2020211f;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.services .services_content .plans_wrapper .content {
    width: 90%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 0px;
}

.services .services_content .plans_wrapper .content span {
    display: block;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 6px;
}

.services .services_content span.button {
    display: block;
    width: 600px;
    background: #3a5bcc;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 14px 0;
    color: white;
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
    text-decoration: none;
    margin: 20px auto;
    cursor: pointer;
}

.services .services_content .plans_wrapper .plan_title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

.services .services_content .plans_wrapper .price {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: flex-end;
}

.services .services_content .plans_wrapper .price sub {
    font-size: 14px;
}

/* _END____________________________ SERVICES ____________________________ */
/* _START____________________________ CHOOSE ____________________________ */

.choose {
    width: 100%;
}

.choose .choose_content {
    width: 80%;
    margin: auto;
}

.choose .choose_content .theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.choose .choose_content .title {
    font-size: 42px;
    font-weight: 700;
    max-width: 850px;
}

.choose .choose_content .content_wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.choose .choose_content .image_wrapper {
    max-width: 850px;
    position: relative;
    border-radius: 5px;
}

.choose .choose_content .image_wrapper img {
    width: 100%;
    border-radius: 5px;
}

.choose .choose_content .image_wrapper .about_team {
    position: absolute;
    bottom: 20px;
    width: 90%;
    margin-left: 30px;
    background: white;
    display: flex;
    gap: 70px;
    border-radius: 3px;
}

.choose .choose_content .image_wrapper .content {
    margin: 20px;
}

.choose .choose_content .image_wrapper p {
    font-weight: 700;
}

.choose .choose_content .team_experience {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}


.choose .choose_content .team_experience .experience_theme {
    padding: 6px 0px 6px 6px;
    background: #202021;
    margin-bottom: 10px;
    color: #d7d7d7;
    border-radius: 3px;
}

.choose .choose_content .team_experience .experience_theme p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.choose .choose_content .team_experience strong {
    font-size: 18px;
}

.choose .choose_content .team_experience span {
    margin-left: 50px;
    display: block;
}

/* _END____________________________ CHOOSE ____________________________ */
/* _START____________________________ TESTIMONIALS ____________________________ */
.testimonials {
    background-image: url(../assets/net.webp);
    width: 100%;
    background-size: contain;
    background-color: #202021;
    padding: 100px 0;
    margin-top: 100px;
}

.testimonials .testimonial_content {
    width: 80%;
    margin: auto;
    color: #d7d7d7;
}

.testimonials .testimonial_content .theme {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials .testimonial_content .title {
    font-size: 42px;
    font-weight: 700;
}

.testimonials .testimonial_content .staff_wrapper {
    margin-top: 20px;
    display: grid;
    justify-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.testimonials .testimonial_content .staff {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials .testimonial_content .staff span {
    font-size: 14px;
}

.testimonials .testimonial_content .staff .staff_info {
    margin-top: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonials .testimonial_content .staff .avatar {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
}


.testimonials .testimonial_content .staff .avatar img {
    width: 100%;
    height: 100%;
}

.testimonials .testimonial_content .staff .name {
    font-size: 18px;
    font-weight: 700;
}

.testimonials .testimonial_content .staff .profession {
    font-size: 12px;
}

/* _END____________________________ TESTIMONIALS ____________________________ */
/* _START____________________________ FAQ ____________________________ */

.faq {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
}

.faq .faq_content {
    width: 80%;
    margin: auto;

}

.faq .faq_content .faq_theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.faq .faq_content .faq_title {
    font-size: 42px;
    font-weight: 700;
}

.faq .faq_content .questions {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.faq .faq_content .questions .right_content,
.faq .faq_content .questions .left_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq .faq_content .question {
    background-color: #d9dadc;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq .faq_content .question p {
    font-size: 14px;
    font-weight: 700;
}

.faq .faq_content .question span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq .faq_content .question span img {
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
}

.faq .faq_content .open_answer img.rotate {
    transform: rotateZ(270deg);
}

.faq .faq_content .answer {
    margin-left: 10px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    opacity: 0;

}

.faq .faq_content .answer.active {
    height: auto;
    opacity: 1
}

/* _END____________________________ FAQ ____________________________ */
/* _ START ____________________________ GET_STARTED ____________________________ */

.get_started {
    background-image: url(../assets/net.webp);
    width: 100%;
    background-size: contain;
    background-color: #202021;
    margin-top: 100px;
    padding: 100px 0;
}

.get_started .get_started_content {
    width: 80%;
    margin: auto;
    color: #d7d7d7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.get_started .get_started_content .theme {
    font-size: 16px;
    font-weight: 700;
}

.get_started .get_started_content .title {
    font-size: 42px;
    font-weight: 700;
}

.get_started .get_started_content .consultation_button {

    background: #3a5bcc;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
}

/* _ END ____________________________ GET STARTED ____________________________ */

@media only screen and (max-width: 840px) {
    .header_wrapper {
        display: none;
    }

    .header_mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 1px 2px -2px white;
    }

    /* _START____________________________ HERO ____________________________ */
    .hero {
        height: 800px;
    }

    .hero .hero_content {
        width: 95%;
    }

    .hero .hero_content .hero_title {
        font-size: 20px;
        line-height: 30px;
    }

    .hero span.button {
        width: 50%;
    }

    .hero .hero_content .hero_info {
        font-size: 14px;
        text-align: justify;
    }

    .hero .image_wrapper .image img {
        transform: scale(2);
    }

    .hero .hero_content .rate_wrapper {
        gap: 0;
        justify-content: space-between;
    }

    /* _END____________________________ HERO ____________________________ */

    /* _START____________________________ ABOUT US ____________________________ */
    .about_us .about_us_content {
        margin: auto;
        width: 95%;
        padding: 90px 0 30px 0;
        flex-direction: column;
    }

    .about_us .about_us_content .about_title {
        font-size: 20px;
        line-height: 30px;
    }

    .about_us .about_us_content .about_progress {
        margin-left: 10px;
    }

    .about_us .about_us_content .about_progress p {
        font-size: 14px;
    }

    .about_us .about_us_content .about_affairs {
        display: block;
    }

    .about_us .about_us_content .about_affairs .about_vision {
        margin-bottom: 10px;
    }

    .about_us .about_us_content .about_affairs .about_vision .info {
        margin: 10px 80px 0 10px;
    }

    .about_us .about_us_content .about_affairs .title {
        font-size: 20px;
    }

    .about_us .about_us_content .about_mission {
        width: 90%;
        margin-top: 50px;
    }

    .about_us .about_us_content .about_mission .content_wrapper {
        display: flex;
        flex-direction: column;
        gap: 42px;
        width: 80%;
        margin: 30px auto 0;
    }

    .about_us .about_us_content .mission_content {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .about_us .about_us_content .icon_wrapper {
        margin: 0 0 4px 0;
        padding: 5px;
    }

    /* _END____________________________ ABOUT US ____________________________ */
    /* _START____________________________ SPECIALIZATION ____________________________ */
    .spec .spec_content {
        width: 95%;
    }


    .spec .spec_content .title {
        font-size: 20px;
        line-height: 30px;
    }

    .spec .spec_content .spec_values>p {
        font-size: 20px;
    }

    .spec .spec_content .spec_values .values_wrapper {
        flex-direction: column;
    }
    .spec .spec_content .spec_info_wrapper{
        width: 100%;
    }
    .spec .spec_content .spec_values .content p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .spec .spec_content .spec_values .content span {
        font-size: 14px;
    }

    .spec .spec_content .spec_image {
        display: none;
    }

    /* _END____________________________ SPECIALIZATION ____________________________ */
    /* _ START ____________________________ OUR TEAM ____________________________ */

    .our_team .our_team_content {
        width: 95%;
    }


    .our_team .our_team_content .title {
        font-size: 20px;
    }

    /* _ END ____________________________ OUR TEAM ____________________________ */
    /* _START____________________________ SERVICES ____________________________ */

    .services .services_content {
        width: 95%;
    }


    .services .services_content .services_title {
        font-size: 20px;
        line-height: 30px;
    }

    .services .services_content span.button {
        width: 100%;
    }

    .services .services_content .plans_wrapper {
        gap: 15px;
    }

    .services .services_content .plans_wrapper .plan {
        width: 100%;
    }

    .services .services_content .plans_wrapper .content {
        width: 95%
    }

    /* _END____________________________ SERVICES ____________________________ */

    /* _START____________________________ CHOOSE ____________________________ */

    .choose .choose_content {
        width: 95%;
        position: relative;
    }

    .choose .choose_content .title {
        font-size: 20px
    }

    .choose .choose_content .content_wrapper {
        position: relative;
    }

    .choose .choose_content .image_wrapper {
        position: absolute;
        z-index: -1;
        opacity: 0.1;
        width: 100%;
        height: 100%;
    }

    .choose .choose_content .image_wrapper img {
        height: 100%;
    }

    .choose .choose_content .image_wrapper .about_team {
        display: none;
    }

    .choose .choose_content .team_experience {
        width: 100%;
        height: 100%;
    }

    /* _END____________________________ CHOOSE ____________________________ */
    /* _START____________________________ TESTIMONIALS ____________________________ */

    .testimonials {
        padding: 50px 0;
    }

    .testimonials .testimonial_content {
        width: 95%;
    }

    .testimonials .testimonial_content .title {
        font-size: 20px
    }

    .testimonials .testimonial_content .staff_wrapper {
        grid-template-columns: auto;
    }

    .testimonials .testimonial_content .staff span {
        font-size: 12px;
    }

    .testimonials .testimonial_content .staff .name_wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .testimonials .testimonial_content .staff .staff_info {
        flex-direction: row-reverse;
    }

    /* _END____________________________ TESTIMONIALS ____________________________ */

    /* _START____________________________ FAQ ____________________________ */
    .faq .faq_content {
        width: 95%;
    }


    .faq .faq_content .faq_title {
        font-size: 20px;
    }

    .faq .faq_content .questions {
        flex-direction: column;
    }

    .faq .faq_content .question p {
        font-size: 12px;
    }

    .faq .faq_content .answer {
        font-size: 12px;
    }

    /* _END____________________________ FAQ ____________________________ */
    /* _ START ____________________________ GET STARTED ____________________________ */
    
    .get_started .get_started_content .title{
        font-size: 30px;
    }
    /* _END____________________________ GET STARTED ____________________________ */
}