
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    scroll-behavior: smooth;
}

/* ---------clicktotopbtn --------------*/
.clickTop{
    position: fixed;
    bottom: 5%;
    right: 3%;
    width: 40px;
    height: 40px;
    color: #000;
    background-color: #a9a7a7;
    border: none;
    z-index: 999;
    font-size: 20px;
}

/*--------------- loder ------------*/
.loder{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: grid;
    justify-content: center;
    align-content: center;
    z-index: 99999;
}

/*============= nav-bar =============*/

.logo{
    width: 180px;
}

.nav_link_txt li a{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-left: 30px;
    transition: all 0.5s;
}
.nav_link_txt li a i{
    padding-right: 4px;
}

.nav_link_txt li a:hover{
    color: #f78f1f;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.nav_icon i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border: 1px solid #fff;
}

/*=============== banner-section ===============*/

.banner_section{
    background-image: url(../images/banner_images.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.banner_content h1{
    font-size: 70px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding-top: 220px;
    margin-bottom: 0px;
}

.banner_content h1 span{
    color: #f78f1f;
}

.banner_content .banner_first_para{
    font-size: 20px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    padding-top: 25px;
    margin-bottom: 0px;
}

.banner_content .banner_second_para{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding: 25px 150px 400px 150px;
    margin-bottom: 0px;
}


.carousel .left_key{
    width: 40px;
    height: 40px;
    top: 38%;
    left: 15%;
    right: auto;
    opacity: 1;
}

.carousel .left_key i{
    font-size: 35px;
    color: #fff;
}

.carousel .right_key{
    width: 40px;
    height: 40px;
    top: 38%;
    right: 15%;
    left: auto;
    opacity: 1;
}

.carousel .right_key i{
    font-size: 35px;
    color: #fff;
}

.social_media_link{
    bottom: 13%;
    right: 5%;
}

/*=========== position-absolute-social-media ============*/
.social_media_link ul{
    list-style-type: none;
}

.social_media_link ul li{
    display: block;
    margin-top: 35px;
}

.social_media_link ul li a{
    text-decoration: none;
}

.social_media_link ul li a i{
    font-size: 20px;
    color: #fff;
    transition: all 0.5s;
}

.social_media_link ul li a i:hover{
    color: #f78f1f;
}

/*============== after-psecdeo-class ============*/
.banner_section::after{
    content: '';
    position: absolute;
    width: 2px;
    height: 250px;
    background-color: #f78f1f;
    bottom: -90px;
    left: 50%;
    z-index: 1;
}

/*==================== end-banner-ssection ===================*/


/*=============== about-section ===============*/
.about_images h1{
    font-size: 167px;
    color: #d3d3d3;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    line-height: 169px;
    animation: 10s linear 1s infinite alternate text_animation;
}

@keyframes text_animation{
    0%{
        color: #d3d3d3;
    }   
    50%{
        color: #a9a7a7;
    }
    100%{
        color: #d3d3d3;
    }
}

.about_right_content{
    padding-top: 20px;
}

.about_section_head h1{
    font-size: 30px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-top: 110px;
    padding-bottom: 90px;
}

.about_right_content h4{
    font-size: 24px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 25px;
}

.about_right_content p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0px;
}

.about_right_content a{
    display: inline-block;
    padding: 15px 35px;
    background-color: #f78f1f;
    color: #000000;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-top: 25px;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
}

.about_right_content a:hover{
    color: #ffffff;
    text-decoration: none;
}

.about_right_content a::after{
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #000;
    top: 0;
    right: 0;
    content: "";
    transition: all 0.5s;
    z-index: -1;
}

.about_right_content a:hover::after{
    width: 50%;
}

.back_hover{
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: -1;
}

.about_right_content a:hover .back_hover{
    width: 50%;
}

.about_right_content a i{
    padding-left: 5px;
}



/*=============== experience-section ================*/
.experience{
    display: flex;
}
.experience span{
    font-size: 35px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding-left: 10px;
}

.experience p{
    font-size: 18px;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin-bottom: 0px;
    padding-left: 15px;
    text-transform: capitalize;
}

.third-experience{
    float: right;
}

.middle_expreence{
    justify-content: center;
}

.custom_padding{
    padding-top: 120px;
    padding-bottom: 130px;
}

/*=============== services-section ===================*/
.services_head h1{
    font-size: 30px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.services_head p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
}

.system_content h5{
    font-size: 20px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.system_content p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 15px;
}

.system_content a{
    font-size: 18px;
    color: #f78f1f;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all 0.5s;
}

.system_content a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #f78f1f;
}

.system_content a i{
    padding-left: 8px;
}

.custom_owl_padding{
    padding-top: 100px;
    padding-bottom: 100px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}


/*------------------- choose-section -----------------------*/
.choose_section{
    width: 100%;
    height: auto;
}

.choose_head h1{
    font-size: 30px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.choose_head p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 100px;
}

.left_choose_content{
    width: 50%;
    padding-left: 45px;
    padding-top: 75px;
    padding-bottom: 60px;
}

.rule span{
    font-size: 20px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding-left: 10px;
}

.rule p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 50px;
    padding-top: 15px;
    padding-right: 20px;
}

.all_section_position{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.right_img{
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: -1;
}

.right_img img{
    width: auto;
    height: 100%;
}


/* --------- testimonial ------------- */
.testimonial_head h1{
    font-size: 30px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-top: 130px;
    padding-bottom: 10px;
}

.testimonial_head p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 40px;
}

.testimonial_box{
    width: 50%;
    margin: 0 auto;
    padding: 30px 35px 40px 35px;
    background-color: #fff;
    box-shadow: rgb(0, 0, 0) 0px 0px 40px -19px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.testimonial_box i{
    font-size: 30px;
    color: #000;
    padding-bottom: 35px;
}

.testimonial_box p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 40px;
}

.testimonial_box h4{
    font-size: 20px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    cursor: pointer;
}

.carousel .testi_up_arrow{
    width: 40px;
    height: 40px;
    background-color: #bdbcbc;
    opacity: 1;
    top: 30%;
    right: 15%;
    left: auto;
}

.carousel .testi_up_arrow i{
    color: #000;
    font-size: 20px;
}

.carousel .testi_dwn_arrow{
    width: 40px;
    height: 40px;
    background-color: #bdbcbc;
    opacity: 1;
    top: 45%;
    right: 15%;
    left: auto;
}

.carousel .testi_dwn_arrow i{
    color: #000;
    font-size: 20px;
}


/*--------------- contact_section ---------------*/
.contact_head h1{
    font-size: 30px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-top: 100px;
}

.contact_head p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding: 10px 140px 90px 140px;
}


.contact_address p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    width: 70%;
    margin-bottom: 0px;
    padding-bottom: 30px;
}

.contact_address a{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    display: block;
    transition: all 0.5s;
}

.contact_address a:hover{
    text-decoration: none;
    color: #f78f1f;
}

.contact_address a:last-child{
    padding-top: 8px;
}

.contact_address2{
    padding-top: 80px;
}

.contact_address2 p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    width: 80%;
    margin-bottom: 0px;
    padding-bottom: 30px;
}

.contact_address2 a{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    display: block;
    transition: all 0.5s;
}

.contact_address2 a:hover{
    text-decoration: none;
    color: #f78f1f;
}

.contact_address2 a:last-child{
    padding-top: 8px;
}

.input_grp input{
    width: 100%;
    height: 52px;
    background-color: transparent;
    border: 2px solid #6a6969;
    outline: none;
    padding-left: 10px;
    font-size: 18px;
    color: #6a6969;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.input_grp input::placeholder{
    font-size: 18px;
    color: #6a6969;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.input_grp input[type=number]{
    margin-top: 30px;
}

.input_grp textarea{
    width: 100%;
    height: 120px;
    background-color: transparent;
    border: 2px solid #6a6969;
    outline: none;
    padding-left: 10px;
    font-size: 18px;
    color: #6a6969;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-top: 30px;
}

.input_grp textarea::placeholder{
    font-size: 18px;
    color: #6a6969;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.form_submit_btn{
    width: 100%;
    height: 52px;
    background-color: #f78f1f;
    border: none;
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.form_submit_btn::after{
    content: "";
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #000;
    position: absolute;
    z-index: -1;
    transition: all 0.5s;
}

.form_submit_btn::before{
    content: "";
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background-color: #000;
    position: absolute;
    z-index: -1;
    transition: all 0.5s;
}

.form_submit_btn:hover::after{
    width: 50%;
}

.form_submit_btn:hover::before{
    width: 50%;
}

/* -------------- footer-section ----------- */
.footer-section{
    background-color: #444242;
    width: 100%;
    height: auto;
    margin-top: 140px;
}
.custom_row_footer_padding{
    padding-top: 90px;
}

.first-footer{
    padding-left: 10%;
    padding-bottom: 110px;
}

.first-footer h3{
    font-size: 20px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
    padding-bottom: 30px;
}

.first-footer p{
    font-size: 18px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 30px;
}

.first-footer a{
    display: block;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
}

.first-footer a:hover{
    color: #f78f1f;
    text-decoration: none;
}

.first-footer h6{
    font-size: 20px;
    color: #fff;
    margin-bottom: 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding-top: 40px;
    text-transform: capitalize;
}

.footer_social ul{
    list-style-type: none;
    padding-top: 20px;
}

.footer_social ul li{
    display: inline-block;
    margin-right: 35px;
}

.footer_social ul li a{
    text-decoration: none;
}

.footer_social ul li a i{
    font-size: 20px;
    color: #fff;
    transition: all 0.5s;
}

.footer_social ul li a i:hover{
    color: #f78f1f;
}

.second-footer{
    padding-left: 25%;
}

.second-footer h3{
    font-size: 20px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 30px;
}

.second-footer ul{
    list-style-type: none;
}

.second-footer ul li{
    display: block;
    margin-bottom: 10px;
}

.second-footer ul li a{
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
}

.second-footer ul li a:hover{
    color: #f78f1f;
    text-decoration: underline;
    text-underline-offset: 6px;
}


.third_footer h3{
    font-size: 20px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-transform: capitalize;
}

.third_footer ul{
    list-style: none;
}

.third_footer ul li{
    display: block;
    margin-bottom: 10px;
}

.third_footer ul li a{
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
}

.third_footer ul li a:hover{
    color: #f78f1f;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.third_footer ul li a i{
    padding-right: 5px;
}

.fourth_footer h3{
    font-size: 20px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-transform: capitalize;
}

.fourth_footer p{
    font-size: 18px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    width: 90%;
}

.fourth_footer a{
    font-size: 18px;
    color: #f78f1f;
    text-decoration: none;
    margin-bottom: 35px;
    margin-top: 10px;
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.5s;
}

.fourth_footer a i{
    padding-left: 5px;
}

.fourth_footer a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #f78f1f;
}

.copyright p{
    color: #d3d3d3;
    font-size: 17px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #fff;
}

.copyright p i{
    color: #f78f1f;
}


/*---------------------- INNER-SECTION-CSS-STYLE ---------------------*/

.inner_section{
    background-image: url(../images/new-inner-page-banner.png);
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.inner_section::after{
    position: absolute;
    content: "";
    left: 50%;
    bottom: -100px;
    width: 2px;
    height: 250px;
    background-color: #f78f1f;
}

.inner_page_header h1{
    font-size: 60px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    padding-top: 180px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.inner_page_header h1 span{
    color: #f78f1f;
}

.inner_page_header p{
    font-size: 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 320px;
    width: 50%;
    margin: 0 auto;
}

.inner_about_content{
    padding-top: 130px;
}


/* --------------------SERVICE---------------- */
.service-section{
    padding-top: 130px;
}

.inner_service_content h2{
    color: #000;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
    padding-bottom: 20px;
    text-transform: capitalize;
}

.inner_service_content p{
    font-size: 18px;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: justify;
    line-height: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f78f1f;
}

.heading_padding{
    padding-top: 30px;
}

.last_hair_system p{
    border-bottom: none;
    padding-bottom: 0px;
}


/*---------------- CONTACT ---------------*/
.inner_contact_section{
    padding-top: 140px;
}

.map_btn a{
    color: #f78f1f;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    display: block;
    text-decoration: none;
    transition: all 0.5s;
}

.map_btn a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
}

.inner_contact_adddress_2{
    padding-top: 50px !important;
}
