@import 'reset.css';
@import 'fonts.css';

:root {
    --green: #008370;
    --gold: #BA9D66;
    --black: #222222;
}
html{
    scroll-behavior: smooth;
}
html {
    scrollbar-width: thin;
    scrollbar-color: var(--green) transparent;
}
html::-webkit-scrollbar {
    width: 8px;
}
html::-webkit-scrollbar-track {
    background: transparent;
}
html::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 10px;
    border: 2px solid transparent;
}
.container{
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
    padding-top: 115px;
    transition: padding-top 0.5s ease-out;
}
@media screen and (max-width: 987px) {
    .wrapper{
        padding-top: 100px;
    }
}
@media screen and (max-width: 355px) {
    .wrapper{
        padding-top: 90px;
    }
}
.main{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.button_gold{
    background-color: var(--gold);
    color: #fff;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}
.button_green{
    background-color: var(--green);
    color: #fff;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}
.button_transparent{
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--green);
    font-size: 16px;
    font-weight: 400;
    border-radius: 100px;
    flex-shrink: 0;
}
.button_green:hover{
    background-color: #006655;
}
.button_gold:hover{
    background-color: #927433;
}
.dn{
    display: none!important;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* all pages common styles ------------------------------------------------------------------------------------------------ */
.section_head{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.section_head.row{
    flex-direction: row;
    justify-content: space-between;
}
.section_head_h2{
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
}
.section_head_h2 span{
    color: var(--gold);
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
}
.section_head_p{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
@media screen and (max-width: 1250px) {
    .section_head_h2{
        font-size: 40px;
        line-height: 50px;
        text-align: center;
    }
    .section_head_h2 span{
        font-size: 40px;
        line-height: 50px;
    }
    .section_head_p{
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }
    
}
@media screen and (max-width: 550px) {
    .section_head_h2{
        font-size: 30px;
        line-height: 40px;
    }
    .section_head_h2 span{
        font-size: 30px;
        line-height: 40px;
    }
    .section_head_p{
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
}
@media screen and (max-width: 400px) {
    .section_head_h2{
        font-size: 25px;
        line-height: 35px;
    }
    .section_head_h2 span{
        font-size: 25px;
    }
}
/* header ------------------------------------------------------------------------------------------------ */
.header{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    transition: top 0.5s ease-in-out;
}
.header_top_wrapper{
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_top_left{
    display: flex;
    align-items: center;
    gap: 20px;
    transition: gap 0.3s ease;
}
.header_top_left:hover{
    gap: 10px;
}
.header_logo{
    width: 200px;
}
.header_logo img{
    width: 100%;
    display: block;
}
.header_logo_text{
    width: 150px;
    display: block;
}
.header_top_right{
    display: flex;
    align-items: center;
    gap: 50px;
}
.header_top_social{
    display: flex;
    align-items: center;
    gap: 25px;
}
.header_social_link{
    transition: transform 0.3s ease;
}
.header_social_link:hover{
    transform: scale(1.1);
}
.header_social_link img{
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.header_contact_button{
    display: flex;
    align-items: center;
    gap: 5px;
}
.header_contact_button span{
    padding-left: 5px;
    font-size: 20px;
    font-weight: 500;
}
.header_contact_button:hover .header_contact_arrow{
    transform: translateY(3px);
}
.header_contact_arrow{
    transition: transform 0.3s ease;
}
.header_button{
    padding:15px 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 100px;
    background-color: var(--green);
    color: #fff;
    transition: background-color 0.3s ease;
}
.header_button:hover{
    background-color: #006655;
}
.header_bottom{
    background-color: var(--green);
}
.header_bottom_wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 40px;
}
.header_nav{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    height: 100%;
}
.header_nav_link{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
}
.header_nav_link:hover{
    border-bottom: 2px solid var(--gold);
}
.header_top_menu_mobile{
    display: none;
}
.header_burger_button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
}
.header_burger_button svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header_mobile_locphone{
    display: none;
}
@media (max-width: 1270px) {
    .header_top_right{
        gap: 28px;
    }
    .header_contact_button span{
        font-size: 17px;
    }
    .header_button{
        padding: 12px 25px;
        font-size: 16px;
    }
}
@media (max-width: 1126px) {
    .header_top_menu_mobile{
        display: flex;
    }
    .header_top_social{
        display: none;
    }
}
@media (max-width: 1065px) {
    .header_nav{
        width: 100%;
        gap: 20px;
        justify-content: space-between;
    }
    .header_nav_link{
        font-size: 16px;
    }
}
@media (max-width: 987px) {
    .header_logo{
        width: 150px;
    }
    .header_logo_text{
        display: none;
    }
    .header_top_right {
        gap: 20px;
    }
    .header_top_wrapper {
        height: 60px;
    }
}

/* hide MENU on mobile ------------------------------------------------------------------------------------------------ */
@media (max-width:750px) {
    .header_top_locations,
    .header_top_phone{
        display: none;
    }
    .header_nav{
        display: none;
    }
    .header_mobile_locphone{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
    .header_locphone_button{
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .header_header_locphone_icon{
        width: 20px;
        height: 20px;
    }
    .header_locphone_button span{
        font-size: 16px;
        padding-left: 5px;
        color: #fff;
    }
}
@media (max-width:390px) {
    .header_button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .header_mobile_locphone{
        gap: 20px;
        justify-content: space-around;
    }
}
@media (max-width:355px) {
    .header_top_button{
        display: none;
    }
    .header_locphone_button span{
        font-size: 13px;
    }
    .header_bottom_wrapper{
        height: 30px;
    }
}

/* footer ------------------------------------------------------------------------------------------------ */
.footer{
    background-color: var(--black);
}
.footer_top{
    padding: 80px 0px  30px 0px;
    display: flex;
    justify-content: space-between;
    gap: 150px;
}
.footer_top_left{
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.footer_logo_box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_logo_img{
    width: 100%;
    max-width: 200px;
    display: block;
}
.footer_logo_link{
    display: block;
}
.footer_logo_text{
    max-width: 150px;
    width: 100%;
    display: block;
}
.footer_top_buttons{
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer_top_button{
    padding: 20px 31px;
    font-size: 16px;
}
.footer_social_box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_social_link{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.footer_social_link .footer_social_link_state1{
    display: block;
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.footer_social_link .footer_social_link_state2{
    opacity: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.footer_social_link:hover .footer_social_link_state1{
    opacity: 0;
}
.footer_social_link:hover .footer_social_link_state2{
    opacity: 1;
}
.footer_top_right{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer_top_menu{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_top_menu_title{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.footer_top_nav ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_top_nav a{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}
.footer_top_nav a:hover{
    opacity: 1;
    color: var(--green);
    border-bottom: 1px solid var(--green);
}
.footer_top_nav_contact a{
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_top_nav_contact a:hover{
    color: var(--green);
    border-bottom: 1px solid transparent!important;
}
.footer_top_nav_contact a img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.footer_top_location{
    max-width: 280px;
    display: flex;
    width: 100%;
    align-items: flex-start!important;
}
.footer_top_location img{
    padding-top: 5px;
    width: 18px;
    height: auto!important;
    object-fit: cover;
}

/* footer bottom ------------------------------------------------------------------------------------------------ */
.footer_bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid rgb(255, 255, 255, 0.1)
}
.footer_bottom p{
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
@media (max-width: 1350px) {
    .footer_top{
        gap: 70px;
    }  
    .footer_top_nav a{
        font-size: 16px;
    }
    .footer_top_menu_title{
        font-size: 18px;
    }
    .footer_top_nav ul{
        gap: 12px;
    }
}
@media (max-width: 1200px) {
    .footer_top{
        flex-direction: column;
        padding-top: 50px;
        gap: 50px;
    }
    .footer_top_left{
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}
@media (max-width: 820px) {
    .footer_top_buttons,
    .footer_top_left{
        gap: 20px;
    }
    .footer_top_right{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        row-gap: 40px;
        align-items:center;
    }
}
@media (max-width: 742px) {
    .footer_logo_box{
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .footer_top_left{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer_top_buttons{
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 560px) {
    .footer_top_right{
        gap: 20px;
        row-gap: 40px;
    }
}
@media (max-width: 490px) {
    .footer_top_left{
        gap: 38px;
    }
    .footer_top_left,
    .footer_top_right{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer_top_buttons,
    .footer_logo_box{
        flex-direction: row;
        align-items: center;
    }
}
@media (max-width: 390px) {
    .footer_top_button{
        padding: 15px 18px;
        font-size: 14px;
    }
}
@media (max-width: 350px) {
    .footer_logo_box{
        gap: 20px;
    }
    .footer_top_buttons, .footer_logo_box{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* mob_side ------------------------------------------------------------------------------------------------ */
.mob_side{
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 100px);
    overflow-y: scroll;
    z-index: 100;
    background-color: #fff;
    padding: 20px;
    display: none;
}
.mob_side.show{
    display: flex;
    flex-direction: column;
}
.mob_side_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.mob_side_title{
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}
.mob_side_all{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    background-color: var(--green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}
.mob_side_services{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mob_side_service{
    overflow: hidden;
    position: relative;
    text-transform: capitalize;
    border: 1px solid var(--green);
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.mob_side_service_sphare{
    position: absolute;
    top: -19px;
    left: -21px;
    width: 35px;
    height: 35px;
    background-color: var(--green);
    border-radius: 50%;
}
.mob_side_footer{
    margin-top: 20px;
    margin-bottom: 10px;
}
.mob_side_pages{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 7px;
}
.mob_side_page{
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #00837036;
    display: flex;
    border: 1px solid #008370;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
@media (max-width: 422px) {
    .mob_side_service{
        font-size: 14px;
    }
}
@media (max-width: 388px) {
    .mob_side_service {
        padding: 10px 12px;
    }
}
@media (max-width: 356px) {
    .mob_side_services{
        grid-template-columns: repeat(1, 1fr);
        gap:5px;
    }
    .mob_side_service {
        font-size: 15px;
        padding: 10px 15px 10px 30px; 
    }
}
@media (min-width: 650px) {
    .mob_side_pages{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 750px) {
    .mob_side_footer,
    .mob_side_pages{
        display: none;
    }
}
@media (min-width: 987px) {
    .mob_side{
        top: 115px;
        height: auto;
    }
}

/* home */
/* home_hero ------------------------------------------------------------------------------------------------*/
.home_hero{
    position: relative;
    min-height: calc(100dvh - 115px);
}
.home_hero_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.home_hero_video_overlay{
    position: absolute;
    background-color: #000000;
    opacity: 0.7;
    top:-1px;
    left: 0;
    width: 100%;
    height: calc(100% + 1px);
    z-index: 2;
}
.home_hero_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.home_hero_wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    position: relative; /* добавьте это */
    z-index: 3;
    height: calc(100dvh - 115px);
    color: #fff;
}
.home_hero_left{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home_hero_left_h1{
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}
.home_hero_left_h1 span{
    color: var(--gold);
}
.home_hero_left_h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 35px;
}
.home_hero_left_p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 530px;
}
.home_hero_left .home_hero_numbs{
    display: flex;
    align-items: center;
    gap: 70px;
}
.home_hero_numbs_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.home_hero_numbs_item span{
    color: var(--gold);
    font-size: 60px;
    font-weight: 500;
}
.home_hero_numbs_item p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.home_hero_right{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.home_hero_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 40px;
    background-color: #fff;
    color: #000000;
    border-radius: 15px;
    width: 500px;
}
.home_hero_form_step{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step_count{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.step_count_total{
    color:#5F5F5F;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}
.step_count_active{
    color: var(--green);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.home_hero_form_step_2,
.home_hero_form_step_3{
    display: none;
}
.home_hero_form_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.home_hero_form_box select,
.home_hero_form_box input{
    padding: 10px 20px 10px 50px;
    border-radius: 30px;
    border: none;
    background-color: #F0F0F0;
    height: 55px;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.home_hero_form_box input[type="checkbox"]{
    width: 15px;
    height: 15px;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%225%22%20viewBox%3D%220%200%2010%205%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%205%205-5H0z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center; /* минимальный отступ */
    background-size: 0.6em;
    padding-right: 20px; /* чтобы текст не перекрывался стрелкой */
    border: 1px solid #ccc;
    border-radius: 10px;
}
.home_hero_form_step_h2{
    font-size: 38px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 10px;
}
.home_hero_form_step_h3{
    text-align: start;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #5F5F5F;
    margin-bottom: 15px;
    padding-left: 20px;
}
.home_hero_form_step_h3_2{
    text-align: start;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: #5F5F5F;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-left: 20px;
}
.home_hero_form_step_p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #5F5F5F;
    margin-bottom: 20px;
}
.home_hero_form_button{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    padding: 20px 65px;
    align-self: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}
.home_hero_form_box_inline{
    position: relative;
}
.home_hero_form_row{
    display: flex;
    align-items: center;
    gap: 10px;
}
.home_hero_form_row label{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5F5F5F;
}
.home_hero_form_row_icon{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.home_hero_form_row_label{
    color:#5F5F5F;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.home_hero_form_row_link{
    text-decoration: underline;
}
.home_hero_form_row_checkbox{
    padding-left: 20px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus{
    outline: 2px solid var(--green);
}

/* home_services ------------------------------------------------------------------------------------------------ */
.home_services{
    margin-top: 150px;
}
.home_services_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home_services_head{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.all_services{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 20px 35px;
}
.home_services_box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.home_services_box_col_item,
.home_services_box_col{
    border-radius: 15px;
    position: relative;
}
.home_services_box_col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.home_services_box_row_1{
    display: grid;
    grid-template-columns: 460px 1fr 1fr 306px;
    /* height: 326px; */
    gap: 20px;
}
.home_services_box_col_2{
    min-height: 326px;
}
.home_services_box_col_4,
.home_services_box_col_1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:15px;
    padding: 30px;
}
.home_services_box_col_1{
    background-color: #008370;
}
.home_services_box_col_4{
    background-color: #004C41;
}
.home_services_box_col_num{
    position: absolute;
    right:15px;
    top: 15px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}
.home_services_box_col_1 h3{
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
    color: #fff;
}
.home_services_box_col_1 p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.8;
    color: #fff;
}
.home_services_box_col_link{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.home_services_box_col_link span{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin-bottom: 3px;
    border-bottom: 1px solid #fff;
}
.home_services_box_col_link img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.home_services_box_col_2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.home_services_box_col_4 h3{
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    color: #fff;
}
.home_services_box_col_4 p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    opacity: 0.8;
}
.home_services_box_col_3{
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
.home_services_box_col_item_1{
    background-color: #004C41;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.home_services_box_col_item_2{
    background-color: #008370;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.home_services_box_col_item_1 h3,
.home_services_box_col_item_2 h3{
    font-size: 22px;
    line-height: 35px;
    font-weight: 500;
    color: #fff;
}
.home_services_box_row_2{
    display: grid;
    grid-template-columns: 1fr 317px 317px 1fr;
    gap: 20px;
}
.home_services_box_col_item_3{
    background-color: #004C41;
}
.home_services_box_row_2_item2{
    background-color: #004C41;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.home_services_box_row_2_item3{
    background-color: #008370;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.home_services_box_row_2_item2 h3{
    max-width: 210px;
}
.home_services_box_row_2_item2 h3,
.home_services_box_row_2_item3 h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    color: #fff;
}
.home_services_box_row_2_item2 p,
.home_services_box_row_2_item3 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    opacity: 0.8;
}

/* home_say ------------------------------------------------------------------------------------------------ */
.home_say{
    padding-top: 120px;
    padding-bottom: 120px;
}
.home_say_wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.home_say_head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.home_say_head .section_head_p{
    max-width: 570px;
    text-align: center;
}
.home_say_box{
    padding-top: 65px;
    position: relative;
}
.home_say_nav{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 35px;

}
.saySwiper{
    height: 540px;
}
.swiper-pagination-bullet-active{
    background: #000!important;
    width: 30px!important;
    border-radius: 100px!important;
}
.say_button_prev,
.say_button_next{
    position: relative!important;
    top:unset!important;
    left:unset!important;
    right:unset!important;
    bottom:unset!important;
    width: 35px;
    height: 35px;   
    margin-top: 0!important;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    display: none!important;
}
.say_button_prev img{
    transform: rotate(180deg);
}
.say_slide_wrapper{
    background-size: cover;
    background-position:top center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    height: 490px;
    width: 100%;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    padding: 20px 30px;
}
.say_play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    background: url(../img/homepage/play.svg) no-repeat center;
    cursor: pointer;
}
.say_text{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.say_text h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #fff;
}
.say_text_stars{
    display: flex;
    align-items: center;
    gap: 5px;
}
.say_text_stars img{
    width: 19px;
    height: 19px;
    display: block;
}
.say_text_name{
    display: flex;
    align-items: center;
    gap: 10px;
}
.say_text_name span{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

/* reviews ------------------------------------------------------------------------------------------------ */
.reviews{
    background: url(../img/homepage/reviews.jpg) no-repeat center;
    background-size: cover;
    padding-top: 85px;
    padding-bottom: 85px;
}
.reviews_button{
    padding: 20px 35px;
}
.reviews_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.reviews_slide{
    padding: 40px 40px 60px 30px;
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.review_slide_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review_slide_top a{
    display: block;
}
.review_slide_top img{
    width: 100%;
    display: block;
}
.review_stars{
    display: flex;
    align-items: center;
    gap: 5px;
}
.review_stars img{
    width: 19px;
    height: 19px;
    display: block;
}
.review_slide_bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review_name{
   font-weight: bold;
   font-size: 20px;
   line-height: 30px;
   color: #222222;
}
.review_text_box{
    height: 130px;
    padding-right: 6px;
    overflow-y: scroll;
}
.review_text_box::-webkit-scrollbar{
    width: 3px;
    background-color: #F0F0F0;
}
.review_text_box::-webkit-scrollbar-thumb{
    background-color: #008370;
}
.review_text{
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
}
.reviewsSwiper{
    height: 420px;
}
.reviewsSwiper .swiper-wrapper{
    height: 370px;
}
.reviews_box{
    position: relative;
}
.reviews_nav{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 35px;
}
.reviews_nav .swiper-button-prev,
.reviews_nav .swiper-button-next{
    position: relative!important;
    top:unset!important;
    left:unset!important;
    right:unset!important;
    bottom:unset!important;
    width: 35px;
    height: 35px;
    margin-top: 0!important;

}
.reviews_nav .swiper-button-prev:after,
.reviews_nav .swiper-button-next:after{
    display: none!important;
}
.reviews_nav .swiper-button-prev img,
.reviews_nav .swiper-button-next img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews_nav .swiper-button-prev img{
    transform: rotate(180deg);
    opacity: 0.5;
}

/* map ------------------------------------------------------------------------------------------------ */
.map{
    padding-top: 150px;
    padding-bottom: 150px;
}
.map_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.map_box{
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    position: relative;
}
.location_show_all{
    position: absolute;
    bottom: -40px;
    left: 0;
    background-color: var(--green);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: none;
}
.location_show_all.show{
    display: block;
}
#map {
    width: 100%;
    height: 445px;
    border-radius: 15px;
}
.locations_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.locations_search{
    position: relative;
}
.locations_search img{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.locations_search input{
    width: 100%;
    background-color: #C7E8E4;
    border-radius: 100px;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    border: none;
    outline: none;
    transition: all 0.3s ease;
}
.locations_search input::placeholder{
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
}
.locations_list h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--black);
}
.locations_list ul {
    display: flex;
    flex-direction: column;
    height: 375px;
    overflow-y: scroll;
    padding-right: 30px;
}
.locations_list_ul::-webkit-scrollbar{
    width: 3px;
    background-color: #F0F0F0;
}
.locations_list_ul::-webkit-scrollbar-thumb{
    background-color: #008370;
}
.locations_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0px 15px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #0000001f;
}
.locations_list li:hover {
    background: #f5f5f5;
    padding-right: 5px;
    border-color: var(--green);
}
.locaion_single_link{
    background-color: var(--green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;

}
.location_name {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}
.location_address {
    display: block;
    font-size: 14px;
    color: #666;
}
.location_point_btns{
    display: flex;
    align-items: center;
    gap: 10px;
}
.see_on_map{
    border: 1px solid var(--green);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* about ------------------------------------------------------------------------------------------------ */
.about{
    padding-bottom: 150px;
}
.about_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.about_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.about_right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about_right .section_head_h2{
    margin-bottom: 20px;
}
.about_right .about_p{
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--black);
}
.about_right_box{
    width:  100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.about_right_box_item{
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--green);
    padding: 30px 24px;
    border-radius: 15px;
}
.about_right_box_item img{
    width: 50px;
    height: 50px;
    display: block;
}
.about_right_box_item_text{
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    color: #fff;
}

/* step ------------------------------------------------------------------------------------------------ */
.step{
    padding-bottom: 150px;   
}
.step_wrapper{
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 60px;
}
.step_left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.step_left h2{
    margin-bottom: 20px;
    max-width: 660px;   
}
.step_left p{
    margin-bottom: 20px;
    max-width: 660px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
}
.step_button{
    margin-top: 10px;
    padding: 20px 35px;
}
.step_right{

    display: flex;
    flex-direction: column;
    gap: 27px;
    position: relative;
}
.step_right_line{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 90%;
    background-color: var(--green);
}
.step_right_item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 70px;
    position: relative;
}
.step_right_item h3{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black);
}
.step_right_item p{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
}
.step_right_item_dot{
    position: absolute;
    top: 0;
    left: -40px;
    width: 79px;
    height: 79px;
    display: block;
}

/* faq ------------------------------------------------------------------------------------------------ */
.faq{
    background-color: #F9F9F9;
    padding-bottom: 100px;
    padding-top: 100px;
    /* margin-bottom: 100px; */
}
.faq_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.faq_right{
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    gap: 85px;
    position: relative;
}
.faq_right_call{
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: move 2s infinite;
}
@keyframes move {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.faq_right_call img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.faq_right_img{
    height: 440px;
    width: 100%;
}
.faq_right_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq_right_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
.faq_right_btn{
    padding:20px 35px;
}
.faq_left{
    display: flex;
    flex-direction: column;
    gap:50px;
}

/* contact ------------------------------------------------------------------------------------------------ */
.contact{
    background-color: var(--green);
    position: relative;
    min-height: 500px;
    color: #fff;
}
.contact_right{
    position: absolute;
    top: 0;
    left: 55%;
    width: 45%;
    height: 100%;
}
.contact_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_wrapper{
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 620px;
}
.contact_form{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact_form_row{
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact_form input{
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 10px 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.contact_form textarea::placeholder,
.contact_form input::placeholder{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.contact_form textarea{
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 10px 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.contact_form input:focus,
.contact_form textarea:focus{
    outline: none;
}
.contact_form_col{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.contact_form_row{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact_form_row.full{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_form_col label{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
}
.contact_form_row_box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_form_row_box_item{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid #fff;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.contact_form_row_box_item img{
    width: 20px;
    height: 20px;
}
.contact_form_row_box_item.active{
    background-color: #fff;
    color: #222222;
}
.contact_form_row_box_item_icon_active{
    display: none;
}
.contact_form_row_box_item.active .contact_form_row_box_item_icon_active{
    display: block;
}
.contact_form_row_box_item.active .contact_form_row_box_item_icon{
    display: none;
}
.contact_form_button{
    padding: 20px 55px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}
.contact_form_row.button_row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Services Page ------------------------------------------------------------------------------------------------ */
.serv_hero{

    padding-top: 80px;
    padding-bottom: 100px;
}
.serv_hero_wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.serv_hero_box{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.serv_hero_box_item{
    border-radius: 15px;
    padding: 20px;
    height: 272px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}
.serv_hero_box_item.hidden{
    display: none;
}
.serv_hero_box_item h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
}
.serv_hero_box_item a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.serv_hero_box_item a img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.serv_hero_box_item span{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    padding-bottom: 1px;
    border-bottom: 1px solid #fff;
}
.serv_hero .serv_hero_title{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
    color: var(--black);
}
.serv_hero .serv_hero_title span{
    color: var(--green);
}
.serv_hero_button{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}
.serv_adv{
    background-color: #F9F9F9;
    padding-top: 100px;
    padding-bottom: 100px;
}
.serv_adv_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.serv_adv_box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px;
}
.serv_adv_item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px 40px  ;
}
.serv_adv_item h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black);
}
.serv_adv_item img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
}
.serv_adv_item p{
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}
.serv_adv_item_1,
.serv_adv_item_2,
.serv_adv_item_3{
    border-bottom: 1px solid #D9D9D9;
}
.serv_adv_item_5,
.serv_adv_item_2{
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}
.serv_adv_wrapper .section_head_h2{
    max-width: 700px;
    text-align: center;
}
.serv_page .home_say{
    padding-bottom:50px;
}
.reviews_slide{
    border:1px solid #E3E3E3;
}
.serv_page .map{
    padding-top: 100px;
}
.serv_page .about{
    padding-top: 150px;
}

/* blog ------------------------------------------------------------------------------------------------ */
.blog{
    padding-bottom: 150px;
}    
.blog_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}
.blog_head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
}
.all_blog_button{
    position: absolute;
    top:50%;
    right: 0;
    transform: translateY(-50%);
    padding: 20px 35px;
}
.blog_box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}
.blog_box_item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog_box_item_img{
    width: 100%;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
}
.blog_box_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_box_item_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.blog_box_item_text_h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--black);
}
.blog_box_item_text_p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
}
.blog_box_item_text_button{
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog_box_item_text_button span{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    border-bottom: 1px solid var(--green);
    padding-bottom: 0px;
}
.blog_box_item_text_button img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.blog_box_item_text_button:hover img{
    transform: translateX(10px);
}
.all_blog_button.all_blog_button2{
    display: none;
}

/* seo text ------------------------------------------------------------------------------------------------ */
.seo_text{
    padding-top: 150px;
}
.seo_text_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.seo_text h2{
    max-width: 1050px;
}
.seo_text_box{
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 480px;
    overflow-y: scroll;
}
.seo_text_box::-webkit-scrollbar{
    width: 3px;
    background-color: #F0F0F0;
}
.seo_text_box::-webkit-scrollbar-thumb{
    background-color: #008370;
}
.seo_text_box p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
}

/* gallery ------------------------------------------------------------------------------------------------ */
.gallery{
    padding-top: 150px;
}
.gallery_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.gallery_head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}
.gallery_slide{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gallery_slide_image_box{
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.gallery_slide_image_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallerySwiper{
    height:470px;
}

/* single service page------------------------------------------------------------------------------------------------ */
.sinser_hero{
    padding-top: 70px;
}
.other_services{
    padding-top: 150px;
}
.single_service 
.seo_text{
    padding-bottom: 150px;
}
.single_service 
.step{
    padding-top: 150px;
}
.sinser_hero_hero_wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sinser_hero_bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sinser_hero_bottom_box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.sinser_hero_bottom_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 140px;
    background-color: #F9F9F9;
    padding:20px 20px 20px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.sinser_hero_bottom_item:hover{
    background-color:#D9EDEA;
}
.sinser_hero_bottom_item h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black);
}
.sinser_hero_bottom_item_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sinser_hero_bottom_item_price{
    font-size: 16px;
    font-weight: 600;
}
.sinser_hero_bottom_item_price span{
    font-size: 20px;
    font-weight:600;
    line-height: 20px;
    color: var(--green);
}
.sinser_hero_bottom_item_buttons{
    display: flex;
    align-items: center;
    gap: 25px;
}
.sinser_hero_item_link{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black);
    transition: all 0.3s ease;
}
.sinser_hero_item_link:hover{
    color: var(--green);
}
.sinser_hero_add_button{
    width: 30px;
    height: 30px;
    background: url(../img/services/add.svg) no-repeat center center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}
.sinser_hero_add_button:hover{
    background: url(../img/services/add2.svg) no-repeat center center;
}
.sinser_order_now{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 500;
}
.sinser_view_all{
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}
.sinser_view_all img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.sinser_view_all:hover img{
    transform: translateX(10px);
}
.sinser_hero_top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.sinser_hero_top_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.sinser_hero_top_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}
.sinser_hero_top_left_buttons{
    display: flex;
    align-items: center;
    gap: 20px;
}
.sinser_hero_top_left h1{
    max-width: 600px;
    font-size: 60px;
    font-weight: 600;
    line-height: 68px;
    color: var(--black);
}
.sinser_hero_top_left p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.sinser_hero_top_left_price{
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.sinser_hero_top_left_price_text{
    font-size: 24px;
    font-weight: 500px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}
.sinser_hero_top_left_price_value{
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    color: var(--green);
}
/* other services ------------------------------------------------------------------------------------------------ */
.other_services_wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.other_services_head{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.other_services_button{
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 500;
}
.other_services_button.other_services_button2{
    display: none;
    position: relative;
    top: 0;
    right: 0;
    transform: translateY(0);
    align-self: center;
}
.other_services_box{
    position: relative;
}
.other_services_nav{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.other_services_button_prev,
.other_services_button_next{
    position: relative!important;
    left: unset!important;
    top: unset!important;
    bottom: unset!important;
    right: unset!important;
    width: 35px!important;
    height: 35px!important;
}
.other_services_button_prev{
    transform: rotate(180deg);
    opacity: 0.5;
}
.other_services_item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.other_services_item_img{
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.other_services_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other_services_item h3{
    font-size: 20px;
    font-weight: 500;
}
.other_services_item h3 span{
    color: var(--gold);
}
.otherserSwiper{
    height: 320px;
}

/* locations page ------------------------------------------------------------------------------------------------ */
.top_locations{
    padding-top: 100px;
}
.locations_page .map_wrapper{
    gap: 30px;
}
.locations_page .serv_reviews{
    padding-bottom: 100px;
}
.locations_page .map{
    padding-top: 70px;
    padding-bottom: 0;
}
.locations_page .home_say{
    padding-bottom: 50px;
}
.top_locations_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.top_locations_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    row-gap: 10px;
}
.top_locations_item{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 500;
    color: var(--green);
    border-radius: 100px;
    border: 1px solid var(--green);
    transition: all 0.3s ease;
}
.top_locations_item:hover{
    background-color: var(--green);
    color: #fff;
}
.locations_page .blog{
    padding-top: 0!important;
}
.locations_page .loc_seo_text{
    padding-top: 150px!important;
}

/* locations seo text ------------------------------------------------------------------------------------------------ */
.loc_seo_text{
    padding-bottom: 150px;
    padding-top: 100px;
}
.loc_seo_text_wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.loc_seo_text_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.loc_seo_text_box_left{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.loc_seo_text_box_left_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.loc_seo_text_box_left_list_item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.loc_seo_text_box_left_list_item img{
    width: 20px;
    height: 20px;
}
.loc_seo_text_box_left p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.loc_seo_text_box_right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 340px;
    overflow-y: auto;
    padding-right: 10px;
}
.loc_seo_text_box_right::-webkit-scrollbar{
    width: 5px;
}
.loc_seo_text_box_right::-webkit-scrollbar-thumb{
    background-color: var(--green);
}
.loc_seo_text_box_right p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/* contact page ------------------------------------------------------------------------------------------------ */
.page_hero{
    position: relative;
    display: flex;
    height: 340px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.page_hero_inner{
    position: relative;
    z-index: 3;
    backdrop-filter: brightness(0.2);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.page_hero_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.page_hero_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
}
.page_hero_title{
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    color: #fff;
}
.page_hero_wrapper p{
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    color: #fff;
}
.contact_page_contact{
    padding-top: 100px;
}
.contact_page_contact_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.contact_page_contact_left{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact_page_contact input {
    border-bottom: 1px solid #000000!important;
    color: #000000!important;
}
.contact_page_contact input::placeholder,
.contact_page_contact textarea::placeholder{
    color: #000000!important;
}
.contact_page_contact textarea {
    border-bottom: 1px solid #000000!important;
    color: #000000!important;
}
.contact_page_contact .contact_form_row_box_item{
    border: 1px solid #000000!important;
    color: #000000!important;
}
.contact_page_contact .contact_form_row_box_item.active{
    background-color: var(--green)!important;
    color: #fff!important;
    border: 1px solid var(--green)!important;
}
.contact_page_contact_info{
    border-radius: 15px;
    border: 1px solid #E3E3E3;
    padding: 50px;
    display: flex;
    flex-direction: column;
}
.contact_page_contact_info_item:first-child{
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact_page_contact_info_item:last-child{
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact_page_contact_right{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact_page_contact_right span{
    font-size: 18px;
    color: #2222227e;
    position: relative;
    padding-left: 15px;
    font-weight: 600;
}
.contact_page_contact_right span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--green);
    border-radius: 50%;
}
.contact_page_contact_info_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact_page_contact_right a{
    font-size: 25px;
    line-height: 35px;
    color: #222222;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact_page_contact_right a:hover{
    color: var(--green);
}
.contact_page_contact_review{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}
.contact_page_contact_review_box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;
}
.contact_page_contact_review_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.contact_page_contact_review_item_logo{
    width: 120px;
    object-fit: contain;
    display: block;
}
.contact_page_contact_review_item_raiting{
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact_page_contact_review_item_raiting p{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #222222;
    margin-right: 15px;
}

/* testimonials page ------------------------------------------------------------------------------------------------ */
.feedback{
    padding-bottom: 100px;
}
.feedback_wrapper{
    display: flex;
    gap: 150px;
    align-items: flex-start;
}
.feedback_left{
    display: flex;
    flex-direction: column;

    gap: 30px;
}
.feedback_right{
    width: 330px;
    flex-shrink: 0;
    background-color: var(--green);
    border-radius: 15px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feedback_right h2{
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
}
.feedback_right_box{
    display: flex;
    flex-direction: column;
}
.feedback_right_item{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    padding: 25px 0px;
    border-bottom: 1px solid rgb(227,227,227,0.10);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.feedback_right_item img{
    opacity: 0;
    transition: all 0.3s ease;
}
.feedback_right_item:hover img{
    opacity: 1;
}
.feedback_right_item:last-child{
    border-bottom: none;
    padding-bottom: 0px;
}
.feedback_list_item{
    padding: 40px 0px;
    border-top: 1px solid rgb(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feedback_list_item:last-child{
    border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}
.feedback_list_item_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.feedback_list_item_right{
    display: flex;
    align-items: center;
    gap: 40px;
}
.feedback_list_item_raiting{
    display: flex;
    align-items: center;
    gap: 5px;
}
.feedback_list_item_right span{
    font-size: 18px;
    line-height: 28px;
    color: #222222;
    font-weight: 400;
}
.feedback_list_item_raiting img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.feedback_list_item_head h3{
    font-size: 20px;
    line-height: 30px;
    color: #222222;
    font-weight: 600;
}
.feedback_list_item_head_body p{
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
}
.feedback_add{
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.feedback_add_form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}
.feedback_add_form_block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
.feedback_add_row{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.feedback_add_form input,
.feedback_add_form textarea{
    border: 1px solid #E3E3E3;
    padding: 20px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 28px;
    color: #222222;
    font-weight: 400;
}
.feedback_add_form textarea{
    height: 150px;
    resize: none;
}
.feedback_add_row_box{
    display: flex;
    align-items: center;
    gap: 5px;
}
.feedback_add_row_box_item{
    width: 30px;
    height: 30px;
}
.feedback_add_row_box_item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.feedback_add_form_btn{
    margin-top: 20px;
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}
.feedback_add_row_box_item{
    cursor: pointer;
}
.feedback_add_row_box_title{
    margin-right: 10px;
}
.feedback_add_row_box_item .feedback_on{
    display: none;
}
.feedback_add_row_box_item .feedback_off{
    display: flex;
}
.feedback_add_row_box_item.active .feedback_on{
    display: flex;
}
.feedback_add_row_box_item.active .feedback_off{
    display: none;
}.feedback_list_pagination{
    display: flex;
    gap: 15px;
}
.feedback_list_pagination_item{
    font-size: 18px;
    line-height: 28px;
    color: #222222;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #E3E3E3;
    transition: all 0.3s ease;
}
.feedback_list_pagination_item.active{
    background-color: var(--green);
    color: #fff;
    border: 1px solid var(--green);
}
.blog_page_wrapper{
    margin-top: 50px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 100%;
    gap: 30px;
    row-gap: 50px;
}
.blog_page_item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog_page_item_img{
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}
.blog_page_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_page_item_text{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blog_box_item_text_link{
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog_page_item_text_h3 a{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--black);
    transition: all 0.3s ease;
}
.blog_page_item_text_h3 a:hover{
    color: var(--green);
}
.blog_box_item_text_link:hover img{
    transform: translateX(10px);
}
.blog_box_item_text_link span{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--green);
    border-bottom: 1px solid var(--green);
    transition: all 0.3s ease;
}
.blog_box_item_text_link img{
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
}

/* gallery_page_box */
.gallery_page_box{
    margin-bottom: 100px;
    margin-top: 50px;
}
.gallery_page_box_more{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.gallery_page_box_more_btn{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 400;   
    line-height: 1;
    border-radius: 100px;
}
.gallery_page_box_wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.gallery_page_box_item{
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}
.gallery_page_box_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about page */
.about_page .other_services{
    padding-bottom: 150px;
    padding-top: 0px;
}
.about_video{
    padding-top: 150px;
    padding-bottom: 150px;
}
.about_video_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}
.about_video_left{
    width: 100%;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
}
.about_video_right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.about_video_right p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
}
.about_video_right_button{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.about_nums{
    background-color:rgb(0, 131, 113, 0.1);
    padding:85px 0px;
    margin-bottom: 150px;
}
.about_nums_right_button{
    padding: 20px 35px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.about_nums_wrapper{
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 150px;
}
.about_nums_left{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.about_nums_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.about_nums_item span{
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    color: var(--green);
}
.about_nums_item p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
}

/* single_location */
.single_location .sinser_hero_top_left_buttons{
    margin-top: 35px;
}
.single_location .serv_hero{
    padding-top: 100px;
    padding-bottom: 0px;
}
.single_location .map{
    padding-bottom: 50px;
}
.blog{
    padding-top: 100px;
}

/* sitemap */
.sitemap{
    padding-top: 100px;
    padding-bottom: 100px;
}
.sitemap_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.sitemap_box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.sitemap_box a{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
    transition: all 0.3s ease;
}
/* single_post */
.single_post{
    padding-top: 70px;
    padding-bottom:0px;
}
.single_post_hero_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.single_post_hero_img{
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.single_post_hero_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.single_post_hero_info_item{
    display: flex;
    align-items: center;
    gap: 15px;
}
.single_post_hero_info_item img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.single_post_hero_info_item p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
}
.single_post_content{
    margin-top: 30px;
}
.single_post_content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
}
.single_post_content h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}
.single_post .other_services{
    padding-top: 100px;
}

/* MEDIA QUERIES*/
@media screen and (max-width: 1455px) {
    .about_wrapper{
        gap: 40px;
        grid-template-columns: 1fr 677px;
    }
    .about_left img{
        object-position: right center;
    }
    .faq_right{
        justify-content: center;
    }
    .faq_right_img img,
    .faq_right_img{
        height: unset;
    }
    .faq_wrapper {
        gap: 45px;
    }

}
@media screen and (max-width: 1350px) {
    .all_blog_button{
        display: none;
    }
    .all_blog_button.all_blog_button2{
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        transform: translateY(0);
    }
    .about_video_wrapper{
        gap: 80px;
    }
}
@media screen and (max-width: 1315px) {
    .home_services_box_row_1{
        grid-template-columns: 345px 1fr 280px 306px;
    }
    .home_services_box_col_4 h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .home_services_box_col_1 h3 {
        font-weight: 500;
        font-size: 25px;
        line-height: 34px;
    }
    .home_services_box_col_item_1 h3, .home_services_box_col_item_2 h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .home_services_box_row_2_item2 h3, .home_services_box_row_2_item3 h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .home_services_box_col_4 p, .home_services_box_col_1 p,
    .home_services_box_row_2_item2 p, .home_services_box_row_2_item3 p {
        font-size: 16px;
        font-weight: 400;
        line-height: 23px;
    }
}
@media screen and (max-width: 1300px) {
    .say_text h3 {
        font-size: 23px;
        line-height: 30px;
        font-weight: 500;
        color: #fff;
    }
    .about_nums_wrapper{
        gap: 60px;
    }
}
@media screen and (max-width: 1280px) {
    .feedback_wrapper{
        gap: 100px;
    }
    .home_hero_wrapper{
        gap: 60px;
    }
    .home_hero_numbs_item p{
        text-align: center;
    }
    .home_hero_left .home_hero_numbs{
        gap: 30px;
    }
    .home_hero_left_h1{
        font-size: 58px;
    }
    .home_hero_numbs_item span{
        font-size: 44px;
    }
    .home_hero_numbs_item p{
        font-size: 14px;
    }
}
@media screen and (max-width: 1250px) {
    .sinser_hero_bottom_item h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .sinser_hero_bottom_item_buttons{
        gap: 10px;
    }
    .sinser_hero_top_left h1 {
        max-width: 600px;
        font-size: 45px;
        font-weight: 600;
        line-height: 55px;
    }
    .sinser_hero_top_left p{
        font-size: 16px;
        line-height: 26px;
    }
    .about_video_right h2{
        text-align: start;
    }
    .locations_page .loc_seo_text{
        padding-top: 80px!important;
        padding-bottom: 80px!important;
    }
    .loc_seo_text{
        padding-top: 80px!important;
        padding-bottom: 120px;
    }
    .about{
        padding-bottom: 100px;
    }
    .map{
        padding: 100px 0px;
    }
    .step{
        padding-bottom: 100px;
    }
    .contact_wrapper{
        padding: 70px 15px;
        background-color: var(--green);
        position: relative;
        z-index: 89;
    }    
    .home_services{
        margin-top: 100px;
    }
    .home_say{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .home_say_box {
        padding-top: 45px;
    }
    .say_slide_wrapper {
        position: relative;
        height: 450px;
    }
    .saySwiper{
        height: 500px;
    }
}
@media screen and (max-width: 1220px) {
    .contact_page_contact_right a {
        font-size: 20px;
        line-height: 28px;
    }
    .contact_page_contact_right span {
        font-size: 16px;
    }
    .contact_page_contact_wrapper{
        gap: 70px;
    }
}
@media screen and (max-width: 1200px) {
    .sinser_hero_bottom_item_box{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sinser_hero_bottom_item{
        height: unset;
        gap:15px;
    }
    .about_video{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .about_video_right p{
        font-size: 16px;
        line-height: 24px;
    }
    .about_page .other_services{
        padding-bottom: 100px;
    }
    .about_nums{
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 100px;
    }
    .about_nums_left{
        width: 100%;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    .about_nums_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .home_say_head .section_head_p{
        font-size: 18px;
        line-height: 26px;
    }
    .say_text h3{
        font-size: 20px;
        line-height: 28px;
    }
    .blog_box{
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_box_item_text_h3{
        font-size: 18px;
        line-height: 24px;
    }
    .other_services_wrapper{
        gap: 40px;
    }
    .step_left{
        align-items: center;
    }
    .step_wrapper {
        grid-template-columns: 1fr 450px;
    }
    .step_left p{
        /* text-align: center; */
        font-size: 18px;
        line-height: 26px;
    }
    .sitemap_box a{
        font-size: 16px;
        line-height: 26px;
    }
    .sitemap{
        padding-top: 80px;
    }
    .sitemap_box{
        gap: 25px;
    }
    .sitemap_wrapper{
        gap: 40px;
    }
    .single_post .blog{
        padding-top: 80px;
    }
    .about_right .about_p{
        text-align: center;
        font-size: 18px;
        line-height: 26px;
    }
    .serv_hero .serv_hero_title span,
    .serv_hero .serv_hero_title{
        font-size: 40px;
        line-height: 50px;
    }
    .serv_adv_item h3{
        font-size: 18px;
        line-height: 24px;
    }
    .serv_adv_item{
        padding: 20px 30px;
    }
    .map_box {
        grid-template-columns: 1fr;
    }
    .seo_text{
        padding-top: 100px;
    }
    .locations_list {
        height: 300px;
    }
    .seo_text_wrapper{
        gap: 40px;
    }
    .home_services_box_row_2,
    .home_services_box_row_1 {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 1100px) {
    .contact_page_contact_info {
        padding: 30px;
    }
    .faq_right {
        justify-content: flex-end;
    }
    .faq_right_call {
        position: absolute;
        top: 22%;
    }
    .about_video_wrapper {
        gap:40px;
    }
}
@media screen and (max-width: 1070px) {
    .about_wrapper{
        gap: 40px;
        grid-template-columns: 307px 1fr;
    }
    .about_right_box_item{
        padding: 20px;
    }
    .loc_seo_text_box{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 1060px) {
    .all_services{
        position: relative;
        top: 0;
        transform: translateY(0);
    }
    .home_services_head{
        gap: 20px;
    }
}
@media screen and (max-width: 1050px) {
    .testimonials_page .home_say{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .feedback_right{
        width: 100%;
    }
    .feedback_right_box{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .feedback_wrapper{
        flex-direction: column;
    }
    .feedback_wrapper{
        gap: 60px;
    }
    .step_wrapper {
        grid-template-columns: 1fr;
    }
    .step_left p{
        /* text-align: center; */
        font-size: 18px;
        line-height: 26px;
        max-width: 100%;
    }
    .step_right{
        margin-left: 42px;
    }
    .step_right_item p{
        font-size: 16px;
        line-height: 24px;
    }
    .home_hero_wrapper{
        gap: 40px;
        grid-template-columns: 450px 1fr;
    }
    .home_hero_form{
        padding: 30px;
    }
    .home_hero_form{
        width: 100%;
    }
    .home_hero_form_step_p{
        text-align: center;
        font-size: 16px;
        line-height: 26px;
    }
    .home_hero_left_p{
        font-size: 16px;
        line-height: 26px;
    }
    .home_hero_form_step_h2{
        font-size: 30px;
    }
}
@media screen and (max-width: 1050px) {
    .faq_wrapper {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 1040px) {
    .about_wrapper{
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .about_left{
        height: 400px;
    }
   
}
@media screen and (max-width: 1000px) {
    .top_locations{
        padding-top: 80px;
    }
    .blog{
        padding-top: 60px;
    }
    .single_post .other_services{
        padding-top: 80px!important;
    }
    .other_services_item h3 {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }
    .other_services_wrapper{
        gap: 30px;
    }
    .home_hero_form_box select, .home_hero_form_box input{
        font-size: 16px;
    }
    .top_locations_item {
        padding: 15px 24px;
        font-size: 16px;
    }

}
@media screen and (max-width: 980px) {
    .serv_hero_box{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width:970px) {
    .sitemap_box{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sitemap_box{
        gap: 20px;
    }
    .sitemap_wrapper{
        gap: 30px;
    }
}
@media screen and (max-width:960px) {
    .about_video_wrapper{
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }
    .about_nums_item span{
        font-size: 40px;
        line-height: 48px;
    }
    .contact_page_contact_info_item:first-child{
        grid-template-columns: 1fr;
    }
    .contact_page_contact_review_box{
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .page_hero_title {
        font-size: 45px;
        font-weight: 600;
        line-height: 55px;
        color: #fff;
    }
    .page_hero_wrapper p{
        font-size: 22px;
        font-weight: 400;
        line-height: 32px;
        color: #fff;
    }
    .page_hero{
        height: 240px;
    }
    .about_video{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 925px) {
    .sinser_hero_top_left h1 {
        max-width: 600px;
        font-size: 40px;
        font-weight: 600;
        line-height: 50px;
    }
    .sinser_hero_bottom_box{
        grid-template-columns: 1fr 1fr;
    }
    .sinser_hero_bottom_item_box {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .contact_right{
        position: relative;
        width: 100%;
        height: 500px;
        top: unset;
        left: unset;
    }
    .contact_wrapper{
        max-width: 100%;
    }
    .contact_form_col.comun{
        align-items: center;
        width: 100%;
    }
    .button_row,
    .contact_form_row.agree{
        justify-content: center!important;
    }
}
@media screen and (max-width: 900px) {
    .faq_accordion_header h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .faq_right_call {
        position: absolute;
        top: 2%;
    }
    .seo_text{
        padding-top: 80px;
    }
    .home_hero_wrapper{
        grid-template-columns: 1fr 380px;
    }
    .home_hero_left_h2 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .home_hero_left_h1 {
        font-size: 42px;
    }
    .home_hero_numbs_item span {
        font-size: 33px;
    }
}
@media screen and (max-width: 880px) {
    .contact_page_contact{
        padding-top: 70px;
    }
    .contact_page_contact_right a{
        font-size: 18px;
        line-height: 28px;
    }
    .contact_page_contact_wrapper{
        grid-template-columns: 1fr;
    }
    .contact_page_contact_info_item:first-child{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 850px) {
    .single_service .seo_text{
        padding-bottom: 80px;
    }
    .seo_text_box p{
        font-size: 16px;
        line-height: 24px;
    }
    .sinser_hero_top{
        gap: 30px;
    }
    .serv_adv_box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .serv_adv_item_5{
        border-left: none;
    }
    .serv_adv_item_2{
        border-right: none;
    }
    .serv_adv_item_4{
        border-bottom: 1px solid #D9D9D9;
    }
    .serv_adv_item_3{
        border-right: 1px solid #D9D9D9;
    }
    .home_services_box_row_2,
    .home_services_box_row_1 {
        gap: 20px;
    }
    .sinser_view_all,
    .sinser_order_now{
        padding: 10px 20px;
        font-size: 16px;
        height: 40px;
        align-items: center;
        display: flex;
    }
}
@media screen and (max-width: 785px) {
    .review_logo{
        max-width: 100px;
    }
    .reviews_slide{
        padding: 30px 30px 30px 30px;
    }
    .reviewsSwiper .swiper-wrapper {
        height: 358px;
    }
    .home_hero_wrapper{
        grid-template-columns: 1fr;
    }
    .home_hero_wrapper{
        height: unset;
        padding: 100px 0px 40px 0px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 780px) {
    .loc_seo_text{
        padding-bottom: 80px;
    }
    .map_wrapper,
    .serv_hero_wrapper,
    .faq_left{
        gap: 30px;
    }
    .sinser_hero_top_left_buttons{
        margin-top: 0px!important;
    }
    .sinser_hero_top_right{
        height: 300px;

    }
    .sinser_hero_top{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .single_post{
        padding-top: 30px;
    }
    .sinser_hero_top_left h1 {
        max-width: 600px;
        font-size: 34px;
        font-weight: 600;
        line-height: 44px;
    }
}
@media screen and (max-width: 770px) {
    .gallery_page_box_wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .gallery_page_box_item{
        height: 250px;
    }
}
@media screen and (max-width: 750px) {
    .sitemap{
        padding-top: 50px;
    }
    .sitemap_box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 720px) {
    .home_services_box_row_2_item3,
    .home_services_box_col_item, .home_services_box_row_2_item2,
    .home_services_box_col_4, .home_services_box_col_1{
        padding: 20px;
    }
    .home_services_wrapper h3{
        padding-right: 30px;
    }
    .home_services_box_col_2{
        min-height: unset;
    }
}
@media screen and (max-width: 690px) {
    .loc_seo_text_box_right p,
    .loc_seo_text_box_left p{
        font-size: 16px;
        line-height: 24px;
    }
    .loc_seo_text_box_left_list{
        grid-template-columns: 1fr;
    }
    .about_right_box{
        gap: 15px;
    }
    .about_right_box_item{
        gap: 10px;
        padding: 15px;
    }
    .about_right_box_item_text{
        font-size: 15px;
        line-height: 22px;
    }
    .seo_text_box p{
        font-size: 16px;
        line-height: 24px;
    }
    .seo_text_wrapper{
        gap: 30px;
    }
    .single_post .other_services{
        padding-top: 50px!important;
    }
    .other_services_head{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .other_services_button{
        display: none;
    }
    .other_services_button.other_services_button2{
        display: flex;
    }
    .single_post .blog{
        padding-top: 50px;
    }
}
@media screen and (max-width:660px) {
    .gallery_page_box_item{
        height: 200px;
    }
}
@media screen and (max-width: 650px) {
    .serv_adv_item{
        border-right: 1px solid #D9D9D9;
        border-top: 1px solid #D9D9D9;
        border-bottom: none;
        border-left: 1px solid #D9D9D9;
    }
    .serv_adv_item:last-child{
        border-bottom: 1px solid #D9D9D9;
    }
    .serv_hero{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .serv_hero .serv_hero_title span,
    .serv_hero .serv_hero_title{
        font-size: 30px;
        line-height: 40px;
    }
    .serv_adv_box{
        grid-template-columns: 1fr;
    }
    .reviews .section_head.row{
        flex-direction: column;
    }
}
@media screen and (max-width: 630px) {
    .reviews .section_head.row{
        padding: 0px 20px;
    }
    .reviews .container{
        padding: 0px 0px 0px 20px;
    }
    .reviews_nav{
        right: 20px;
    }
    .reviews .section_head_h2{
        text-align: center;
    }
}
@media screen and (max-width: 620px) {
    .sinser_hero_bottom_box{
        grid-template-columns: 1fr;
    }
    .serv_hero_box{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 600px) {
    .top_locations {
        padding-top: 50px;
    }
    .top_locations_item {
        padding: 10px 15px;
        font-size: 16px;
    }
    .feedback_add_form_block{
        grid-template-columns: 1fr;
    }
    .feedback_right_box{
        grid-template-columns: 1fr;
    }
    .about_right .about_p {
        font-size: 16px;
        line-height: 24px;
    }
    .blog_box_item_img{
        height: 200px;
    }
    .home_say_head .section_head_p{
        font-size: 16px;
        line-height: 24px;
    }
    .say_slide_wrapper{
        justify-content: center;
        padding: 20px;
    }
    .say_text_name{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .say_slide_wrapper {
        position: relative;
        height: 400px;
    }
    .saySwiper {
        height: 450px;
    }
    .say_text h3 {
        font-size: 20px;
        text-align: center;
    }
    .home_services_wrapper h3 {
        padding-right: 23px;
    }
    .home_services_box_col_num{
        font-size: 18px;
    }
    .home_services_box_row_2, .home_services_box_row_1{
        grid-template-columns: 1fr;
    }
    .home_services_box_col_3{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
    .home_services_box_row_2_item4,
    .home_services_box_row_2_item1,
    .home_services_box_col_2{
        height: 300px;
    }
    .home_services_box_col_item {
        justify-content: space-between;
    }
    .step_right_item_dot{
        width: 50px;
        height: 50px;
        left: -25px;
    }
    .step_right_item{
        padding-left: 40px;
    }
    .step_right_line{
        height: 83%;
    }
    .step_left p {
        font-size: 16px;
        line-height: 24px;
    }
    .step_right {
        margin-left: 26px;
    }
    .step_right_item h3{
        font-size: 18px;
        line-height: 26px;
    }
    .step_right_item p{
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 560px) {
    .home_say .container{
        padding: 0px 0px 0px 20px;
    }
    .home_say_head{
        padding: 0px 20px;
    }
    .home_say_nav{
        right: 20px;
    }
    .home_say .section_head_h2{
        text-align: center;
    }
    .gallery_page_box_item{
        height: 150px;
    }
    .gallery_page_box_wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    .contact_form_row{
        grid-template-columns: 1fr;
    }
    .contact_form_row_box{
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact_form{
        gap: 20px;
    }
    .contact_right{
        height: 370px;
    }
    .home_hero_form {
        padding:30px  20px;
    }
    .seo_text{
        padding-top: 60px;
    }
    .about_right_box_item_text{
        font-size: 14px;
        line-height: 20px;
    }
    .about_right_box_item img{
        width: 38px;
        height: 38px;
    }
    .contact_page_contact{
        padding-top: 50px;
    }
}
@media screen and (max-width: 500px) {
    .top_locations_box{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .single_post_hero_img{
        height: 300px;
    }
    .single_post_hero_info{
        flex-wrap: wrap;
        gap: 10px;
    }
    .sitemap_box{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .page_hero_title {
        font-size: 33px;
        font-weight: 600;
        line-height: 43px;
        color: #fff;
    }
    .page_hero_wrapper p {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        color: #fff;
        text-align: center;
    }
    .page_hero_wrapper{
        gap: 10px;
    }
    .page_hero{
        height: 200px;
    }
    .blog_box{
        grid-template-columns: repeat(1, 1fr);
    }
    .map{
        padding-top: 70px;
    }
}
@media screen and (max-width: 450px) {
    .map_box{
        gap: 20px;
    }
    .locations_list{
        height: 525px;
    }
    .locations_list ul{
        height: 455px;
    }
    .location_point{
        flex-direction: column;
        align-items: flex-start!important;
        width: 100%;
        gap: 5px;
    }
}
@media screen and (max-width: 420px) {
    .top_locations_box{
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
        width: 100%;
    }
    .gallery_page_box{
        margin-top: 30px;
    }
    .gallery_page_box_item {
        height: 120px;
    }
    .gallery_page_box_wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .about_right_box{
        grid-template-columns: 1fr;
    }
    .about_right_box_item_text{
        font-size: 16px;
        line-height: 24px;
    }
    .home_say_head{
        padding: 0px;
    }
    .home_say .container{
        padding: 0px 20px;
    }
    .home_say_nav{
        right: 0px;
    }
    .contact_page_contact_right a{
        font-size: 16px;
    }
    .contact_page_contact_info{
        padding:30px 20px;
    }
}
@media screen and (max-width: 385px) {
    .home_hero_form_button{
        padding: 15px 36px;
        font-size: 16px;
    }
    .home_hero_form_box select, .home_hero_form_box input {
        font-size: 14px;
    }
}
@media screen and (max-width: 370px) {
    .single_post_hero_img{
        height: 200px;
    }
    .contact_page_contact_info_item:first-child {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 350px) {
    .page_hero_title {
        font-size: 25px;
        font-weight: 600;
        line-height: 35px;
        color: #fff;
    }
    .page_hero_wrapper p {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        color: #fff;
        text-align: center;
    }
    .page_hero{
        height: 160px;
    }
    .gallery_page_box_wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
    }
    .gallery_page_box_item {
        height: 100px;
    }
}
@media screen and (max-width: 315px) {
    .gallery_page_box_wrapper{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    .gallery_page_box_item {
        height: 150px;
    }
}