html {
    overflow-X: hidden;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}


body {
    font-family: "Jost", serif;
    overflow-X: hidden;
}
h1, h2, h3, h4, h5, h6, p, a li{
    font-family: "Jost", serif;
}

.top_head {
    padding: 15px 0;
}

.top_head_left {
    width: 100%;
    margin: auto 0;
}

.top_head_left a {
    color: #505050;
    margin-right: 20px;
    display: block;
    margin-bottom: 10px;
}

.top_head_left a i {
    color: #ffffff;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #736354;
    border-radius: 50%;    
    text-align: center;
    line-height: 40px;    
}

.top_head_mdl {
    width: 100%;
    margin: auto 0;
    text-align: center;
}

.top_head_mdl.mobile-logo {
    display: none;
}

.top_head_mdl {
    display: block;
}

.top_head_right {
    width: 100%;
    margin: auto 0;
    text-align: right;
    display: flex;
    justify-content: end;
}

.top_head_right a {
    position: relative;
    background: #000000;
    color: #fff;
    padding: 18px 48px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    height: 60px;
    border-radius: 6px;
}

.top_head_right a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #736354;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
}

.top_head_right a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.menu_fixed {
    position: relative;
    z-index: 10;
}

.menu_fixed .navbar-collapse {
    background: #736354;
    justify-content: center;
}

.menu_fixed .navbar-collapse ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    transition: all 0.5s;
}

.menu_fixed .navbar-collapse ul li a::before {
    color: transparent;
    content: "";
    left: 50%;
    pointer-events: none;
    position: absolute;
    bottom: 10px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.5s;
}

.menu_fixed .navbar-collapse ul li a:hover {
    color: #fff;
}

.menu_fixed .navbar-collapse ul li a:hover::before {
    width: 50px;
}

.menu_fixed .navbar-collapse .nav-link {
    padding: 20px 30px;
}

.menu_fixed nav {
    padding: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #736354 !important;
    color: #fff !important;
}

.hamburger {
    display: none;
}

.sticky_menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.sticky_menu .navbar .container {
    max-width: 100%;
    padding: 0;
}

.sticky_menu.head_nav .dropdown-menu li a,
.head_nav .dropdown-menu li a {
    line-height: 30px;
    font-size: 14px;
    color: #000 !important;
}

.sticky_menu.head_nav .dropdown-menu li a:before,
.head_nav .dropdown-menu li a:before {
    display: none;
}

.sticky_menu.head_nav .dropdown-menu li a:hover,
.head_nav .dropdown-menu li a:hover {
    color: #fff !important;
}

.slider_area {
    margin-top: -32px;
}

.slide {
    position: relative;
    padding: 230px 0;
}

.slide .slide_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.slide:after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.slide p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 28px;
}

.cont_center {
    position: relative;
    z-index: 1;
}

.slide .slide_img img {
    max-width: 100%;
    height: 100%;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
    width: 100%;
    object-fit: cover;
}

.slide .slide_content--headings {
    text-align: center;
}

.slide .slide_content--headings h2 {
    font-size: 66px;
    margin: 0;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.slide .slide_content--headings .animated {
    transition: all 0.5s ease;
}

.slider_area [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slider_area .slick-arrow {
    border: none;
    background: transparent;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    width: 45px;
    z-index: 1;
}

.slider_area .slick-arrow.slick-next {
    right: 0;
    left: auto;
    transition: ease-in-out 0.3s;
    z-index: 0;
}

.slider_area .slick-arrow i {
    font-size: 35px;
    transition: all 0.3s;
    background: #fee000;
    padding: 5px 10px;
    color: #000000 !important;
}

.slider_area .slick-arrow i:hover {
    background: #ffffff;
}

.slider_area .slick-arrow:before {
    display: none;
}

@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

.slider_area .btn_area {
    margin-top: 30px;
}

.slider_area .btn_area a {
    background: #ffffff;
    border-radius: 6px;
    color: #000000;
}

.slider_area .btn_area a:hover {
    color: #fff;
}

.slider_area .btn_area a:before {
    background: #736354;
}

.btn_area {
    height: 60px;
}

.btn_area a {
    position: relative;
    background: #736354;
    color: #fff;
    padding: 18px 48px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    border-radius: 6px;
}

.btn_area a.call-btn {
    position: relative;
    background: #736354;
    color: #fff;
    padding: 18px 48px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    border-radius: 6px;
}

.btn_area a.call-btn:before {
    content: "";
    height: 300px;
    width: 300px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
}

.btn_area a::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
}

.btn_area a:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.head {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin: 0 0 45px;
}

.head i {
    position: relative;
    position: relative;
    display: block;
    margin-top: 20px;
}

.head i:before {
    content: "";
    width: 45%;
    height: 1px;
    border: 1px dotted #000000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.head i:after {
    content: "";
    width: 45%;
    height: 1px;
    border: 1px dotted #000000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.head i img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) saturate(100%) invert(35%) sepia(34%) saturate(270%) hue-rotate(348deg) brightness(101%) contrast(86%);
}

.head span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.head span:before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #736354;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.abt_area {
    padding: 70px 0;
}

.abt_left {
    width: 100%;
}

.abt_box {
    margin: 15px 0;
    display: flex;
}

.abt_icon {
    width: 100%;
    max-width: 100px;
    height: 100px;
    background: #736354;
    position: relative;
}

.abt_icon i {
    color: #fff;
    font-size: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.abt_cont {
    margin-left: 20px;
}

.abt_cont h3 {
    color: #000;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.abt_cont p {
    color: #505050;
    text-align: justify;
    line-height: 28px;
    margin: 0;
}

.abt_left .btn_area {
    margin-top: 30px;
}

.abt_left .btn_area a {
    margin-right: 20px;
}

.abt_left .btn_area a:first-child {
    background: #000000;
}

.abt_left .btn_area a:first-child:before {
    background: #736354;
}

.abt_right {
    width: 100%;
    margin-left: 50px;
    background: url(../images/abt_back.webp) no-repeat center;
    background-size: cover;
    position: relative;
}

.abt_right_btm {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.counter_section {
    text-align: center;
    background: #736354;
    padding: 60px 0;
    border-top: 10px solid #fff;
    width: 100%;
    margin: auto 0 0 0;
}

.counter_section span {
    color: #fff;
    font-weight: 800;
    font-size: 36px;
}

.counter_section span:after {
    content: "+";
    display: inline-block;
    margin-left: 5px;
}

.counter_section h4 {
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
}

.abt_right_img {
    height: 350px;
    border-left: 10px solid #fff;
    border-top: 10px solid #fff;
}

.abt_right_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pad_right_0 {
    padding-right: 0;
}

.pad_left_0 {
    padding-left: 0;
}

.service_area {
    padding: 70px 0;
    background: #f2f7ff;
}

.service_area .head {
    text-align: center;
}

.serv_box {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #d6d6d6;
    overflow: hidden;
    margin: 15px 0;
    width: 100%;
}

.serv_img {
    height: 250px;
    overflow: hidden;
}

.serv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.serv_box:hover img {
    transform: scale(1.1);
}

.serv_cont {
    padding: 20px 25px;
    text-align: center;
    background: #fff;
    height: 100%;
}

.serv_cont h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 5px;
    font-weight: bold;
}

.serv_cont p {
    color: #505050;
    line-height: 28px;
    margin: 0;
}

.serv_cont .btn_area {
    margin-top: 15px;
}

.serv_cont .btn_area a {
    padding: 12px 34px;
}

.gallery_area {
    padding: 70px 0;
    background: #736354;
}

.gallery_area .head i img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(277deg) brightness(104%) contrast(108%);
}

.gallery_area .head {
    text-align: center;
    color: #fff;
}

.gallery_area .head span {
    color: #fff;
}

.gallery_area .head span:before {
    background: #fff;
}

.gallery_area .head i:before,
.gallery_area .head i:after {
    background: #fff;
}

.lightimg_box {
    margin: 15px 0;
    position: relative;
}

.lightimg_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.lightimg_box a {
    position: relative;
    display: block;
    overflow: hidden;
    height: 300px;
    border-radius: 6px;
}

.lightimg_box a .overlay {
    background: url(../images/zoom_img.webp) no-repeat center #0000008f;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.lightimg_box a:hover .overlay {
    display: block;
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.lightimg_box a:hover img {
    transform: scale(1.15);
}

.gallery_area .btn_area {
    margin-top: 20px;
    text-align: center;
}

.gallery_area .btn_area a:first-child {
    background: #000000;
}

.gallery_area .btn_area a:hover {
    color: #000000;
}

.gallery_area .btn_area a:first-child:before {
    background: #fff;
}

.process_area {
    padding: 70px 0;
    overflow: hidden;
}

.process_area .head {
    text-align: center;
}

.process_box {
    background: #736354;
    border-radius: 8px;
    padding: 35px 10px;
    margin: 10px 0;
    transition: all 0.3s;
    width: 100%;
}

.process_box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.process_box h3 {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 15px;
    text-align: center;
}

.process_img {
    width: 78px;
    height: 78px;
    background: #fff;
    border-radius: 100%;
    text-align: center;
    position: relative;
    margin: auto;
    border: 3px solid #000000;
    box-shadow: 0 0 0 3px #fff;
}

.process_img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.process_box p {
    color: #dedede;
    text-align: center;
    font-weight: 400;
    line-height: 24px;
    margin: 15px 0 0;
}

.testimonial_area {
    background: #f2f7ff;
    padding: 70px 0;
}

.testimonial_area .head {
    text-align: center;
}

.test_box {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #d6d6d6;
}

.test_box p {
    padding: 40px 20px;
    color: #505050;
    line-height: 28px;
    margin: 0;
    text-align: justify;
}

.test_slider .item {
    padding: 20px;
}

.test_slider .slick-list {
    margin: 0 -20px;
}

.test_name {
    padding: 20px;
    background: #736354;
    display: flex;
}

.test_name h3 {
    margin: auto 0;
    padding-left: 20px;
}

.test_name h3 span {
    display: block;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    margin-bottom: -5px;
}

.test_name h3 i {
    color: #fc9e1a;
    font-size: 16px;
}

.test_slider .slick-dots {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    left: 0;
}

.test_slider .slick-dots li {
    border-color: white;
}

.test_slider .slick-dots li {
    width: 15px;
    height: 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin: 10px 3px 0;
    border-radius: 50%;
    background: #b8b8b8;
    color: transparent;
    border: none;
}

.test_slider .slick-dots li button {
    padding: 0;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

.test_slider .slick-dots li button:before {
    display: none;
}

.test_slider .slick-dots li.slick-active button {
    background: #736354;
}

.footer_area {
    background: #171717;
    padding: 70px 0;
	margin-top: -6px;
}

.footer_area h3 {
    font-weight: bold;
    font-size: 22px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #fff;
}

.footer_area h3:after {
    content: "";
    width: 80px;
    height: 3px;
    background: #fbf106;
    position: absolute;
    left: 0;
    bottom: 0;
}

.foot_left p {
    line-height: 28px;
    color: #d2d2d2;
    text-align: justify;
    margin: 0;
}

.foot_menu ul li {
    list-style: none;
    margin: 18px 0;
    position: relative;
    padding-left: 25px;
}

.foot_menu ul li a {
    color: #d2d2d2;
    transition: all 0.3s;
    font-size: 16px;
}

.foot_menu ul li a:hover {
    color: #fbf106;
}

.foot_menu ul li:before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fbf106;
}

.foot_menu_pad {
    padding-left: 30px;
}

.foot_address p {
    color: #d2d2d2;
    display: flex;
}

.foot_address p i {
    margin-right: 20px;
    margin-top: 3px;
    color: #fbf106;
}

.foot_address p span {
    display: block;
    font-size: 16px;
}

.foot_address p span a {
    color: #d2d2d2;
    text-decoration: none;
    word-break: break-all;
}

.foot_social ul li {
    margin: 10px 0;
    list-style: none;
}

.foot_social ul li i {
    width: 25px;
    height: 25px;
    background: #1849d1;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 14px;
    line-height: 25px;
    border-radius: 100%;
}

.foot_social ul li a span {
    color: #d2d2d2;
    transition: all 0.3s;
    position: relative;
    left: 0;
    font-size: 16px;
}

/* .foot_social ul li:nth-child(2) a i {
    background: #ff0000;
} */

.copy_area {
    background: #4e4339;
    padding: 30px 0;
    /* border-top: 1px solid #333361; */
}

.copy_area p {
    margin: 0;
    color: #fff;
}

.copy_right {
    text-align: right;
}

.entry-header {
    padding-left: 121px;
    padding-top: 60px;
}

.inner-abt {
    padding-bottom: 60px;
}



.inner_banner_caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    width: 100%;
    padding: 0 10px;
}

.inner_banner {
    position: relative;
    z-index: 1;
}

.inner_banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.inner_banner:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.inner_banner h1 {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    color: #fff;
}

.single_service {
    padding: 70px 0;
}

.single_service img {
    float: right;
    width: 40%;
    height: auto;
    margin: 0 0 20px 20px;
}

.single_service p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 28px;
    margin: 20px 0;
    color: #505050;
}

.single_service p a {
    color: #0566b3;
    font-weight: bold;
}

.single_service ul li {
    list-style: none;
    color: #505050;
    margin: 5px 0;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
}

.single_service ul li:before {
    content: "\f00c";
    color: #736354;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.single_service .clearfix {
    display: contents;
}

.single_service ul {
    padding: 0;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.schema-how-to-steps {
    padding-left: 0 !important;
}

.singale_service {
    display: inline-block;
    width: 100%;
    padding: 60px 0;
}

.form-control {
    line-height: 2;
    border-radius: 0;
}

.dropdown-menu {
    min-width: 16rem;
}

.navbar-light .navbar-brand img {
    width: 110px;
}

.form-area {
    width: 100%;
    height: auto;
    background: #736354;
    padding: 20px;
    margin: 70px 0;
}

.form-area .foot_address span {
    color: #000;
    display: block;
}

.form-area .foot_address span a {
    color: #000;
}

/* .form-area .foot_address p{
  display: inline-flex;
} */
.form-area .foot_address i {
    padding-top: 7px;
    padding-right: 10px;
    color: #000000;
}

.form-bg-img {
    height: 100%;
    width: 100%;
    background: #fff;
    padding: 10px;
}

.form-bg-img img {
    height: 100%;
}

.form-area input {
    /*height: 45px;*/
    border-radius: 0 !important;
}

.form-area textarea {
    height: 156px;
}

.form-btn {
    position: relative;
    background: #000000;
    color: #fff;
    padding: 18px 48px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

form {
    padding-top: 20px;
}

form h3 {
    color: #fff;

}








/*===============Responsive Starts===============*/
@media all and (min-width: 800px) {}

@media (min-width:981px) and (max-width:1399px) {
    .foot_menu_pad {
        padding: 0;
    }

    .footer_area h3 {
        font-size: 18px;
    }

    .head {
        font-size: 28px;
    }

    .abt_left .btn_area a {
        margin-right: 5px;
    }
}

@media (min-width:768px) and (max-width:980px) {
    .top_head_left a {
        display: flex;
        margin: 2px 0;
        font-size: 14px;
        word-break: break-all;
    }

    .top_head_mdl {
        width: 200px;
        margin-left: 20px;
    }

    .top_head_mdl a img {
        width: 75%;
    }

    .top_head_mdl.mobile-logo {
        display: none;
    }

    .top_head_mdl {
        display: block;
    }

    .sticky_menu .top_head_mdl.mobile-logo {
        width: 200px;
        transition: 0.8s;
    }

    .sticky_menu .top_head_mdl.mobile-logo a img {
        width: 82%;
    }

    .sticky_menu .navbar-nav {
        justify-content: center;
    }

    .sticky_menu .top_head_mdl {
        display: none;
    }

    .sticky_menu {
        position: relative;
    }

    .sticky_menu {
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0;
        z-index: 9;
        height: 120px;
        transition: 0.8s;
        box-shadow: 0 0.5rem 0.8rem #0000001b;
    }

    /* .sticky_menu .hamburger{
        top: 27px;
        transition: 0.8s;
    } */

    .hamburger {
        background: #736354;
        padding: 10px;
        border: none;
        display: block;
        position: absolute;
        top: -75px;
        right: 12px;
        height: 50px;
        display: none;
    }

    .top_head_right {
        margin-top: 10px;
    }

    .top_head_right a {
        padding: 18px 12px;
    }

    .collapse:not(.show) {
        display: block;
    }

    .menu_fixed ul li {
        display: inline-block;
    }

    .menu_fixed ul {
        text-align: center;
    }

    .menu_fixed .navbar-collapse .nav-link {
        padding: 20px 15px;
    }

    .navbar-nav {
        flex-direction: row;
    }

  
    .top_head_left a i{
        margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #736354;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    min-width: 40px;
    color: #fff !important;
    }
    .mind_back{
        padding: 60px 10px;
    }
    .mind_area h3{
        font-size: 35px;
        padding-bottom: 10px;
    }
    .lightimg_box a{
        height: 190px;
    }
    .lightimg_box{
        margin: 6px 0;
    }
    .dropdown-item{
        text-align: left !important;
    }
    .navbar-nav{
        justify-content: center;
    }

    .menu_fixed .dropdown-menu li {
        display: block;
    }

    .slide {
        padding: 100px 0;
    }

    .slide .slide_content--headings h2 {
        font-size: 20px;
    }

    .slide .slide_content--headings {
        padding: 0 40px;
    }

    .btn_area a {
        padding: 10px 20px;
    }

    .head {
        font-size: 22px;
    }

    .abt_icon i {
        font-size: 32px;
    }

    .abt_icon {
        max-width: 70px;
        height: 70px;
    }

    .abt_left .btn_area a {
        margin-right: 5px;
    }

    .abt_right {
        margin-left: 0;
    }

    .foot_menu_pad {
        padding: 0;
    }

    .footer_area h3 {
        margin: 15px 0;
    }
}

@media (max-width:767px) {
    .top_head_left {
        text-align: center;
        display: none;
    }
    .slick-slide{
        height: 500px !important;
    }
    .mind_area h3{
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .mind_back{
        padding: 10px 10px !important;
    }
    .mind_area{
        padding-bottom: 30px;
    }
    .left-side {
        padding-top: 20px !important;
    }
    .cont_center{
        margin-top: 65px;
    }

    .top_head {
        padding: 5px 0;
    }
    .bnr_form_area{
        padding: 20px !important;
    }

    .slider_area .btn_area a,
    .slider_area .btn_area a.call-btn {
        padding: 10px 10px;
        width: 148px;
        font-size: 14px;
        line-height: 40px;
        height: 60px;
    }

    .slider_area .slick-arrow {
        top: 43%;
    }

    .slider_area .slick-arrow i {
        font-size: 21px;
    }

    .top_head_left a {
        display: flex;
        margin: 2px 0;
        font-size: 13px;
        word-break: break-all;
    }

    .top_head_right {
        justify-content: start;
        margin-top: 10px;
    }

    .sticky_menu .top_head_mdl.mobile-logo {
        display: block;
        width: 200px;
        transition: 0.8s;
    }

    .sticky_menu .top_head_mdl.mobile-logo a img {
        width: 82%;
    }

    .sticky_menu .top_head_mdl {
        display: none;
    }

    .sticky_menu {
        position: relative;
    }

    .sticky_menu {
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0;
        background: #fff;
        z-index: 9;
        height: 120px;
        transition: 0.8s;
        box-shadow: 0 0.5rem 0.8rem #0000001b;
    }

    .sticky_menu .hamburger {
        top: 27px;
        transition: 0.8s;
        border-radius: 0;
    }

    .hamburger {
        background: #736354;
        padding: 10px;
        border: none;
        display: block;
        position: absolute;
        top: -65px;
        right: 12px;
        height: 60px;
        border-radius: 0 6px 6px 0;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background-color: #fff;
        display: block;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #hamburger-1.is-active .line:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        -o-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    #hamburger-1.is-active .line:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
        -o-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    #hamburger-1.is-active .line:nth-child(2) {
        opacity: 0;
    }

    .menu_fixed .navbar-collapse .nav-link {
        padding: 10px 10px;
    }

    .menu_fixed .navbar-collapse .nav-link:before {
        display: none;
    }

    .lightimg_box a {
        height: 140px;
    }

    .lightimg_box {
        margin: 5px 0;
    }

    .slide {
        padding: 100px 0;
    }

    .slide .slide_content--headings h2 {
        font-size: 20px;
    }

    .slide .slide_content--headings {
        padding: 0 10px;
    }

    .slider_area .btn_area {
        display: flex;
        justify-content: center;
    }

    .btn_area a {
        padding: 10px 20px;
    }

    .top_head_right a {
        width: 100%;
        text-align: left;
    }

    .form-area .foot_address i {
        padding-top: 2px;
    }
    .form-area .foot_address i{
        padding-right: 0;
    }

    .abt_area,
    .service_area,
    .gallery_area,
    .process_area,
    .testimonial_area {
        padding: 40px 0;
    }

    .head span {
        font-size: 16px;
    }

    .head span:before {
        width: 14px;
        height: 14px;
    }

    .head {
        font-size: 20px;
    }

    .single_service .head {
        margin: 0 0 20px;
    }

    .abt_cont h3 {
        font-size: 16px;
    }

    .abt_icon i {
        font-size: 26px;
    }

    .abt_icon {
        max-width: 50px;
        height: 50px;
    }

    .abt_cont p {
        font-size: 14px;
        line-height: 24px;
    }

    .abt_right {
        margin: 0;
        height: 600px;
    }

    .abt_left .btn_area {
        text-align: center;
    }

    .abt_left .btn_area a {
        margin: 0 2px;
        padding: 10px 18px;
        font-size: 15px;
    }

    .abt_right_img {
        height: 200px;
        border: none;
    }

    .counter_section {
        padding: 30px 0;
        border: none;
    }

    .pad_right_0 {
        padding-right: 12px;
    }

    .pad_left_0 {
        padding-left: 12px;
    }

    .serv_cont {
        padding: 15px;
    }

    .serv_cont p,
    .test_box p {
        font-size: 14px;
        line-height: 24px;
    }

    .serv_cont h3 {
        font-size: 16px;
    }

    .test_box p {
        padding: 15px 20px;
    }

    .footer_area {
        padding: 40px 0;
    }

    .footer_area h3 {
        margin: 15px 0;
    }

    .foot_menu_pad {
        padding: 0;
    }

    .foot_left p {
        font-size: 14px;
        line-height: 22px;
    }

    .foot_menu ul li,
    .foot_address p {
        font-size: 14px;
        line-height: 22px;
    }

    .copy_area {
        text-align: center;
        padding: 15px 0;
    }

    .copy_area p {
        font-size: 14px;
    }

    .copy_right {
        text-align: center;
    }

    .inner_banner h1 {
        font-size: 20px;
    }

    .inner_page img,
    .single_service img {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .inner_banner img {
        height: 200px;
    }

    .single_service p,
    .single_service ul li {
        font-size: 14px;
        line-height: 24px;
    }
}

/*===============Responsive Ends===============*/
.call_float {
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 9999;
}

.call_float a i {
    width: 50px;
    height: 50px;
    background: #ff0606;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.5s;
}




/* Nav section style start */




.nav-section-scrolled {
    position: fixed !important;
    width: 100%;
    top: 0;
    transition: 0.5s;
}

.nav-section main {
    position: relative;
}

.nav-section {
    background: #136798;
    position: relative;
    z-index: 150;
}

.nav-section .navbar {
    padding: 0;
    height: 60px;
    /* overflow: hidden; */
}

/* Banner form style start */


.bnr_form_area {
    margin-top: -50px;
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.bnr_form_area h3 {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    margin: 0;
}

.bnr_form_area form {
    margin-top: 5px;
}

.bnr_form_area form input,
.bnr_form_area form select,
.bnr_form_area form textarea {
    border: 1px solid #b7b7b7;
    color: #5a5a68;
    height: 62px;
    margin: 5px 0;
    border-radius: 8px;
    appearance: auto;
}

.bnr_form_area form input::placeholder,
.bnr_form_area form select::placeholder,
.bnr_form_area form textarea::placeholder {
    color: #5a5a68;
}

.bnr_form_area form input:focus,
.bnr_form_area form select:focus,
.bnr_form_area form textarea:focus {
    box-shadow: 0 0 5px rgba(232, 168, 19, 0.5);
    border: 1px solid #e8a813;
}

.form_btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s linear !important;
    z-index: 2;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    border-radius: 8px !important;
    border: none !important;
    background: #121212 !important;
    height: 62px !important;
    width: 100%;
}


/* Mind area style start */


.mind_area {
    position: relative;
    /* margin-top: 70px; */
    background: #151515;
  }
  
  /* .mind_area:before{content: "";background: url(../images/border2.webp) no-repeat 0 0;position: absolute;left: 0;top: 0;width: 100%;height: 90px; z-index:2; background-size: cover;} */
  .mind_back {
    /* background: linear-gradient(to top, #d3150bd1, #d9130ae8), url(../img/mind_back.webp) no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
    border-radius: 6px;
    z-index: 99;  
    /* margin-bottom: -72px; */
    border-radius: 6px;
    overflow: hidden;
    /* 	background: url(../img/mind_back.webp) no-repeat center;background-size: cover; background-attachment: fixed; */
    padding: 60px 70px;
    position: relative;
  }
  
  /* .mind_back:after{content: "";position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #1f1f1f9e; z-index: -1;} */
  .mind_area h3 {
    font-weight: bold;
    color: #fff;
    font-size: 42px;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
  }
  
  .mind_area .btn_area a {
    width: 215px;
  }
  
  .left-side {
    padding-top: 100px;
  }
  
  .mind_area .btn_area {
    text-align: center;
    margin-top: 30px;
  }

.get-form {
    box-shadow: 0 0.5rem 1.1rem rgba(0, 0, 0, 0.5);
    padding: 50px 30px;
    background: #fff;
    border-radius: 10px;
  }
  
  .contact_address {
    background: #0546c8;
    padding: 50px;
    border-radius: 6px;
  }
  
  .single_service {
    padding: 80px 0 20px;
  }
  
  .get-form input {
    margin-bottom: 20px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 0;
    /*     width: 100%; */
  }
  
  .get-form .form_btn {
    padding: 10px 30px;
    background: #736354 !important;
    color: #fff;
    border-radius: 6px;
    height: auto;
    transition: 0.5s;
  }
  
  .get-form .form_btn:hover {
    background: #000 !important;
    color: #fff;
  }
  
  .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
  }
  
  .get-form textarea {
    width: 100%;
    display: inline-block;
  }
  
  .get-form .nice-select {
    width: 100%;
  }
  
  .get-form .nice-select .list {
    width: 100% !important;
  }
  
  .get-form .nice-select:after {
    border-bottom: 2px solid rgba(153, 153, 153, 0);
    border-right: 2px solid rgba(153, 153, 153, 0);
  }
  
  .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #191918;
    outline: 0;
    box-shadow: 0 0 0 1px #33333347;
  }
  
  .form-select:focus {
    border-color: #fe0000;
    outline: 0;
    box-shadow: 0 0 0 1px #fe00002c;
  }
  
  .form-select {
    padding-top: 0 !important;
  }
  
  .textarea {
    width: 100%;
  }
  
  .get-bnt-area {
    margin-top: 27px;
  }
  
  .get-btn {
    padding: 14px 30px;
    text-align: center;
    background: #f85508 !important;
    border-radius: 40px;
    font-weight: 700;
    position: relative;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .get-btn:hover {
    background: #ba0303;
  }
