/* FONT LINK */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@font-face {
    font-family: 'my-font1';
    src: url(../fonts/BasisGrotesqueArabicPro-Light.ttf);
}

@font-face {
    font-family: 'my-font2';
    src: url(../fonts/BasisGrotesqueArabicPro-Regular.ttf);
}

@font-face {
    font-family: 'my-font3';
    src: url(../fonts/BasisGrotesqueArabicPro-Medium.ttf);
}

@font-face {
    font-family: 'my-font4';
    src: url(../fonts/BasisGrotesqueArabicPro-Bold.ttf);
}

:root {
    --theme-color: #000;
    --theme-color-second: #000;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
    font-size: 15px;
    color: #1e1e1e;
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    font-family: "DM Sans", sans-serif;
    /* color: var(--theme-color) !important; */
}

a {
    color: #0055f1;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: 14px;
    color: inherit;
    font-family: 'my-font2';
}

h1,
h2,
h3,
h4,
h5,
h6 {}

p {
    margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 15px;
}

ul li {
    margin-bottom: 0px;
}

.img-fluid {
    display: block;
    width: 100%;
    max-width: 100%;
}

.li {
    display: inline-block;
    padding: 0px 5px;
}

ul {
    list-style: none;
    padding: 0;
}

h1 {
    font-size: 62px;
    text-transform: uppercase;
    font-family: 'my-font4';
}

h2 {
    font-size: 48px;
    text-transform: uppercase;
    font-family: 'my-font4';
    line-height: 49px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 19px;
}

.bg-cover {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.gap {
    margin-bottom: 30px;
}

section {
    padding: 80px 0px;
}

.form-control:focus {
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}


/* navbar */

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

* {
    box-sizing: border-box;
}

.m-backtotop {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    bottom: 10px !important;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #00ebff;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #00ebff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    overflow: hidden;
    color: #fff;
    z-index: 111;
}

.m-backtotop.active {
    bottom: 15px;
    opacity: 1;
}

.m-backtotop>div {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}

.m-backtotop>div.text {
    font-size: 5px;
    font-size: 0.5rem;
    line-height: 10px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "Open Sans", sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px;
}

.m-backtotop:hover {
    transform: scale(1.1);
    bottom: 20px;
    cursor: pointer;
    background: black;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0;
}

.m-backtotop:hover>div.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1;
}


/* SMALL NAVBER */

.small {
    display: none;
}


/* HEADER NAVBER */

.header_menu {
    background: #fff;
    padding: 13px 0 14px;
}

a.navbar-brand img {
    width: 135px;
}

.header_menu li a:hover {
    color: var(--theme-color-second);
}

.hd_info {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}


/* 
.hd_info a img {
    margin: 0 24px 0 10px;
} */

a.comon-btn {
    background: #f6cf17;
    color: #010101;
    display: flex;
    font-size: 14px;
    padding: 12px 0px;
    border-radius: 3px;
    align-items: center;
    gap: 6px;
    width: 200px;
    text-align: center;
    justify-content: center;
    font-weight: 500;
}

.comon-btn img {
    width: 14px;
}

a.comon-btn:hover {
    background: #ccc;
    color: #000;
}

a.comon-btn2 {
    background: #00ebff;
    color: #010101;
    display: flex;
    font-size: 13px;
    padding: 12px 0px;
    border-radius: 3px;
    align-items: center;
    gap: 6px;
    width: 212px;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
}

a.comon-btn2:hover {
    background: #000;
    color: #fff;
}

.header_menu li a {
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 32px;
}

.navbar li:hover a {
    color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }
    .navbar li .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }
    .navbar li:hover a {
        color: var(--theme-color-second);
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }
    .navbar li:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 130%;
        transform: rotateX(0deg);
    }
}

ul.dropdown-menu.fade-up li a:hover {
    color: #fff !important;
    background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
    border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
    border-bottom: 1px solid #c1c0bd;
    margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
    color: #000 !important;
    font-size: 13px;
    display: block;
    width: 100%;
    padding: 12px 12px;
}

ul.dropdown-menu.fade-up {
    border: none;
    background: #fff;
    padding: 0 0;
    min-width: inherit;
    width: 270px;
    border-radius: 0px;
}

.link-sm-2 i {
    top: -9px !important;
}

.link-sm-2 {
    position: relative;
}

#main_header .top_main_header {
    background: #00ebff;
    color: #010101;
    padding: 7px 0;
}

#main_header .top_main_header a {
    color: #010101;
    font-size: 14px;
}

#main_header .top_main_header span {
    font-size: 14px;
}

#main_header .top_main_header .right_content {
    display: flex;
    align-items: center;
    gap: 9px;
}

#main_header .top_main_header .right_content img {
    width: 70px;
}

#main_header .top_main_header .left_content img {
    width: 15px;
}

#main_header .top_main_header .left_content {
    display: flex;
    align-items: center;
    gap: 7px;
}

#main_header .top_main_header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main_header .header_menu .main_header_right_content .hd_info {
    justify-content: end;
}

.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: space-between;
}

#main_header .header_menu .main_header_right_content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#main_header ul.dropdown-menu.fade-up {
    overflow-y: scroll;
    height: 264px;
}

#main_header ul.dropdown-menu.fade-up.area-drop {
    height: auto;
    overflow-y: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/* BANNER SEC */

.banner_sec {
    padding: 55px 0;
}

.banner_sec .banner_form {
    background: #fff;
    border-radius: 5px;
    padding: 35px 24px;
}

.banner_sec .banner_form form input {
    width: 100%;
    padding: 10px 9px;
    border-radius: 4px;
    border: 1px solid #a4a4a4;
    outline: none;
}

.banner_sec .banner_form form select {
    width: 100%;
    padding: 10px 9px;
    border-radius: 4px;
    border: 1px solid #a4a4a4;
    outline: none;
    font-size: 15px;
    color: #6f6f6f;
}

.banner_sec .banner_form form .form-select:focus {
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}

.banner_sec .banner_form form textarea {
    width: 100%;
    padding: 10px 9px;
    border-radius: 4px;
    border: 1px solid #a4a4a4;
    outline: none;
    font-size: 15px;
}

.banner_sec .banner_form form button {
    width: 100%;
    padding: 10px 9px;
    border-radius: 4px;
    border: 1px solid #00ebff;
    outline: none;
    font-size: 15px;
    color: #fff;
    background: #00ebff;
}

.banner_sec .banner_form p {
    margin-bottom: 16px;
    color: #000000a6;
}

.banner_sec .banner_form h5 {
    margin-bottom: 3px;
    font-family: 'my-font4';
    color: #00ebff;
    /* font-weight: 600; */
    letter-spacing: 0px;
    font-size: 22px;
}

.banner_sec .banner_heading h1 {
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 16px;
}

.banner_sec .banner_heading h4 {
    font-family: "my-font3";
    margin-bottom: 8px;
    font-weight: 100;
}

.banner_sec .banner_heading {
    color: #fff;
}

.banner_sec .btom_content .left_btom_content img {
    width: 255px;
}

.banner_sec .btom_content .right_call_to_action {
    display: flex;
    /* align-items: center; */
    gap: 8px;
    /* background: rgb(10, 152, 188); */
    background: linear-gradient(90deg, rgba(10, 152, 188, 0) 0%, rgba(1, 1, 1, 0.8099440459777661) 30%, rgba(1, 1, 1, 0.81) 70%, rgba(93, 44, 80, 0) 100%);
    padding: 5px 65px;
}

.banner_sec .btom_content .right_call_to_action img {
    width: 48px;
}

.banner_sec .btom_content .right_call_to_action a span {
    color: #fff;
    font-size: 24px;
    font-family: "my-font4";
    display: block;
}

.banner_sec .btom_content .right_call_to_action a {
    color: #fff;
    line-height: 19px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.banner_sec .btom_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 380px;
}

.banner_sec .banner_form .review_icon img {
    width: 95px;
}

.banner_sec .banner_form .review_icon h6 {
    margin-bottom: 0;
    font-size: 17px;
    font-family: "my-font3";
}

.banner_sec .banner_form .review_icon h6 span {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    font-family: "my-font4";
}

.banner_sec .banner_form .review_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 19px;
}


/* WHAT WE DO */

.what_we_do_sec .right_content .content {
    background: #00ebff;
    border-radius: 3px;
    text-align: center;
    padding: 32px 0;
    transition: 0.8s;
    color: #fff;
}

.what_we_do_sec .right_content .content2 {
    background: #f6cf17;
    color: #000;
}

.what_we_do_sec .right_content .content2:hover .img_1 {
    opacity: 1 !important;
    visibility: visible !important;
}

.what_we_do_sec .right_content .content2:hover .img_2 {
    opacity: 0 !important;
    visibility: hidden !important;
}

.what_we_do_sec h2 span {
    font-size: 58px;
    text-transform: uppercase;
    font-family: 'my-font4';
    line-height: 56px;
}

.what_we_do_sec .right_content .content:hover {
    background: #f6cf17;
    color: #000;
    transition: 0.8s;
}

.what_we_do_sec .right_content .content h6 {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 17px;
}

.what_we_do_sec .right_content .content img {
    width: 65px !important;
    margin-bottom: 13px;
}

.what_we_do_sec .right_content .content .top_img {
    position: relative;
}

.what_we_do_sec .right_content .content .top_img .img_1 {
    opacity: 1;
    visibility: visible;
    transition: 0.8s;
    margin: 0 auto;
    margin-bottom: 15px;
}

.what_we_do_sec .right_content .content:hover .img_1 {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
}

.what_we_do_sec .right_content .content .top_img .img_2 {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
}

.what_we_do_sec .right_content .content:hover .img_2 {
    opacity: 1;
    visibility: visible;
    transition: 0.8s;
}

.what_we_do_sec .right_content .content {
    position: relative;
}

.what_we_do_sec h3 {
    font-family: 'my-font4';
}

.what_we_do_sec .owl-nav {
    position: relative;
}

.what_we_do_sec .owl-next {
    position: absolute;
    right: -40px;
    top: -95px;
}

.what_we_do_sec .owl-prev {
    position: absolute;
    left: -40px;
    top: -95px;
}

.what_we_do_sec .owl-nav img {
    width: 35px;
}

.what_we_do_sec .owl-carousel .owl-nav.disabled {
    display: block;
}


/* WHY CHOOSE SEC */

.why_choose_sec .left_content img {
    border-radius: 10px;
}

.why_choose_sec .right_content ul li img {
    width: 104px;
}

.why_choose_sec .right_content ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.why_choose_sec .right_content ul li h6 {
    margin-bottom: 8px;
    font-family: "my-font3";
}

.why_choose_sec .right_content ul li p {
    line-height: 1.6;
    color: #4d4d4d;
}

.why_choose_sec .right_content ul {
    margin-bottom: 0;
}


/* SERVICES SEC */

.services_sec .content img {
    width: 65px !important;
    margin: 0 auto;
    margin-bottom: 25px;
}

.services_sec .content h5 {
    font-family: 'my-font3';
}

.services_sec .content {
    box-shadow: rgba(0, 0, 0, 0.45) 1px 2px 10px 0;
    padding: 35px 12px;
    border-radius: 4px;
    margin: 10px 10px;
}

.services_sec .content p {
    margin-bottom: 17px;
}

.services_sec .btom_content p span {
    font-size: 20px;
    /* font-family: 'my-font2'; */
    font-weight: 400;
}

.services_sec .btom_content {
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
}

.services_sec .owl-nav {
    position: relative;
}

.services_sec .owl-next {
    position: absolute;
    right: -10px;
    top: -224px;
}

.services_sec .owl-prev {
    position: absolute;
    left: -10px;
    top: -224px;
}

.services_sec .owl-nav img {
    width: 50px;
}

.services_sec .owl-carousel .owl-stage {
    display: flex;
}

.services_sec .owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.services_sec .owl-carousel .owl-nav.disabled {
    display: block;
}


/* QULITY SEC */

.qulity_sec .heading {
    padding-right: 29px;
}

.qulity_sec .btom_content .left_content h4 {
    line-height: 31px;
    font-size: 23px;
    margin-bottom: 21px;
}

.qulity_sec .btom_content .left_content .content {
    background: transparent;
    border-radius: 3px;
    text-align: center;
    padding: 28px 0;
    transition: 0.8s;
    color: #fff;
    border: 1px solid;
}

.qulity_sec .btom_content .left_content .content img {
    width: 65px !important;
    margin-bottom: 17px;
}

.qulity_sec .btom_content .left_content .content h6 {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 18px;
}

.qulity_sec .right_content {
    text-align: center;
    background: #00ebff;
}

.qulity_sec .right_content .srat_icon {
    width: 134px;
    display: block;
    margin: 0 auto;
    margin-bottom: 17px;
}

.qulity_sec .right_content .track_icon {
    margin-bottom: 20px;
    width: 88px;
}

.qulity_sec .right_content p span {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    display: block;
    margin-bottom: -2px;
}

.qulity_sec .right_content {
    text-align: center;
    background: #00ebff;
    border-radius: 10px;
    padding: 35px 10px;
}

.qulity_sec .heading h2 {
    color: #f6cf17;
    margin-bottom: 19px;
}


/* HOME SEC 1 */

.home_sec1 h3 {
    text-transform: uppercase;
    font-family: 'my-font4';
    font-size: 38px;
    font-weight: 600;
}

.home_sec1 {
    position: relative;
}

.home_sec1 .left_content {
    position: absolute;
    top: 10%;
    left: -144px;
    width: 42%;
    transform: translate(0);
}

.home_sec2 .heading h2 {
    margin-bottom: 10px;
}

.home_sec2 .btom_content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

.home_sec2 .btom_content ul li img {
    width: 22px;
}

.home_sec2 .btom_content {
    display: flex;
    gap: 50px;
}

.home_sec2 a.comon-btn2 {
    background: #f6cf17;
}

.home_sec2 a.comon-btn2:hover {
    background: #000;
    color: #fff;
}


/* COUNTER JS */

#counter2 {
    /* text-align: center; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* background: #e6e6e7; */
    /* padding: 40px 0px; */
    /* width: 100%; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 76%;
    margin: 0 auto;
}

#counter2 .item .count {
    color: #fff;
    /* margin-bottom: 5px; */
    /* font-size: 40px; */
    font-size: 28px;
    margin-bottom: 0px;
    font-weight: 600;
}

#counter2 .item {
    background: #3a4153;
    /* width: 200px; */
    padding: 28px 16px;
    margin: 10px;
    text-align: center;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #fff;
    color: #fff;
}

#counter2 .item img {
    width: 50px;
}

.counter_js_sec1 .top_content span {
    font-size: 34px;
    font-weight: 600;
    line-height: 0;
}

.counter_js_sec1 .top_content {
    gap: 5px;
    margin-bottom: 2px;
}

#counter2 .item h3 {
    color: #e3e3e3;
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 0;
}


/* REVIEW SEC */

.review_sec .contented {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin: 18px 8px;
}

.review_sec .contented .content p {
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 45px;
}

.review_sec .contented .btom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review_sec .contented .btom .content_left img {
    width: 80px;
    margin-bottom: 10px;
}

.review_sec .contented .btom .content_left h5 {
    font-size: 14px;
    font-weight: 400;
    color: #080707;
    margin-bottom: -1px;
}

.review_sec .contented .btom .content_left span {
    color: #666666;
    font-size: 12px;
}

.review_sec .contented .btom .content_right img {
    width: 22px;
}

.review-slider .owl-prev {
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
}

.review-slider .owl-next {
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
}

.review-slider .owl-prev i {
    color: #000;
    font-size: 30px;
}

.review-slider .owl-next i {
    color: #000;
    font-size: 30px;
}

.review_sec .heading img {
    width: 185px;
}

.review_sec .heading h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.review_sec {
    padding: 35px 0;
}

.review_sec .contented .content img {
    width: 55px;
    margin-bottom: 20px;
}

.review_sec .owl-nav img {
    width: 35px;
}

.review_sec .contented .content .ratting_number {
    width: 45px !important;
}

.review_sec .btom_content p {
    font-size: 15px;
}


/* FAQ PAGE */

.faqs .accordion-button:not(.collapsed)::after {
    background-image: url('../image/minus.png');
}

.faqs .accordion-button::after {
    flex-shrink: 0;
    margin-left: auto;
    content: "";
    background-image: url('../image/plus.png');
    background-repeat: no-repeat;
}

.faqs .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 17px;
    color: #000 !important;
    text-align: left;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    padding: 18px 14px;
}

.faqs button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.faqs .accordion-item {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
    margin-bottom: 0;
    border: none;
}

.faqs .accordion-button:not(.collapsed) {
    color: #000000 !important;
    background-color: #fd7a6c00;
    box-shadow: none;
}

.faqs .accordion-item h2 {
    line-height: initial;
    font-family: 'my-font2';
}

.demo_sec {
    padding-bottom: 170px;
}

.faqs .accordion-body {
    padding: 0 10px;
}

.faqs .accordion-body p {
    color: #595959;
}


/* BLOG PAGE STRAT */

.blog_page {
    color: #000;
}

.blog_page .center {
    text-align: center;
    margin-top: 40px;
}

.blog_page .pagination {
/*     display: inline-block; */
	justify-content: center;
}

.blog_page .pagination a {
    color: #000000;
    float: left;
    padding: 6px 14px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
    margin: 0 4px;
    font-size: 18px;
}

.blog_page .pagination a.active {
    background-color: #e25e1e;
    color: #ffffff;
    border: 1px solid #e25e1e;
}

.blog_page .pagination a:hover:not(.active) {
    background-color: #ddd;
}

.blog_page .service_content h6 {
    margin-top: 7px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.blog_page .service_content p {
    color: #8a8a8a;
}

.blog_page .service_by p {
    margin-bottom: 0;
}

.blog_page .service_by p span {
    color: #000;
}

.blog_page .service_by {
    display: flex;
    align-items: center;
    gap: 25px;
}

.blog_page .service_content {
    box-shadow: rgba(0, 0, 0, 0.24) 1px 2px 13px 0px;
    border-radius: 10px;
    padding: 10px;
}

.blog_page .service_content img {
    border-radius: 10px 10px 0px 0px;
}

.blog_page .blog_content {
    padding: 0;
}

.blog_page .blog_content .read_more {
    text-transform: uppercase;
    color: #e25e1e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
}

.blog_page .blog_content .read_more i {
    font-size: 19px;
}

.blog_page .blog_content .read_more:hover {
    letter-spacing: 2px;
}

.blog_page .blog_page h2 {
    font-weight: 500;
}

.blog_page .heading p {
    margin-bottom: 0;
}

.blog_page .service_content .top_img {
    border-radius: 7px;
    overflow: hidden;
    transition: 0.8s;
    margin-bottom: 14px;
}

.blog_page .service_content .top_img img {
    transform: scale(1);
    transition: 0.8s;
}

.blog_page .service_content:hover .top_img img {
    transform: scale(1.1);
    transition: 0.8s;
}

.blog_page .service_content span {
    font-size: 14px;
    color: #656565db;
    font-weight: 400;
}


/* FOOTER SEC */

footer {
    padding: 80px 0 70px;
}

footer .left_ft_content .ft_menu h6 {
    margin-bottom: 21px;
    font-size: 19px;
}

footer .left_ft_content {
    display: flex;
/*     gap: 90px; */
    margin-bottom: 12px;
	width: 100%;
}
/* for footer menu updated on 10-07-2024 */
.ft_menu{
	width:50%;
}

footer .left_ft_content .ft_menu ul li {
    margin-bottom: 10px;
    color: #cecece;
}

footer .toppng_img img {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 22px;
}

footer .ft_google_icon {
    text-align: center;
}

footer .emergency_content span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #00ebff;
}

footer .google_icon img {
    width: 65%;
    margin: 0 auto;
}

footer .emergency_content p {
    font-size: 14px;
}

footer .ft_right_content .top_img img {
    width: 180px;
    margin-bottom: 40px;
}

footer .social_icon {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}

footer .social_icon a img {
    width: 15px;
}

footer .ft_right_content {
    text-align: end;
}

footer .ft_right_content ul li a {
    color: #d5d5d5;
}

footer .ft_right_content ul {
    margin-bottom: 0;
    margin-top: 30px;
}

footer .ft_right_content ul li {
    margin-bottom: 8px;
}

footer .ft_right_content ul li .call_number {
    font-size: 42px;
    font-weight: 600;
    display: block;
    margin-bottom: -5px;
    color: #f6cf17;
}

footer .ft_copy_rigth_btom a {
    color: #d9d9d9;
}

footer .ft_copy_rigth_btom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
}

footer .left_ft_content .ft_menu ul li a {
    color: #ccc;
}


/* *********** */

a.fixed-btn {
    display: inline-block;
    font-size: 15px;
    padding: 18px 0px;
    border-radius: 0;
    width: 100%;
    text-align: center;
    background: #f6cf17;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #f6cf17;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    bottom: 0;
    z-index: 99999999999;
}

a.fixed-btn img {
    width: 14px;
}


/* emmergency_service Banner*/

.inner-banner .breadcrumb-item {
    color: #fff;
    font-weight: 600;
}

.inner-banner .breadcrumb-item a {
    color: #00ebff;
}


/* inner_serve-2  */

.inner_serve-2 {
    background-color: #d6d6d6;
}

.inner_serve-2 .opon-info-banner {
    padding: 55px 10%;
    color: #fff;
    height: 100%;
}

.inner_serve-2 .heading-main {
    padding: 75px 4% 75px 15%;
}

.inner_serve-2 .check-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
}

.comon-btn2 img {
    width: 14px;
}

a.comon-btn2:hover {
    background-color: #c0c0c0;
    color: #000;
}


/* inner_service-3 */

.home_sec2 .btom_content ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #000;
}

.inner_serve-2 .check-list i {
    font-size: 18px;
    color: #000;
}


/* SERVICES PAGE SEC 1 */

#services_sec .content {
    box-shadow: rgba(0, 0, 0, 0.45) 1px 2px 10px 0;
    padding: 35px 12px;
    border-radius: 4px;
    margin: 0;
    /* height: 100%; */
}


/* area page */

#Area-contact form input {
    width: 100%;
    outline: none;
    padding: 13px 12px;
    background: #00eaff11;
    border: none;
    border: 1px solid #888;
}

#Area-contact form textarea {
    width: 100%;
    outline: none;
    padding: 13px 12px;
    background: #00eaff11;
    border: none;
    border: 1px solid #888;
    height: 120px;
}

#Area-contact form button {
    width: 100%;
    outline: none;
    padding: 13px 12px;
    background: #00eaff;
    border: none;
    border: 1px solid #888;
}


/* CONTACT US PAGE */

.get-in-touch h3 {
    font-family: 'my-font4';
}

#contact {
    background-position: bottom!important;
}

.contact-info h5 {
    margin-bottom: 6px;
    font-weight: 500;
}

.get-in-touch form input {
    padding: 12px;
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid;
    border-color: #999;
    padding: 14px;
}

.get-in-touch form select {
    padding: 12px;
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid;
    border-color: #999;
    color: #8a9a95;
    padding: 14px;
}

.get-in-touch form textarea {
    padding: 12px;
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid;
    border-color: #999;
}

.get-in-touch form button {
    background-color: #00eaff;
    width: 100%;
    border: none;
    color: #000;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.8s;
}

.get-in-touch form button:hover {
    background-color: #000;
    color: #fff;
    transition: 0.8s;
}

.map iframe {
    outline: none;
    box-shadow: none;
}


/* ABOUT PAGE */

#why_choose_sec .left_img img {
    border-radius: 10px;
}

#inner_service img {
    border-radius: 10px;
}

#inner_serve-2 .heading-main {
    padding: 68px 5%;
}

#inner_serve-2 {
    background-color: #f1f1f1;
}

#services_sec .content {
    box-shadow: rgba(0, 0, 0, 0.45) 1px 2px 10px 0;
    padding: 35px 12px;
    border-radius: 4px;
    margin: 10px 10px;
    min-height: 386px;
}

#services_sec .owl-carousel .owl-stage {
    display: flex;
}

#services_sec .owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

#services_sec3 .content {
    box-shadow: rgba(0, 0, 0, 0.45) 1px 2px 10px 0;
    padding: 35px 12px;
    border-radius: 4px;
    margin: 0;
    height: 100% !important;
}


/* INNER BLOG */

.blog-page form {
    display: flex;
    gap: 5px;
    width: 100%;
    border: 1px solid #000;
    overflow: hidden;
    border-radius: 600px;
}

.blog-page form input {
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    outline: none;
    border: none;
}

.blog-page form button {
    background: transparent;
    color: #f6cf17;
    font-weight: 600;
    padding: 10px 15px;
    border: none;
}


/* .blog-page .top-cat a.comon-btn {
    font-size: 14px;
    padding: 6px 6px;
    border-radius: 5px;
    width: 7rem;
} */

.blog-page #recent-post p {
    font-size: 14px;
    line-height: normal;
    margin: 0;
}

.blog-page .hd_info {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-page a.comon-btn {
    background: #f6cf17;
    color: #010101;
    display: flex;
    font-size: 14px;
    padding: 12px 0px;
    border-radius: 3px;
    align-items: center;
    gap: 6px;
    width: 48%;
    text-align: center;
    justify-content: center;
    font-weight: 500;
}

.blog-page a.comon-btn:hover {
    background: #ccc;
    color: #000;
}

.blog-page .blog-post img {
    border-radius: 10px;
}

#recent-post h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px !important;
}



/* CUSTOM CSS FOR INNER BLOG COMMENT BOX  */





.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
        border: none;
}
#respond form p{
        color: #6d6d6d;
      margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #1c7690;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
    color: #0f3ca1 !important;
    text-decoration: underline;
    display: inline-block !important;
}
#comments .comment-author a{
    color: #000 !important;
}
#comments .comment-metadata a{
    color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
    color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px !important;
}

form#commentform {
    border-radius: 0px !important;
}

/* custom css for inner blog search icon */

.blog-page form input {
    width: 100%;
    padding: 10px 115px 15px 15px;
    background: transparent;
    outline: none;
    border: none;
}

