@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
.outfit-<uniquifier> {   font-family: "Outfit", sans-serif;   font-optical-sizing: auto;   font-weight: <weight>;   font-style: normal; }
.inter-<uniquifier> {   font-family: "Inter", sans-serif;   font-optical-sizing: auto;   font-weight: <weight>;   font-style: normal; }
h1,
h2,
h3,
h4,
h5,
h6 {
    margin:0;
    padding: 0;
    color: #0f1214;
    font-family:"Inter", sans-serif;
}


:root {
      --primary: #5b2b8e;
    --secondary: #36a3c1;
    --theme-radius:5px;
    --big-radius:14px;
}
/* === Base Animation Setup === */
.animate-up,
.animate-left,
.animate-right,
.animate-zoom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Animation Variants */
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  transform: translateX(-30px);
}
.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  transform: translateX(30px);
}
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-zoom {
  transform: scale(0.95);
}
.animate-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes genieFloat {
  0% {
    transform: translateY(0px) translateX(0);
  }
  50% {
    transform: translateY(-5px) translateX(0);
  }
  100% {
    transform: translateY(0px) translateX(0);
  }
}

@keyframes cloudFloat {
  0% {
    transform: translateY(140px) translateX(60px);
  }
  50% {
    transform: translateY(150px) translateX(60px);
  }
  100% {
    transform: translateY(140px) translateX(60px);
  }
}

@keyframes starSpin {
  0% {
    transform: scale(0.5) rotateZ(0deg);
  }
  20% {
    transform: scale(1) rotateZ(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.5) rotateZ(180deg);
    opacity: 0.3;
  }
}
h1 {
    font-size: 32px;
    font-weight: 700;
}
h2 {
    font-size: 28px;
    line-height: 45px;
    font-weight: 700;
}

p {
    font-size: 16px;
    color: #3f3f3f;
    font-family:"Inter", sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none !important;
    color: var(--secondary);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
html {
  scroll-behavior: smooth;
}
textarea {
    resize: none;
}
input::-webkit-input-placeholder, input, textarea, textarea::-webkit-input-placeholder, select {
    opacity: 1;
}
input:-ms-input-placeholder, input, textarea, textarea:-ms-input-placeholder, select {
    opacity: 1;
}
input::-ms-input-placeholder, input, textarea, textarea::-ms-input-placeholder, select {
    opacity: 1;
}
input::placeholder, input, textarea, textarea::placeholder, select {
    opacity: 1;
}
input:focus, button:focus, textarea:focus, a:focus, select:focus {
    outline: none;
}
label {
    color: red;
}
::-moz-selection {
    background-color: var(--secondary);
    color: #ffffff;
}
::selection {
    background-color: var(--secondary);
    color: #ffffff;
}
.input_half_width {
    width: 50%;
    float: left;
}
button#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
    padding: 10px 18px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999;
    border: 1px solid #fff;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    -o-text-overflow: '';
    text-overflow: '';
    position: relative;
    cursor: pointer;
    border-radius: 0;
}
.select_icon {
    display: block;
    width: 100%;
    float: left;
    position: relative;
}
.select_icon:before {
    content: "\f0d7";
    font-family: FontAwesome;
    position: absolute;
    z-index: 1;
    right: 30px;
    margin-top: 17px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
}
textarea {
    width: 100%;
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family:"Inter", sans-serif;
    font-size: 16px;
    line-height: 28px;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.section_padding {
    padding: 60px 0;
}
.hero-section-title {
    margin-bottom: 30px;
}
.hero-section-title h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero-section-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    text-transform:capitalize;
}
.hero-section-title i {
    color: var(--secondary);
    font-size: 35px;
}
.section_border {
    border-bottom: 2px solid #eef3f9;
}
.skyblue_bg {
    background-color: var(--primary);
}
.gray_bg {
    background-color: #eef3f9;
}
.mb_30{
    margin-bottom: 30px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_60 {
    margin-bottom: 60px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_20{
    margin-bottom: 20px;
}
.pr_12 {
    padding-right: 12px;
}
.pl_12 {
    padding-left: 12px;
}
.btn-gray {
    padding: 16px 40px;
    background: #eef3f9;
    display: inline-block;
    font-weight: 900;
    color: #7f8386;
}
.btn-gray:hover {
    background: var(--secondary);
    color: #ffffff;
}
.btn-orange {
    background: var(--secondary);
    color: #ffffff;
    padding: 16px 25px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border: none;
}
.btn-orange:hover {
    background: #ffffff;
    color: #0f1214;
    text-decoration: none;
}
.input_mr {
    margin-right: 20px;
}
.input_mb {
    margin-bottom: 20px;
}
.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

/*loader*/

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
button#loadMore:focus {
    color: #fff;
}
ul.count-3 {
    column-count: 3;
}
.cf:after {
    clear: both;
}
.preloader {
    background: var(--secondary);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999;
    overflow: hidden;
    text-align: center;
    top: 0;
    left: 0;
}
.loader {
    position: absolute;
    text-align: center;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
}
.span, .span_large{
    float: left;
    width: 100px;
    height: 100px;
    vertical-align: middle;
    border-radius: 1px;
    margin-right: 100px;
}
.span:last-child{
    margin-right: 0;
}

/* go in*/
.dashboard {
    width: 80px;
    height: 80px;
    margin: 10px auto;
    border: 2px #ffffff solid;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.dashboard:after, .dashboard:before{
    position: absolute;
    content: "";
}
.dashboard:after {
    width: 35px;
    height: 2px;
    top: 52px;
    -webkit-transform-origin: 1px 1px;
    -ms-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    background-color: #ffffff;
    -webkit-animation: dashboard_hand 1s linear infinite alternate;
    animation: dashboard_hand 1s linear infinite alternate;
}
.dashboard:before {
    width: 80px;
    height: 25px;
    background-color: #ffffff;
    top: 52px;
    left: -2px;
}
@-webkit-keyframes dashboard_hand{
    0%{ -webkit-transform: rotate(-160deg);}
    100%{ -webkit-transform: rotate(-20deg);}
}
@keyframes dashboard_hand{
    0%{ -webkit-transform: rotate(-160deg); transform: rotate(-160deg);}
    100%{ -webkit-transform: rotate(-20deg); transform: rotate(-20deg);}
}

.icons-header.text-center.imgs .d-block {
    display: block;
 
}
/* Header Slider */
.header_slider_bg {
    background:url(../images/header-slider-1.jpg);
    background-size: cover;
    padding: 80px 0 75px 0;
    position: relative;
}
.header_slider_bg:before {
    content: '';
    background: var(--primary);
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: 0;
}
.slider_bg_2 {
    background-image: url(../images/header-slider-2.jpg);
}
.header_slider_section {
    position: relative;
    overflow: hidden;
}
.header_slider_section img.header_slide_shape {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -12%;
    z-index: 1;
}
.header_slider_area .owl-stage-outer.owl-height {
    overflow: inherit;
}
.header_slide_text p {
    color: var(--primary);
    font-weight: 600;
    font-size: 22px;
    padding-top: 14px;
}
.header_slide_text h1 {
    font-size: 45px;
    font-weight: bold;
}
.header_slider_area .owl-dots {
    position: absolute;
    left: 20%;
    bottom: 60px;
    z-index: 99999;
    width: 100%;
}
.header_slider_area .owl-dots button {
    width: 10px;
    height: 10px;
    background: #c0c5c9;
    border-radius: 50%;
    margin: 0 2px;
}
.header_slider_area .owl-dots button.active {
    background: #16181a;
}
.header_slide_text a.btn-orange {
    margin-bottom: 32px;
    padding: 16px 40px;
}



/* Header */
.header_area {
    padding: 10px 0;
}
.header_left_contact li {
    display: inline-block;
    margin-right: 20px;
    color: #7f8386;
    font-size: 14px;
    font-weight: 500;
}
.header_left_contact li i {
    color: var(--primary);
    margin-right: 5px;
}
.header_left_contact.header_right_contact p a:hover {
    color: #7f8386;
}
.header_left_contact.header_right_contact p {
    font-size: 14px;
    font-weight: 500;
    color: #7f8386;
}



/* breadcrumb */
.breadcrumb {
    padding: 1px 15px;
    list-style: none;
    border-radius: 4px;
    background: none;
}
.breadcrumb > li + li:before {
    content: ">";
    color: var(--primary);
    padding: 0 10px 0 6px;
}
ul.breadcrumb li {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}
ul.breadcrumb li a {
    font-size: 18px;
    font-weight: 500;
}
ul.breadcrumb li a:hover {
    color: #0f1214;
}
.breadcrumb_area h1 {
    font-size: 50px;
    font-weight: 400;
}


/* Main menu */

.main_menu_area nav.navbar.navbar-default {
    display: flex;
    padding: 0 15px;
}
.navbar-default .navbar-collapse {
    padding: 0;
}
.main_menu_area nav.navbar.navbar-default .logo_flex {
    width: 16%;
    position: relative;
}
.main_menu_area nav.navbar.navbar-default .navbar_flex {
    width: 70%;
}
.main_menu_area nav.navbar.navbar-default .social_icon_flex {
    width: 29%;
}
.main_menu_area .logo:before {
    right: 60px;
}
.main_menu_area .header-social-right ul:before {
    right: -60px;
}
.main_menu_area .header-social-right span.contact_us {
    margin-left: 120px;
}

.main_menu_area {
    padding: 25px 0 14px 0;
    background-color: #ffffff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.main_menu_area1 {
    padding: 5px 0;
    background-color: #ffffff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.navbar-nav > li .dropdown-menus {
    display: block;
}
.dropdown-menus {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.navbar-nav > li:hover .dropdown-menus {
    display: block;
}
.navbar-default {
    background: none;
    border: none;
    margin: 0;
}
.menu_style_2.main_menu_area .logo {
    padding: 15px 0;
    margin-top: 10px;
}
.main_menu_area .logo img {
    width: 165px;
    height: auto;
}
.main_menu_area .logo {
    display: inline-table;
    padding-top: 3px;
}
.main_menu_area1 .logo img {
    height: auto;
    animation: genieFloat 3s ease-in-out infinite;
}
.main_menu_area1 .logo {
    display: inline-table;
  
}
.main_menu_area1 nav.navbar.navbar-default {
    display:flex;
    align-items: center;
}
.main_menu_area .navbar-default .navbar-nav > li > a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 45px 20px 0;
    line-height: 24px;
}
.menu_style_2.main_menu_area .navbar-default .navbar-nav > li > a {
    padding-top: 27px;
    line-height: 40px;
    color: #7f8386;
}
.main_menu_area .navbar-default .navbar-nav > li > a:hover {
    color: #ffffff;
}
.main_menu_area .navbar-nav > li > .dropdown-menus {
    background: var(--primary);
    border-radius: 0;
    border: none;
    width: max-content;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: none;
    padding-left: 0px;
    -webkit-transform: rotateX(90deg) skew(-6deg);
    transform: rotateX(90deg) skew(-6deg);
    box-shadow: 0 5px 20px rgba(14, 179, 214, 0.2);
}
.main_menu_area .navbar-nav > li:hover > .dropdown-menus{
    -webkit-transform: rotateX(0deg) skew(0deg);
    transform: rotateX(0deg) skew(0deg);
    padding-bottom: 14px;
    margin-top:0;
}
.main_menu_area .navbar-nav > li > .dropdown-menus li a {
    padding: 10px 15px;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    font-size: 14px;
}
.s-menu ul{
    list-style:none;
    width:max-content;
}
.main_menu_area .navbar-nav > li > .dropdown-menus li a:hover {
    text-decoration: underline !important;
    background: none;
    transition:0.5s;
}
.main_menu_area .header-social-right ul li {
    display: inline-block;
}
.main_menu_area .header-social-right ul li a {
    display: block;
    width: 40px;
    height: 40px;
    background: #edf2f9;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 2px;
    position: relative;
    z-index: 1;
    font-size: 14px;
}
.main_menu_area .header-social-right ul li a:hover {
    color: #ffffff;
}
.main_menu_area .header-social-right ul li a:before {
    content: '';
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.main_menu_area .header-social-right ul li a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.main_menu_area .header-social-right ul {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    position: relative;
    text-align: right;
}
.main_menu_area .header-social-right span.contact_us {
    font-size: 16px;
    font-weight: 400;
    color: #777;
    line-height: 20px;
    margin-left: 65px;
}
.main_menu_area .header-social-right span.contact_us span {
    display: inline-block;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}
.header-social-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
}
.header-social-right > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.main_menu_area .header-social-right ul:before, .main_menu_area .logo:before {
    content: '';
    background: #eef3f9;
    width: 2px;
    height: 110px;
    position: absolute;
    right: -20px;
    top: -35px;
}
.main_menu_area .logo:before {
    height: 113px;
}
.main_menu_area .navbar-nav > li > .dropdown-menus:before {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
    position: absolute;
    top: -0px;
    left: 45px;
    z-index: -1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.main_menu_area .navbar-nav > li:hover > .dropdown-menus:before {
    top: -10px;
}
.menu_style_2.main_menu_area .logo:before {
    top: 0;
    height: 92px;
}
.hv2_slider_area {
    position: relative;
}

.main_menu_area.menu_style_2 .social_btn_column {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.hv2_header-social-right ul li {
    display: inline-block;
    margin-left: 19px;
}
.hv2_header-social-right ul li.hv2_contact_us {
    top: 0;
    margin-left: 0;
    position: relative;
    right: -60px;
    text-align: right;
}
.hv2_header-social-right ul li:first-child {
    margin-left: 0;
}
.hv2_header-social-right ul li a {
    color: #b1b6b9;
    display: block;
}
.hv2_header-social-right ul li a:hover {
    color: var(--primary);
}
.hv2_contact_us .btn-orange:hover {
    background-color: #0f1214;
    color: #ffffff;
}
.hv2_contact_us .btn-orange {
    padding: 30px 65px;
    display: inline-block;
    color: #ffffff;
}
.menu_style_2.main_menu_area {
    padding: 0;
    background: #ffffff;
    position: relative;
    border-top: 2px solid #eef3f9;
}
.main_menu_area .navbar-default .navbar-nav > li > span {
    display: none;
}
.main_menu_area.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
    border-top: none;
}
.main_menu_area.menu_style_2.fixed {
    border-bottom: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.hv2_header-social-right.text-right ul {
    text-align: right;
}
.main_menu_area.menu_style_2 nav.navbar.navbar-default .col-md-2 {
    padding: 0;
    width: 13%;
}
.main_menu_area.menu_style_2 nav.navbar.navbar-default .col-md-6 {
    width: 54%;
}
.main_menu_area.menu_style_2 nav.navbar.navbar-default .col-md-4 {
    padding-right: 0;
}




/* hv2 header slider */
.hv2_slider_bg {
    background: url(../images/hv2_slider1.jpg) center right no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 205px 0 230px 0;
}
.hv2_slider_bg:before {
    content: '';
    background-color: #000000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    opacity: .8;
}
.hv2_slider_bg2 {
    background-image: url(../images/hv2_slider1.jpg);
}
.hv2_slider_bg3 {
    background-image: url(../images/hv2_slider1.jpg);
}
.hv2_slider_area .hero-section-title {
    margin-bottom: 0;
}
.hv2_slider_area .hero-section-title h1 {
    font-size: 80px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 100px;
    padding: 0 180px;
    color: #ffffff;
    margin-bottom: 40px;
}
.hv2_slider_area .hero-section-title h4 {
    margin: 0;
}
.hv2_slider_area .hero-section-title .btn-orange {
    padding: 15px 40px;
}

.hv2_slider_area .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: left;
}
.hv2_slider_area .owl-nav button {
    width: 65px;
    height: 65px;
    background: #0002 !important;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 60px;
}
.hv2_slider_area .owl-nav button i {
    font-size: 24px;
    color: #ffffff;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 65px;
}
.hv2_slider_area .owl-nav button.owl-next {
    left: auto;
    right: 60px;
    float: right;
}



/* about */
.about_area {
    position: relative;
    z-index: 1;
}
.about_area:before {
    content: '';
    background: url(/userfiles/images/home/home-genie-service.webp) center center no-repeat;
    background-size: cover !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    z-index: -1;
}


.residential-plumbing-services:before {
    background: url(/userfiles/images/home/about-residential-plumbing-services.webp) center center no-repeat;
}
.commercial-plumbing-services:before {
    background: url(/userfiles/images/home/about-commercial-plumbing-services.webp) center center no-repeat;
}

.about-water-leakage:before {
    background: url(/userfiles/images/home/about-water-leakage.webp) center center no-repeat;
}
.drain-cleaning:before {
    background: url(/userfiles/images/home/drain-cleaning-bg.webp) center center no-repeat;
}
.sewer-line-repair-and-replacement:before {
    background: url(/userfiles/images/home/sewer-line-repair-and-replacement-bg.webp) center center no-repeat;
}
.pipe-repair-services:before {
    background: url(/userfiles/images/home/pipe-repair-services-bg.webp) center center no-repeat;
}
.low-water-pressure-fixing:before {
    background: url(/userfiles/images/home/low-water-pressure-fixing-bg.webp) center center no-repeat;
}
.sump-pump-installation:before {
    background: url(/userfiles/images/home/sump-pump-installation-bg.webp) center center no-repeat;
}
.faucet-and-fixture-installation:before {
    background: url(/userfiles/images/home/faucet-and-fixture-installation-bg.webp) center center no-repeat;
}
.shower-system-installation:before {
    background: url(/userfiles/images/home/shower-system-installation-bg.webp) center center no-repeat;
}
.professional-bathtub-installation-services:before {
    background: url(/userfiles/images/home/professional-bathtub-installation-services-bg.webp) center center no-repeat;
}
.sump-pump-repair:before {
    background: url(/userfiles/images/home/sump-pump-repair-bg.webp) center center no-repeat;
}
.toilet-repair-and-installation:before {
    background: url(/userfiles/images/home/toilet-repair-and-installation-bg.webp) center center no-repeat;
}

.garbage-disposal-installation-and-repair:before {
    background: url(/userfiles/images/home/garbage-disposal-installation-and-repair-bg.webp) center center no-repeat;
}
.water-heater-installation:before {
    background: url(/userfiles/images/home/water-heater-installation-bg.webp) center center no-repeat;
}
.water-heater-repair:before {
    background: url(/userfiles/images/home/water-heater-repair-bg.webp) center center no-repeat;
}


.about_support_flex,
.about_flex,
.about_video  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about_video {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about_flex > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.about_with_contact_area {
    position: relative;
    z-index: 1;
    padding-bottom: 339px;
}
.about_with_contact_area .right_details p {
    font-weight: 300;
    margin-bottom: 34px;
}
.about_with_contact_form {
    background-color: var(--primary);
    margin-top: -222px;
    margin-bottom: 119px;
}
.about_with_contact_form h1 {
    text-align: center;
    background-color: #16bbde;
    padding: 36px 0;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}
.about_with_contact_form form {
    padding: 50px;
}
.about_with_contact_form input::-webkit-input-placeholder,
.about_with_contact_form textarea::-webkit-input-placeholder,
.about_with_contact_form input:-moz-placeholder,
.about_with_contact_form textarea:-moz-placeholder,
.about_with_contact_form input:-ms-input-placeholder,
.about_with_contact_form textarea:-ms-input-placeholder,
.about_with_contact_form input::-webkit-input-placeholder,
.about_with_contact_form textarea::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}
.about_with_contact_form input::placeholder,
.about_with_contact_form textarea::placeholder {
    color: #ffffff;
    opacity: 1;
}
.about_with_contact_form input::-webkit-input-placeholder,
.about_with_contact_form textarea::-webkit-input-placeholder,
.about_with_contact_form input:-moz-placeholder,
.about_with_contact_form textarea:-moz-placeholder,
.about_with_contact_form input:-ms-input-placeholder,
.about_with_contact_form textarea:-ms-input-placeholder,
.about_with_contact_form input::placeholder,
.about_with_contact_form textarea::placeholder {
    color: #ffffff;
}
.about_with_contact_form input::-webkit-input-placeholder,
.about_with_contact_form textarea::-webkit-input-placeholder {
    color: #ffffff;
}
.about_with_contact_form .input-group {
    width: 100%;
    display: block;
    position: relative;
    min-height: 65px;
}
.about_with_contact_form input,
.about_with_contact_form select,
.about_with_contact_form textarea {
    background-color: #0b9cbc;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 0 15px 25px;
    margin-bottom: 24px;
    width: 100%;
    opacity: 1;
}
.about_with_contact_form select,
.about_with_contact_form button.btn-orange {
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.about_with_contact_form button.btn-orange {
    max-width: 400px;
    left: 50%;
    display: inline-block;
}
.about_with_contact_form select {
    padding: 15px 0 15px 25px;
    height: 64px;
}
.about_with_contact_form input.input_mr {
    margin-right: 3%;
}
.about_with_contact_form textarea {
    width: 100%;
    height: 156px;
    margin-bottom: 13px;
}
.about_with_contact_area:before {
    content: '';
    background: url(../images/hv2_about_bg.jpg) center center no-repeat;
    background-size: cover;
    width: 40%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: .1;
}

.about_details .hero-section-title {
    margin: 0;
}
.about_details .hero-section-title h1 {
    line-height: 56px;
    margin-top: 0;
}
.about_details .hero-section-title i {
    margin-left: -5px;
}
.about_details .hero-section-title h4 {
    margin-top: 0;
    padding: 20px 0;
}
.about_details p {
    margin-top: 5px;
    margin-bottom: 5px;
}


@media(min-width:991px){
    .row.n_services-one .col-md-4 {
    margin-bottom: 25px;
}
}
@media(max-width:767px){
    .list-logo {
        width:190px;
    }
    ul.count-3 {
        column-count: 2;
    }
    .grecaptcha-badge {
    bottom: 70px !important;
    height: 80px !important;
    z-index: 9;
}
.homepagecities{
    padding:40px 0;
}
.about_details p {
    margin-top: 25px;
    margin-bottom: 20px;
   }
   .main_menu_area1 .logo {
    display: inline-table;
   
    float:left!important;
    margin-left:-16px!important;
}
   .proud{margin-left:40px;}
   .imgs{ float:right!important; margin-right: 0px; }
   .header_nav .icons-header span{font-size:10px; }
}
.about_details ul li, .about-detail ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}
.cta-section.cta-short {
    padding: 20px;
}
.why_choose_us_area.cta-short:before {
    background: var(--secondary);
}
.why_choose_us_area.cta-short p.cta-description {
    margin: 10px 0 20px;
}
.why_choose_us_area.cta-short a.btn.btn-red {
    border-color: var(--primary);
    background: var(--primary);
}
.four-col .slider_service_img:after {
    background-size: 130px;
}
.why_choose_us_area.cta-short a.btn.btn-red:hover {
    background: transparent;
}
.about_details ul li i, .about-detail ul li i {
    color: var(--secondary);
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 3px;
}
.about_details {
    padding: 120px 0 115px 0;
}
.about_support img {
    position: absolute;
    right: 0;
    width: 45%;
}
.about_support .about_support_flex,
.services_support {
    position: absolute;
    bottom: 60px;
    left: 52%;
    background: var(--secondary);
    border-radius: var(--big-radius);
    overflow: hidden;
}
.services_support {
    position: relative;
    left: 0;
    bottom: auto;
}
.about_support .about_support_flex i
/*.services_support i */{
    display: inline-block;
    width: 135px;
    text-align: center;
    font-size: 70px;
    color: #ffffff;
    padding:19px 0;
    background: #ffffff;
}
.icon-support:before {
    content: '';
    background: url(/userfiles/images/home-genie-calls.png);
    background-position: center;
    background-size: cover;
    width: 110px;
    height: 110px;
    animation: genieFloat 3s ease-in-out infinite;
}
.services_support > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.about_support_flex p, .services_support p {
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    padding: 40px;
    line-height: 29px;
}
.about_support_flex p{
    margin-bottom:0;
}
.services_support p {
    font-size: 16px;
    padding: 20px;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
.ul3 li {
    position: relative;
    margin-bottom:15px;
    padding-left: 15px;
}
.form-control {
    border-radius: var(--theme-radius) !important;
}
.about_support_flex p span,
.services_support p span {
    font-size: 40px;
    font-weight: 700;
}
.services_support p span {
    font-size: 30px;
    display: block;
}
.about_with_contact_details .hero-section-title h4 {
    margin-top: 12px;
}
.about_with_contact_details .hero-section-title i {
    margin-left: -5px;
}
.about_with_contact_details .hero-section-title h1 span {
    color: var(--secondary);
    font-weight: 300;
}
.about_with_contact_details .hero-section-title {
    margin-bottom: 43px;
}
.about_with_contact_details p {
    font-weight: 400;
    line-height: 34px;
    padding-right: 70px;
    margin-bottom: 55px;
}
.about_video .video_img {
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-right: 20px;
}
.about_video .video_img:before {
    content: '';
    background: url(../images/about_video.jpg) center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.about_video .video_img:after {
    content: '';
    background-color: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.about_video .video_img > a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
}
.about_video .video_img:hover > a {
    opacity: 1;
    visibility: visible;
}
.about_video .video_img:hover:after {
    visibility: visible;
    opacity: .5;
}
.service_single_right iframe{
    max-width:100%;
}
.video_img #videostore,
.video_img #videostore iframe{
    width: 100% !important;
    min-height: 400px !important;
    /*margin: 20px auto !important;*/
    border: none !important;
}
.g-recaptcha , #recaptcha1 , #recaptcha2{
    display: none;
}
.mfp-close-btn-in .mfp-close {
    color: #fff;
    z-index: 999999;
    font-size: 40px;
}
.about_video span.about_learn_more {
    display: block;
    font-weight: 500;
    color: #2a2a3f;
}
.about_video span.about_learn_more > a {
    color: var(--primary);
}
.breadcrumb_area {
    padding: 110px 0 110px 0;
    border-bottom: 30px solid var(--primary);
}
.breadcrumb_area,
.map_section {
    z-index: 1;
    position: relative;
}
.map_section {
    border-bottom: 30px solid var(--primary);
}
.breadcrumb_area img,
.map_section img {
    position: absolute;
    left: 0;
    bottom: -40%;
    width: 100%;
    z-index: -1;
}
.map_section img {
    z-index: 1;
    bottom: -34%;
}



/* gallery */
.hv2_gallery_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hv2_gallery_area > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.hv2_gallery_box:last-child {
    border-right: none;
}
.hv2_gallery_box {
    position: relative;
    border-right: 30px solid #ffffff;
    border-bottom: 30px solid #ffffff;
    width: 370px;
    height: 370px;
    background: url(../images/gallery_1.jpg) center center no-repeat;
    background-size: cover;
}
.gallery_box {
    position: relative;
}
.hv2_gallery_box .hv2_gallery_overlay a,
.gallery_box a {
    font-size: 25px;
    color: #ffffff;
    width: 65px;
    height: 65px;
    background-color: #000000;
    display: inline-block;
    line-height: 65px;
    border-radius: 50%;
    top: 50%;
    position: absolute;
    margin-top: -32.5px;
    margin-left: -32.5px;
}
.hv2_gallery_box .hv2_gallery_overlay a i {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 65px;
    top: 50%;
}
.hv2_gallery_box .hv2_gallery_overlay,
.page_gallery_overlay {
    background: var(--secondary);
    width: 95%;
    height: 95%;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    text-align: center;
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4);
    transform: scale(.4);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.hv2_gallery_box:hover .hv2_gallery_overlay,
.gallery_box:hover .page_gallery_overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: .90;
}
.hv2_gallery_bg_2 {
    background-image: url(../images/gallery_1.jpg);
}
.hv2_gallery_bg_3 {
    background-image: url(../images/gallery_1.jpg);
}
.hv2_gallery_bg_4 {
    background-image: url(../images/gallery_1.jpg);
}
.hv2_gallery_bg_5 {
    background-image: url(../images/gallery_1.jpg);
}
.gallery_area,
.latest_blog_area,
.blog_details_area {
    position: relative;
    z-index: 99;
}
.gallery_area,
.latest_blog_area,
.blog_details_area {
    padding: 120px 0 120px 0;
}
.gallery_area .gallery_box img {
    width: 100%;
}


/* Call top action */
.call_to_action_section {
    background: var(--secondary);
}
.call_to_action_section a.btn_mr {
    margin-right: 5px;
}
.call_to_action_section .btn-orange {
    padding: 16px 40px;
}
.call_to_action_section a.btn-orange.btn_mr {
    background: var(--primary);
}
.call_to_action_section a.btn-white,
.call_to_action_section a.btn-orange.btn_mr:hover {
    background: #FFFFFF;
    color: #0f1214;

}
.call_to_action_section a.btn-white:hover {
    color: #ffffff;
    background: #0f1214;
}
.call_to_action_section h1 {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: normal;
}


/* Blog */
.blog_social_share_box,
.blog_author_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog_social_share_box .share_box_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.blog_social_share_box {
    padding: 60px 0;
    border-top: 2px solid #eef3f9;
    border-bottom: 2px solid #eef3f9;
}
.blog_author_box {
    padding: 60px 0;
    border-bottom: 2px solid #eef3f9;
    margin-bottom: 60px;
}
.single-comment-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.article-content img {
    border-radius: var(--big-radius);
}
.single-comment-box .comment_image {
    margin-right: 30px;
}
.blog_comment_box .title-box {
    margin-bottom: 0;
}
.comment_image img {
    border-radius: 50%;
    width: 115px;
    height: auto;
}
.comments-area .title-box {
    padding-top: 40px;
    border-top: 2px solid #eef3f9;
}
.blog_comment_box .title-box h3 {
    font-weight: 700;
    font-size: 30px;
}
.comment-list li {
    padding: 40px 0 60px 0;
    border-bottom: 2px solid #eef3f9;
}
.comment-list li:last-child {
    border-bottom: none;
    padding: 60px 0 60px 0;
}
.latest_post ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.latest_post ul li a:nth-child(2) {
    padding-left: 10px;
}
.latest_post ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}
.latest_share_blog_box img {
    width: 100%;
}
.latest_share_blog_box,
.latest_share_img_box,
.lb_share_img {
    position: relative;
}
.latest_share_blog_box span.blog_date,
.bl_share_img .blog_date {
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    background: var(--secondary);
    color: #ffffff;
    padding: 10px 26px;
    line-height: normal;
    right: 20px;
    bottom: -20px;
}
.latest_share_blog_box > a {
    display: block;
    text-decoration: none;
}
.latest_share_blog_box > a:hover {
    text-decoration: none;
}
.latest_share_blog_box a h1 {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 700;
    padding: 0 38px;
    line-height: 32px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.latest_share_blog_box a h1:hover {
    color: var(--secondary);
}
.latest_share_blog_box p {
    color: #7f8386;
    font-size: 18px;
    font-weight: 400;
    padding: 0 40px;
}
.bl_share_img {
    position: relative;
}
.bl_share_img img {
    width: 100%;
}
.blog_share_details h1 {
    margin-top: 50px;
    font-size: 40px;
    font-weight: 500;
}
.blog_share_details span.comment_author {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}
.blog_share_details span.comment_author > a {
    margin-right: 10px;
}
.blog_share_details span.comment_author > a:hover {
    color: #0f1214;
}
.blog_share_details p:last-child {
    margin-bottom: 60px;
}
.share_box_left p {
    color: #0f1214;
    font-weight: 700;
    font-size: 16px;
}
.share_box_left p a {
    color: var(--secondary);
    font-weight: 500;
    margin-left: 5px;
}
.share_box_left p a:hover,
.author_bio a:hover {
    color: #0f1214;
}
.share_box_left ul li {
    display: inline-block;
}
.share_box_left ul li a {
    display: block;
    width: 45px;
    background: #eef3f9;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-left: 5px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}
.share_box_left ul li a:hover {
    color: #ffffff;
}
.share_box_left ul li a:before {
    content: '';
    background: var(--secondary);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.share_box_left ul li a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.author_img {
    margin-right: 30px;
}
.author_bio h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}
.author_bio p {
    font-size: 16px;
    margin-bottom: 20px;
}
.author_bio a {
    font-size: 16px;
    font-weight: 500;
}
.comment-list .text-box h3 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
}
.comment-list .text-box span {
    display: block;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--primary);
}
.comment-list .text-box span > span {
    display: inline-block;
    padding-left: 15px;
    margin-left: 5px;
    position: relative;
    margin-bottom: 0;
}
.comment-list .text-box span > span:before {
    content: '-';
    position: absolute;
    left: 0;
}
.reply.comment-title {
    position: absolute;
    right: 0;
    top: 0;
}
.reply.comment-title a {
    padding: 9px 30px;
    font-size: 14px;
}
.comment-title p {
    padding-right: 85px;
}
.comments-area .leave_a_comment h3 {
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 30px;
    font-weight: 700;
}
.comments-area .input_half_with {
    width: 48.5%;
}
.comments-area input, .comments-area textarea {
    border: none;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 500;
}
.comments-area input {
    margin-bottom: 20px;
}
.comments-area textarea {
    height: 190px;
    margin-bottom: 15px;
}
.comments-area input::-webkit-input-placeholder, .comments-area textarea::-webkit-input-placeholder {
    color: #9da1a5;
}
.comments-area input:-moz-placeholder, .comments-area textarea:-moz-placeholder {
    color: #9da1a5;
}
.comments-area input:-ms-input-placeholder, .comments-area textarea:-ms-input-placeholder {
    color: #9da1a5;
}
.comments-area input::placeholder, .comments-area textarea::placeholder {
    color: #9da1a5;
}
.comments-area .input_m_right {
    margin-right: 2.3%;
}
.comments-area a.btn-orange {
    padding: 16px 40px;
}
.comments-area a.btn-orange:hover {
    background-color: #0f1214;
    color: #ffffff;
}
.latest_post ul li > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.latest_post ul li a:last-child {
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
}
.latest_post,
.widget_categories,
.tagcloud {
    padding: 50px;
}
.blog_details_area {
    z-index: 6;
    position: relative;
}
.widget_search input::-webkit-input-placeholder,
.widget_search input::placeholder {
    color: #9da1a5;
    opacity: 1 !important;
}
.widget_search input:-moz-placeholder {
    color: #9da1a5;
    opacity: 1 !important;
}
.widget_search input:-ms-input-placeholder {
    color: #9da1a5;
    opacity: 1 !important;
}
.widget_search input::placeholder {
    color: #9da1a5;
}
.widget_search input {
    border: none;
    width: 100%;
    padding: 24px 30px;
    font-size: 16px;
    font-weight: 500;
}
.widget_categories ul li a {
    display: block;
    color: #7f8386;
    font-weight: 500;
}
.widget_categories ul li:last-child a {
    padding-bottom: 0;
}
.latest_post h2,
.widget_categories h2,
.tagcloud h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}
.latest_post ul li a {
    color: #0f1214;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.latest_post ul li a:hover,
.widget_categories ul li a:hover {
    color: var(--primary);
}
.widget_categories ul li a {
    display: block;
    color: #7f8386;
    font-weight: 500;
    padding: 8px 0;
}
.widget_categories ul li a i {
    float: right;
    line-height: 30px;
}
.widget_categories ul li a:hover i {
    color: #0f1214;
}
.tagcloud ul li {
    display: inline-block;
}
.tagcloud ul li a {
    color: #7f8386;
    font-weight: 500;
    line-height: 35px;
    margin-right: 5px;
}
.tagcloud ul li a:hover {
    color: var(--secondary);
}





/* Testimonial */
.testimonial_area {
    position: relative;
    padding: 60px 0;
}
.testimonial_slider .owl-stage-outer.owl-height {
    overflow-x: hidden;
    height: auto !important;
}
.testimonial_details p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #0f1214;
    margin-bottom: 10px;
}
.testimonial_area .hero-section-title h4 {
    margin-top: 0;
}
.testimonial_area .hero-section-title {
    margin-bottom: 22px;
}
.testimonial_details span.rating,
span#videostore {
    display: block;
}
.testimonial_details span.rating i {
    display: inline-block;
    color: #f8b836;
    font-size: 20px;
}
.testimonial_details h3 {
    margin-top: 5px;
    font-weight: 500;
        font-size: 16px;
    color:var(--primary);
}
.testimonial_details h3 span {
    font-weight: 400;
    font-size: 16px;
    color: #7f8386;
}
.testimonial_image ul li {
    display: inline-block;f
    margin: 0 8px;
    width: 80px;
    height: 80px;
    position: relative;
}
.testimonial_image ul li img {
    border-radius: 50%;
    cursor: pointer;
    width: 80px;
    height: 80px;
}
.testimonial_image {
    margin-bottom: 50px;
}
#custom_owl_carousel_dots li img {
    opacity: .50;
}
#custom_owl_carousel_dots li.active img {
    opacity: 1;
}




/* why choose us */
.why_choose_us_area {
    background: url("../images/choose_us_bg_201202073749.jpg") center center fixed no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.why_choose_us_area:before,
.about_area:after {
    content: '';
   background: linear-gradient(to right, var(--primary), var(--secondary));

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .95;
}
.about_area:after {
    opacity: .9;
    display: none;
}
.why_choose_us_area .hero-section-title i {
    color: #ffffff;
}
.why_choose_us_area .hero-section-title h4 {
    color: #0f1214;
}
.why_choose_us_area .hero-section-title {
    margin-bottom: 40px;
}
.why_choose_us_area .hero-section-title h1 {
    color: #ffffff;
}
.why_choose_us_details {
    background-color: #ffffff;
    padding: 24px ;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: var(--big-radius);
    overflow: hidden;
}
.why_choose_us_details:hover {
    background-color: #ffffff;
}
.why_choose_us_details i {
    font-size: 65px;
    margin-bottom: 20px;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--primary);
}
.why_choose_us_details:hover i {
    color: var(--secondary);
}
.why_choose_us_details p {
    font-size: 18px;
    color: #0f1214;
    font-weight: 500;
    line-height: normal;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.why_choose_us_details:hover p {
    color: #0f1214;
}
.why_choose_box_2 {
    position: relative;
}
.why_choose_box_2_img {
    background: url("../images/why_choose_us_1_201202074249.jpg") center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 445px;
}
.why_choose_box_2_img.bg_2 {
    background: url("../images/why_choose_us_2.jpg") center center no-repeat;
    background-size: cover;
}
.why_choose_box_2_area.section_padding {
    padding-bottom: 160px;
}
.why_choose_box_2_area img {
    width: 100%;
}

.why_choose_box_2 .why_choose_box_2_details {
    width: 330px;
    display: inline-block;
    position: absolute;
    right: 20px;
    background: var(--primary);
    padding: 40px;
    font-size: 24px;
    color: #ffffff;
    line-height: 36px;
    bottom: -40px;
    font-weight: 700;
}


/* Service */
.slider_service_area {
    position: relative;
    padding: 60px 0;
    background:#f7f7f7;

}
.brd.gray_bg i:before {
    font-size: 16px;
    color: var(--primary);
    padding: 8px 0;
}
section.slider_service_area.section_padding.text-center {
    background: #fff !important;
}
section.slider_service_area.text-center.n_slider_services{
    background:#f7f7f7;
}
.service_style_2_area.pt_0 {
    padding-top: 0;
}
.service_style_2_area .service_style_2_details {
    background: -webkit-linear-gradient(top, #ffffff, #eef2f9);
    padding: 40px 50px 0 50px;
    border-radius: var(--big-radius);
}
.service_style_2_area .service_style_2_details p {
    margin: 50px 0 0 0;
}
section.banner.small {
    max-height: 300px;
}
.service_style_2_area.hv2_service_with_details .service_style_2_details p {
    margin: 50px 0 50px 0;
}
.service_style_2_area .service_style_2_details p > span {
    display: block;
}
.service_style_2_area .service_style_2_details h2 {
    margin-top: 30px;
}
.service_style_2_area .service_style_2_details i {
    font-size: 50px;
    width: 123px;
    height: 123px;
    display: inline-block;
    border-radius: 50%;
    line-height: 123px;
    background-color: #eef3f9;
    color: var(--primary);
}
.service_style_2_area .service_style_2_details a {
    font-weight: 500;
}
.service_style_2_area .service_style_2_details:hover a {
    color: var(--secondary);
}
.brand_img {
    position: relative;
    background-size: cover;
    text-align: -webkit-center;
    margin-bottom: 30px !important;
    padding: 18px 9px;
    border-radius: var(--big-radius);
    box-shadow: 0px 0px 6px -2px;
    background: #fff;
    min-height: 87%;
    align-items: center;
    vertical-align: middle;
    display: flex;
    
}

.brand_img p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 10px;
}
.brand_img p a {
    color: #000;
}

.brand_img p a:hover {
    color: var(--primary);
}
.brand_img a img {
    width: 100%;
    height: auto !important;
    margin-bottom: 5px;
}
.brand_img a {
    color: var(--primary);
}

.service_single_left > .single_img_half {
    margin-top: 55px;
}
.service_single_left .single_img_half > img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.service_single_left p {
    margin-bottom: 15px;
    line-height: 30px;
}
.single_img_half .service_single_img_box {
    height: 387px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: url("../images/why_choose_us_1.jpg") center center no-repeat;
    background-size: cover;
}
.service_single_left .single_img_half .service_single_img_box:last-child {
    background-image: url("../images/why_choose_us_1.jpg");
}
.service_single_left .single_img_half .service_single_img_box:first-child {
    border-right: 30px solid #ffffff;
}
.service_single_left h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}
.slider_service_details {
    padding: 0 10px 10px;
    background: #f7f7f7;
    height: 63%;
}
.row.n_services-one .col-md-4.animate-up, .row.n_services-one .col-md-3.animate-up {
    margin-bottom: 30px;
}
.row.n_services-one {
    display: flex;
    flex-wrap: wrap;
}

.services_support {
    background-color: var(--primary);
    border-radius: 0 0 var(--big-radius) var(--big-radius);
}
.slider_service_img i,
.service_single_left i {
    width: 80px;
    height: 80px;
    display: inline-block;
    position: absolute;
    bottom: -20px;
    right: 20px;
    line-height: 80px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: center;
}
.service_single_img i {
    background-color: var(--secondary);
    color: #ffffff;
}
.slider_service_box:hover {
    box-shadow: 0px 3px 7px #5b2b8e40;
    transition: 0.5s;
    margin-top: -10px;
}
.slider_service_box {
    transition: 0.5s;
    margin-bottom: 25px;
    border-radius: var(--big-radius);
    overflow: hidden;
    height: 100%;
}
.slider_service_box .slider_service_details h2 {
    padding: 20px 0 15px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}
.slider_service_box:hover .slider_service_img i {
    background: var(--secondary);
    color: #ffffff;
}
.slider_service_box .slider_service_details p {
    font-size: 16px;
    line-height:23px;
    font-weight: 400;
    color: #3f3f3f;
     margin-bottom: 10px;
}

.slider_service_details a {
    font-size: 18px;
    color: var(--primary);

}
.slider_service_details a:hover {
    color:var(--secondary);
}
.slider_service_box:hover .slider_service_details a.btn-readmore {
    color: #ffffff;
    text-decoration: none;
    background: var(--secondary);
    padding: 6px 10px;
}
section.about-sec {
    background: #f7f7f7;
    padding: 60px;
}
.about-image img {
    width: 100%;
    border-radius: var(--big-radius);
}
.about-sec .row {
    align-items: center;
    display: flex;
}
.service_slider .owl-dots button,
.client_log_area .owl-dots button,
.testimonial_area .owl-dots button {
    width: 10px;
    height: 10px;
    background: #0f1214;
    border-radius: 50%;
    margin: 0 2px;
    opacity: .20;
    padding: 0;
}

.client_log_area .owl-dots,
.service_slider .owl-dots {
    margin-top: 40px;
    display:none;
}
.testimonial_area .owl-dots {
    margin-top: 40px;
    display:none;
}
.client_log_area .owl-dots button.active,
.service_slider .owl-dots button.active,
.testimonial_area .owl-dots button.active {
    opacity: 1;
}
.service_single_area.section_padding ul li {
    list-style: disc;
    margin-left: 24px;
}
.service_single_area {
    position: relative;
    z-index: 9;
    padding: 60px 0;
}


.service_single_area h2{
        margin-bottom: 5px;
    
}

.service_single_area h3{
          margin-bottom: 5px;
    
}



.service_widgets {
    padding: 50px;
}
.service_widgets h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}
.service_widgets ul li {
    margin-bottom: 15px;
    display: block;
}
.service_widgets ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #7f8386;
    display: block;
}
.service_widgets ul li a i {
    float: right;
    line-height: 30px;
}
.service_widgets ul li a:hover {
    color: #40b1d4;
}
.service_single_img {
    position: relative;
}
.service_single_img img {
    width: 100%;
}
.service_single_left h1 {
    font-size: 26px;
    /*margin-top: 50px;*/
    margin-bottom: 20px;
}
.service_single_left h3 {
    font-size: 24px;
    font-weight: 700;
}
.service_single_left .contact-details h1 {
    margin-top: 55px;
    margin-bottom: 45px;
    display: block;
    font-size: 30px;
    font-weight: 700;
}



/* Client */
.client_logo_slider .owl-item {
    background: #ffffff;
    height: 188px;
    vertical-align: middle;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.client_logo_slider .owl-item img {
    width: auto;
    height: auto;
    vertical-align: middle;
    opacity: .2;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.client_logo_slider .owl-item:hover img {
    opacity: 1;
}

form#contactUs input,  form#contactUs textarea , form#frm1 input,  form#frm1 textarea , form#frm2 input,  form#frm2 textarea{
    box-shadow: none !important;
    border: 1px solid #cdcdcd;
}

.animate-on-scroll {
    opacity: 0;
  }
  .animate-on-scroll.animate__animated {
    opacity: 1;
  }

/* Pages */
.book_online_form_section {
    position: relative;
    z-index: 9;
    padding: 120px 0 120px 0;
}
.book_online_step_3 form > label {
    display: block;
    margin: 30px 0;
    position: relative;
    width: 100%;
    float: left;
    font-size: 24px;
    font-weight: 500;
}
.book_online_step_3 form > label:first-child {
    margin-top: 0;
}
.book_online_step_3,
.book_online_step_1 {
    padding: 40px;
}
.book_online_step_3 input::-webkit-input-placeholder,
.book_online_step_3 input:-moz-placeholder,
.book_online_step_3 input:-ms-input-placeholder,
.book_online_step_3 input::placeholder,
.book_online_step_1 input::placeholder  {
    color: #9da1a5;
    opacity: 1 !important;
}
.book_online_step_3 input::-webkit-input-placeholder{
    color: #9da1a5;
}
.book_online_step_3 input:-moz-placeholder{
    color: #9da1a5;
}
.book_online_step_3 input:-ms-input-placeholder{
    color: #9da1a5;
}
.book_online_step_3 input::placeholder,
.book_online_step_3 textarea::placeholder,
.book_online_step_1 input::placeholder,
.book_online_step_1 textarea::placeholder {
    color: #9da1a5;
}
.book_online_step_3 .input_half_width,
.book_online_step_3 textarea,
.book_online_step_1 .input_half_width {
    width: 37%;
    background-color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    color: #9d9d9d;
    font-weight: 500;
}
.book_online_step_1 .input_half_width,
.book_online_step_3 select.input_half_width {
    height: 65px;
}
.book_online_step_1 input::placeholder {
    color: #9d9d9d;
}
.book_lastname.input_half_width {
    display: block;
}
.book_online_tabs .nav-tabs {
    border-bottom: none;
}
.book_online_tabs .nav-tabs > li > a {
    border: none;
    border-radius: 0;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    padding: 23px 53px;
    margin-right: 5px;
}
.book_online_tabs .nav-tabs > li.active > a, .book_online_tabs .nav-tabs > li.active > a:focus,
.book_online_tabs .nav-tabs > li.active > a:hover, .book_online_tabs .nav-tabs > li > a:hover {
    background: #eef3f9;
    border: none;
    border-radius: 0;
    color: #0f1214;
    font-weight: 700;
}
.book_online_step_3 textarea {
    height: 135px;
    width: 76%;
}
.input_agree_title .check i,
.input_agree_title .check_2 i {
    opacity: 0;
    position: absolute;
    text-align: center;
    left: 1.2px;
    line-height: 13px;
}
.input_agree_title .check,
.input_agree_title .check_2 {
    width: 17px;
    height: 17px;
    display: inline-block;
    text-align: center;
    line-height: 17px;
    position: relative;
    border-radius: 50%;
    color: #ffffff;
    border: 2px solid #40b1d4;
    cursor: pointer;
    font-size: 10px;
    margin-right: 20px;
    left: 5px;
}
.input_agree_title .check_2.active_agree i,
.input_agree_title .check.active_agree i {
    opacity: 1;
}
.input_agree_title .check_2.active_agree,
.input_agree_title .check.active_agree {
    background: #40b1d4;
}
.input_agree_title span:last-child {
    color: #0f1214;
}
.input_agree_title span {
    font-size: 16px;
    font-weight: 500;
}
.input_agree_title {
    color: #7f8389;
    font-size: 16px;
}
/* book online step 2 */
.book_online_step_1 > label {
    width: 100%;
    position: relative;
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 500;
}
.input_agree_title span.check_2,
.input_agree_title span.check {
    display: inline-block;
    margin-right: 10px;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    margin-top: 3px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    line-height: 25px;
}
.input_agree_title {
    position: relative;
    padding-left: 39px;
}
.input_agree_title span.check_2 i,
.input_agree_title span.check i {
    position: absolute;
    line-height: 22px;
    left: 0;
    font-size: 13px;
    display: block;
    width: 100%;
    height: 100%;
}
.book_online_step_1 input.input_half_width {
    padding: 16px 20px;
}
.book_online_step_1 label.mb_0{
    margin: 0 0 25px 0;
}
.book_online_step_1 .input_agree_title .check,
.book_online_step_1 .input_agree_title .check_2 {
    background: #ffffff;
    border-color: #ffffff;
}
.input_agree_title .check_2.active_agree,
.input_agree_title .check.active_agree {
    background: #40b1d4;
    border-color: #40b1d4;
}
.book_online_step_1 .btn-orange {
    padding: 16px 40px;
}
.book_online_step_1 p.mt_15 {
    margin-top: 15px;
}
.book_online_step_1 select {
    margin-right: 30px;
}
.book_online_step_1 .select_icon select,
.book_online_step_3 .select_icon select {
    width: 100%;
}
.book_online_step_1 .select_icon:before,
.book_online_step_3 .select_icon:before {
    color: #9d9d9d;
}
.book_online_step_1 .select_icon,
.book_online_step_3 .select_icon {
    width: 37%;
    margin-right: 2%;
}
/* book online step 2 */
.book_online_step_box_2 {
    padding: 60px 60px;
}
.book_online_step_2_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.book_online_step_2_flex > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #ffffff;
    padding: 60px 100px 60px 60px;
}
.book_online_step_2_flex .book_online_step_2_box:first-child {
    border-right: 60px solid #eef3f9;
}
.book_online_step_box_2 label {
    font-size: 24px;
    font-weight: 500;
}
.book_online_step_2_flex .book_online_step_2_box h3 {
    font-size: 20px;
    font-weight: 500;
}
.book_online_step_2_flex .book_online_step_2_box ul li i {
    font-size: 14px;
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 10px;
}
.book_online_step_2_flex .book_online_step_2_box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 400;
    color: #7f8386;
}
.book_online_step_2_flex .book_online_step_2_box h3.price {
    margin-top: 30px;
    margin-bottom: 10px;
}
.book_online_step_2_flex .book_online_step_2_box a.simple-btn {
    display: block;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 400;
}
.book_online_step_2_flex .book_online_step_2_box a.simple-btn:hover {
    color: #0f1214;
}
.book_online_step_2_flex .book_online_step_2_box a.btn-gray,
.book_online_step_2_flex .book_online_step_2_box a.btn-orange {
    padding: 16px 38px;
}
.book_online_step_2_flex .book_online_step_2_box a.btn-gray:hover,
.book_online_step_2_flex .book_online_step_2_box a.btn-orange:hover {
    background: var(--secondary);
    color: #ffffff;
}
.book_online_step_1 a.btn-orange:hover {
    background: #0f1214;
    color: #ffffff;
}


/* Team Member */
.team_section_area {
    padding: 120px 0 110px 0;
}
.team_box .team_details {
    width: 95%;
    background: #ffffff;
    margin-top: -20px;
    position: relative;
    padding: 40px 0 0 0;
}
.team_box .team_details h1 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 30px;
}
.team_box .team_details p {
    line-height: initial;
}
.team_box .team_details ul {
    margin-top: 5px;
}
.team_box .team_details ul li {
    display: inline-block;
    margin-right: 15px;
}
.team_box .team_details ul li a {
    display: block;
    color: #b1b6b9;
}
.team_box .team_details ul li a:hover {
    color: var(--primary);
}
.team_img img {
    width: 100%;
}




/* Repair Section */
.repair_area {
    background: url(../images/repair_gray_bg.png) center center fixed no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.repair_area:before {
    content: '';
    background: #0f1214;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .95;
}
.repair_details .hero-section-title {
    margin-bottom: 45px;
}
.repair_details .hero-section-title i {
    margin-left: -5px;
}
.repair_details .hero-section-title h1 {
    color: #ffffff;
}
.repair_details a.btn-orange {
    padding: 16px 40px;
}
.repair_details p {
    margin-bottom: 50px;
    padding-right: 55px;
}
.repair_details_right {
    position: relative;
}
.repair_details_right .video-img {
    position: absolute;
    right: 10px;
    bottom: 0;
    background: var(--primary);
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    color: #ffffff;
}
.about_repair_style_2 {
    background: none;
    padding: 120px 0 120px 0;
}
.about_repair_style_2:before {
    display: none;
}
.about_repair_style_2 .repair_details .hero-section-title h1 {
    color: #0f1214;
}
.about_repair_style_2 .btn-orange:hover {
    background: #0f1214;
    color: #ffffff;
}
.bg-sec {
    background: #f7f7f7;
}
/* Accordion collapse */
section.faqs-sec {
    padding: 60px 0;
}
.faq_area .faq_accordions_img {
    width: 100%;
    height: 420px;
    background: url("../images/faq.jpg") center center no-repeat;
    background-size: cover;
}
.faq_area img {
    width: 100%;
}
.faq_accordions .card-header a {
    display: block;
    position: relative;
    font-weight: 500;
    padding: 26px 40px;
    color: var(--primary);
    background: #ffffff;
    font-size: 18px;
}
.faq_accordions .card-header a.collapsed {
    color: #0f1214;
}
/*.faq_accordions .card-header a i.fa-plus,*/
.faq_accordions .card-header a i.fa-minus {
    display: none;
}
.faq_accordions .card-header a.collapsed i {
    color: #7f8386;
}
.faq_accordions .card-header a i {
    float: right;
    line-height: 22px;
    color: var(--primary);
    font-size: 14px;
}
.faq_accordions .card-header a[aria-expanded=true] i.fa-minus {
    display: block;
}
.faq_accordions .card-header a[aria-expanded=false] i.fa-minus {
    display: none;
}
.faq_accordions .card-header a[aria-expanded=false] i.fa-plus {
    display: block;
}
.faq_accordions .card-header a[aria-expanded=true] i.fa-plus {
    display: none;
}
.faq_accordions .card-body {
    display: block;
    position: relative;
    padding: 0 75px 40px 40px;
    background: #ffffff;
    color: #888888;
    font-size: 17px;
    font-weight: 300;
}
.faq_accordions .card {
    margin-bottom: 10px;
}
.faq_accordions .card.panel {
    border: none;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}
.faq_accordions .card:last-child{
    margin-bottom: 0;
}

.services-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.services-with-wiki .why_choose_us_details {
    width: 32%;
    display: flex;
    justify-content: left;
    padding: 15px 10px;
    align-items: center;
}
.services-with-wiki .why_choose_us_details p img {
    margin-right: 10px;
}
.services-with-wiki .why_choose_us_details p {
    display: flex;
    margin: 0;
    text-align: left;
    align-items: center;
}
.services-with-wiki .why_choose_us_details i.icon-snowflake {
    margin: 0 5px 0 0;
    font-size: 20px;
}
.services-with-wiki .why_choose_us_details i.icon-snowflake::before {
    content: '\e807';
}



/* Pricing Tables */
.pricing_area {
    z-index: 9999;
    position: relative;
}
.pricing_area.extra_padding {
    padding: 120px 0 120px 0;
}
.pricing_box {
    border: 2px solid #eef3f9;
    padding: 58px 68px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.pricing_box:hover {
    background: #eef3f9;
}
.pricing_box i {
    font-size: 50px;
    display: block;
    color: var(--primary);
    margin-bottom: 38px;
}
.pricing_box h3 {
    font-size: 20px;
    font-weight: 500;
}
.pricing_box h1 {
    font-size: 54px;
    margin-bottom: 28px;
    font-weight: 500;
    position: relative;
}
.pricing_box p {
    margin-bottom: 40px;
}
.pricing_box:hover .btn-gray {
    background-color: var(--secondary);
    color: #ffffff;
}
.pricing_box h1 span {
    position: absolute;
    font-size: 25px;
    margin-left: -15px;
    margin-top: 10px;
}



/* Experience */
.experience_box {
    position: relative;
    padding: 0 34px;
}
.experience_box .icon_box {
    width: 146px;
    height: 146px;
    border-radius: 50%;
    background: #eef3f9;
    line-height: 127px;
    position: relative;
    margin: auto auto 43px auto;
}
.experience_box .icon_box i {
    display: block;
    font-size: 65px;
    color: var(--primary);
    margin-bottom: 30px;
}
.experience_box .icon_box span.number {
    font-weight: 900;
    display: inline-block;
    width: 45px;
    background-color: var(--secondary);
    color: #ffffff;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    position: absolute;
    bottom: -21px;
    left: 50%;
    margin-left: -22.5px;
}
.experience_box p {
    font-weight: 300;
}
.experience_box img.experience_shape {
    position: absolute;
    right: -129px;
    top: 40%;
}


/* CounterUP */
.counterup_area p {
    color: #ffffff;
}
.counterup_area i {
    font-size: 65px;
    color: #ffffff;
    margin-bottom: 30px;
    display: block;
}
.counterup_area h1 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 5px;
}
.footer_bg{
    background: var(--secondary);
    padding: 10px 0;
    margin-top: 20px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright .th-social a {
    text-decoration: none !important;
}
.th-social a:hover {
    fill: #fff;
}
.footer_bg a {
    text-decoration: underline !important;
    color: #fff;
}
.footer_bg a:hover {
    color: #fff;
}
.copyright p {
    color: #fff;
    font-weight: 400;
        font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
}

/* clients logo */
.client_log_area {
    background-color: #eef3f9;
}
.client_log_area .owl-dots {
    margin-top: 25px;
}
.client_logo_slider img {
    width: auto !important;
    margin: auto;
}


/* contact */
.footer_section {
    position: relative;
    padding-top: 60px;
}
#map {
    width: 100%;
    height: 650px;
}
#map .gmnoprint,
#map .gm-control-active {
    display: none;
}
.contact_form_area > .container {
    position: relative;
}
.contact_form_area img.contact_img {
    margin: -11px 0 0 -108px;
}
.contact-details input::-webkit-input-placeholder,
.contact-details textarea::-webkit-input-placeholder,
.contact-details input:-moz-placeholder,
.contact-details textarea:-moz-placeholder ,
.contact-details input:-ms-input-placeholder,
.contact-details textarea:-ms-input-placeholder ,
.contact-details input::-webkit-input-placeholder,
.contact-details textarea::-webkit-input-placeholder ,
.contact-details input::placeholder,
.contact-details select,
.contact-details textarea::placeholder {
    color: #9da1a5;
}
.contact-details input::-webkit-input-placeholder,
.contact-details textarea::-webkit-input-placeholder,
.contact-details input:-moz-placeholder,
.contact-details textarea:-moz-placeholder ,
.contact-details input:-ms-input-placeholder,
.contact-details textarea:-ms-input-placeholder ,
.contact-details input::placeholder,
.contact-details select,
.contact-details textarea::placeholder {
    color: #9da1a5;
    opacity: 1 !important;
}
.contact-details input,
.contact-details select,
.contact-details textarea {
    border: none;
    padding: 15px 30px;
    width: 100%;
    background: #eef3f9;
    font-size: 14px;
    font-weight: 500;
    height: 55px;
}
.contact-details .contact_select {
    display: block;
    padding: 15px 30px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border-radius: 0;
    height: 65px;
}
.contact-details .select_icon:before {
    color: #0f1214;
    margin-top: 16px;
}
.contact-details .input_half_width {
    width: 48.5%;
    margin-bottom: 20px;
}
.service_single_left .contact-details .input_half_width {
    width: 48%;
}
.contact-details .input_half_width.input_mr {
    margin-right: 3%;
}
.contact-details textarea {
    height: 145px;
}
.contact-details button {
 display: inline-block;
    margin-top: 10px;
    padding: 16px 32px;
    font-weight: 600;
    background: var(--primary);
    color: white;
}
.error img {
    width: 50%;
    display: block;
    margin: 0 auto;
}
input.error , textarea.error {
    border-color:red !important;
}
label.error {
    padding: 0 0 50px;
    display:none !important;
}
.contact-details button:hover {
    background: #0f1214;
    color: #ffffff;
}
.contact-details input::-webkit-input-placeholder,
.contact-details textarea::-webkit-input-placeholder,
.contact-details select,
.contact-details .select_icon:before {
    color: #777777;
}
.contact-details input:-ms-input-placeholder,
.contact-details textarea:-ms-input-placeholder,
.contact-details select,
.contact-details .select_icon:before {
    color: #777777;
}
.contact-details input:-ms-input-placeholder,
.contact-details textarea:-ms-input-placeholder,
.contact-details select,
.contact-details .select_icon:before {
    color: #777777;
}
.contact-details input::placeholder,
.contact-details textarea::placeholder,
.contact-details select,
.contact-details .select_icon:before {
    color: #777777;
}
.contact_form_area {
    position: relative;
    padding-bottom: 0;
    /*z-index: 9999;*/
}
.contact_form_area .hero-section-title .icon-snowflake {
    margin-left: -6px;
}
.service_single_left .contact-details .input_half_width.input_mr {
    margin-right: 4%;
}
.service_single_left .contact-details input::placeholder,
.service_single_left .contact-details input::-webkit-input-placeholder,
.service_single_left .contact-details select,
.service_single_left .contact-details textarea::placeholder,
.service_single_left .contact-details textarea::-webkit-input-placeholder {
    color: #9da1a5;
}
.service_single_left .contact-details input, .service_single_left .contact-details select, .service_single_left .contact-details textarea {
    padding: 17px 30px;
}
.service_single_left .contact-details select {
    padding: 16px 30px;
    height: 66px;
}
.service_single_left .contact-details .select_icon:before {
    margin-top: 18px;
    right: 30px;
    color: #9da1a5;
}
.service_single_left .contact-details textarea {
    margin-top: 20px;
    margin-bottom: 0;
}
.contact_form_other_style {
    /*padding-bottom: 120px;*/
}
.contact_form_other_style .input_half_width {
    width: 48.5%;
}
.contact_form_other_style input, .contact_form_other_style textarea {
    font-weight: 500;
}

section.mb-50.article-btm.author-new-articles.space {
    background: #f7f7f7;
}
.author-new-articles h2.item-heading.mb-20 {
    margin-bottom: 20px;
}

/* footer */

.footer_box img {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
    border-radius: var(--theme-radius);
}
.footer_box h3 {
    margin-bottom: 20px;
    /*font-size: 20px;*/
    font-weight: 700;
    color: #ffffff;
}
.footer_box p {
    font-size: 15px;
    color: #fff;
    line-height: 26px;
    font-weight: 400;
}
.footer_section.section_padding {
    padding-bottom: 0;
}
.footer_section {
    background: linear-gradient(to right, var(--primary), var(--secondary));

}
.footer_section .col-md-4:last-child .footer_box p {
    padding-right: 0;
}
.footer_box ul li {
    display: block;
}
.footer_box ul li a {
    display: block;
    color: #fff;
    font-weight: 400;
    line-height: 30px;
    font-size: 16px;
    padding-left: 15px;
    position: relative;
}
.footer_box ul li a .fa {
    position: absolute;
    left: 0;
    top: 4px;
}
.footer_box ul li a:hover,
.footer_box span a:hover {
   text-decoration:underline !important;
}
.footer_box.service {
    padding-left: 25px;
}
.footer_box span a {
    color: #fff;
    margin-bottom: 8px;
    display: inline-block;
}
.fa:before {
    font-size: 20px;
}
.footer_box span {
    margin-top: 20px;
}
.footer_box span.support_email {
    margin-top: 22px;
}
.footer_box span {
    display: block;
    color: #fff;
    font-weight: 400;
}
.footer_box span i {
    margin-right: 10px;
    
}
.footer_box.latest_posts {
    padding: 0 48px 0 17px;
}
.footer_box.latest_posts ul li .date {
    font-size: 14px;
    font-weight: 400;
    color: #b1b6b9;
    display: inline-block;
    line-height: 20px;
}
.footer_box.latest_posts ul li {
    line-height: 24px;
    margin-bottom: 24px;
}
.footer_box.latest_posts ul li:last-child {
    margin-bottom: 0;
}
.footer_box.latest_posts ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px !important;
}
.footer_box.latest_posts ul li a:hover {
    color: var(--primary);
}
.footer_box.instagram {
    max-width: 241px;
    padding-left: 21px;
}
.footer_box.instagram ul li {
    flex-basis: 30%;
    flex-wrap: wrap;
}
.footer_box.instagram ul li:first-child,
.footer_box.instagram ul li:nth-child(2) {
    margin-right: 10px;
    margin-bottom: 10px;
}
.footer_box.instagram ul li:nth-child(4),
.footer_box.instagram ul li:nth-child(5) {
    margin-right: 10px;
}
.footer_box.instagram ul {
    display: flex;
    flex-basis: 30%;
    flex-wrap: wrap;
}
.footer_box.instagram ul li .inst_bg {
    background: url("../images/gallery_3.jpg") center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 66px;
}

.copyright_area {
    /*border-top: 2px solid rgba(255,255,255,0.1);*/
    /*margin-top: 120px;*/
    padding: 25px 0;
}
.copyright_area p {
    color: #b1b6b9;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}
.copyright_area .copyright_left .social_media li {
    display: inline-block;
}
.copyright_area .copyright_left .social_media li a {
    display: block;
    background: #323538;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    margin-right: 5px;
    position: relative;
    z-index: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.copyright_area .copyright_left .social_media li a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--primary);
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.copyright_area .copyright_left .social_media {
    margin-right: 7px;
}
.copyright_area .copyright_left .social_media li a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.copyright_area .copyright_left {
    display: flex;
    align-items: center;
}
.copyright_area .copyright_right .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.copyright_area .copyright_right .menu li {
    margin-left: 24px;
}
.copyright_area .copyright_right .menu li a {
    font-size: 16px;
    color: #b1b6b9;
    font-weight: 400;
}
.copyright_area .copyright_right .menu li a:hover {
    color: var(--primary);
}
.copyright_area .copyright_right .menu li:first-child {
    margin-left: 0;
}
/* 2-12-20208*/

.icons-header p {
    color: #fff;
    display: inline;
    background: #1d2736;
    border-radius: 32px;
    padding: 8px 6px;
    margin-right: 5px;
}
.banner-text.visible-lg a {
    margin-top: 20px;
}


.header-icon {

    margin-right: 10px;
    position: relative;
    margin-right: 10px;
    position: relative;
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}
.header-icon i {
    color: #fff;
    font-size: 23px;
    
}
.phone {
    color: var(--secondary);
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
        margin-bottom: 6px;
}
.pnumber{
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.banner{
    position:relative;
}
.banner:before{
    position:absolute;
    content:"";
    left:0;
    right:0;
    bottom:0;
    top:0;
    /*background:#0e0e0e;*/
    opacity:0.3;
}
section.banner h1, section.banner p {
    color: #000;
}
section.banner .row {
    justify-content: center;
    display: flex;
    text-align: left;
    align-items: center;
}
.banner img {
    border-radius: var(--big-radius);
}

.image-wrapper,
.slider_service_img {
  background-color: #eee;
  overflow: hidden;
  position: relative;
}
.image-wrapper img,
.slider_service_img img{
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-wrapper img.loaded,
.slider_service_img img.loaded {
  opacity: 1;
}
/* need to change for each section image resolution*/
.image-wrapper {
  aspect-ratio: 555 / 355;
  border-radius: var(--big-radius);
}
.slider_service_img  {
  aspect-ratio: 360 / 230;
}
.slider_service_img:after {
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    pointer-events: none;
    border-radius: var(--theme-radius);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    top: -2px;
    font: normal normal normal 14px / 1 FontAwesome;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background-image: url('/userfiles/images/home-genie-call.png');
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    background-size: 180px;
}

.slider_service_box:hover .slider_service_img:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 0.5s ease-in-out;
    
}

@media (max-width:1100px) and (min-width:768px) {
    .banner{
    padding-bottom: 50px; 
    padding-top: 50px;
    background-size: cover !important;
    background-position: center center !important;
    align-items: center;
    display: flex;
   }
}
@media (max-width:1200px) and (min-width:110px) {
    .banner h1{
       font-size:36px;
   }
}
@media (max-width:1350px) and (min-width:1101px) {
    .banner{ 
    padding-bottom: 50px; 
    padding-top: 50px;
    background-size: cover !important;
    background-position: center center !important;
    align-items: center;
    display: flex;
   }
}
@media (max-width:1600px) and (min-width:1351px) {
    .banner{
    padding-bottom: 50px; 
    padding-top: 50px;
    background-size: cover !important;
    background-position: center center !important;
    align-items: center;
    display: flex;
   }
}
@media (min-width:1601px) {
.banner{
    padding-bottom: 50px; 
    padding-top: 50px;
    background-size: cover !important;
    background-position: center center !important;
    align-items: center;
    display: flex;
   } 
}
@media(max-width:767px){
    
    .mr-auto{
    margin-left:56px;
    }
    .icons-header.text-center.imgs .d-block {
   
    margin-bottom:-3px;
}
    .icons-header.text-center.imgs .d-block img {
    max-width: 85px;
}
    .header_slide_text h1 {
       font-weight:600;
    }
    .service_single_area ul{
        margin-left:12px !important;
    }
    
    .service_single_area img{
        width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    }
    .testimonial_details p {
    font-size: 20px ;
    line-height: 29px !important;
}
    
     .logo-d{
        display:flex;
    padding-top: 6.5px;
    }
    .logo-d .logo-phone{
    margin-right:auto;
    font-size: 21px;
    background-color: var(--secondary);
    color: #fff;
    margin-top:7px;
    padding: 0 14px;
    height: 36px;
    line-height: 1.7;
    
    }
    .banner{
    min-height: 200px !important; 
    padding-bottom: 10px; 
    padding-top: 10px;
    background-size: cover !important;
    display: flex;
    align-items: center;
   }
.banner .container{
    width:100%;
}
}
.service_single_area img {
    width: 100%;
    border-radius: var(--big-radius);
}

.banner-heading h1{
    color: #1d2736;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 58px;
    padding-right: 46px
}
 
.banner-text p {
    color: #3f3f3f;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 30px;
    padding-top: 18px; 
}    
.text-country {
    background: var(--secondary);
    text-align: center;
    color: #fff;
    padding: 1px;
    font-weight: bold;
    border-radius: var(--big-radius) var(--big-radius) 0 0;
}
.rating-first-sec .left-section p {
        line-height: 1.5;
    padding: 12px;
    font-size:20px;
    margin-bottom:0;
    font-weight: 600;
}
.text-country p {
    color: #fff;
    line-height: 1.5;
    padding: 12px;
    font-size:20px;
    margin-bottom:0;
    font-weight: 600;
}
.brand_row .slider_service_box {
    overflow: unset;
    height:100%;
}
.locationmap{
    padding: 20px 18px;
}
.about_support_flex p span {
    margin: 10px 0 0;
    display: block;
}
 .btn-red {
    color: #fff;
    background-color: var(--secondary);
    font-size: 16px;
    padding: 12px 15px;
    border: 1px solid transparent;
    border-radius:var(--theme-radius) ;
}
 .btn-red.second {
    background-color: var(--primary);
}
 .btn-red.second:hover {
    background-color: var(--secondary);
}
.about_details ul strong {
    font-weight: 600;
    font-family: 'Inter';
    color: #3f3f3f;
}
.about_details ul li{
    color: #3f3f3f !important;
}
 .btn-red:hover{
     color:#fff;
    background: var(--primary);
    border: 1px solid #fff;
  
 }
 .form-group {
    margin-bottom: 25px;
}
.form-control{
    padding: 18px 12px;
}
.contactform{
    padding: 24px 20px;
} 
 .appointment a:hover{
    color:#fff;
 }
.proudly-canadian{
    color: #ea242b;
    margin-top: -4px;
    font-weight:500;
    font-size:18px;
}
.city-img{ padding: 20px 20px 2px;}

section.contact_form_area.contact_form_other_style.section_padding.text-center {
    margin-bottom: 60px;
}
.contact-details input, .contact-details select, .contact-details textarea {
    padding: 15px 30px;
    width: 100%;
    background: #f7f7f7;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #c1c1c1;
    margin:5px 0 5px 1px;
}
.contact-us h1{
    font-size: 35px;
    margin: 0px;
    font-weight: 700;
}
label.error {
    color: red !important;
}
form#contactUs .col-md-6 , form#frm2 .col-md-6 , form#frm1 .col-md-6{
    margin-bottom: 15px;
}
.d-none {
    display:none;
}
.appointment a{color:#fff;}
.homepagecities{
    padding: 60px 0;
    
}
@media(min-width: 900px){
    .proud{margin-top:18px;}
}
.header-text {
    display: flex;
    justify-content: end;
    align-items:center;
}
.privacy-policy {
    padding: 50px 0;
}
.privacy-policy ul{ margin-left:40px;}
/*logo slider*/
.brand-pdng{padding:25px!important; }
.brand-pdng .owl-carousel .owl-item img{display:block;}
.ul3 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 3;
}
.ul3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    list-style:none;
}
.ul3 li:before {
    content: "\f105";
    margin-right: 6px;
    font-family: 'FontAwesome';
    position: absolute;
    color: var(--primary);
    left: 0;

}
.ul3 a{
color: var(--primary);
  font-family:"Inter", sans-serif;
    font-weight: 500;
}

.ul3 a:hover{
color: var(--secondary);}

.homepagecities li{ 
list-style: none;
    position: relative;
    padding-left: 15px;
        margin-bottom: 5px;
}
.ul-manage h2{
    margin-bottom:20px;
    text-align: center;
}
.ul-manage h3{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 10px;
    border-top: 1px solid;
    display:none;
    padding-top: 12px;
}
.homepagecities ul{
padding-left: 20px;}
.brd{
    font-size:14px;
}
.about_details ul {
    margin-top: 20px;
}
@media(min-width:767px){
    .d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn {
    display: none;
}
}
@media(min-width:992px){
    .responsive_click_menu{
    position:relative;
}

.responsive_click_menu:before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 26px;
    top: 12px;
    color: #fff;
}
.row.brand_row .col-lg-3 {
    width: 20% !important;
}
ul.dropdown-menus.s-menu {
    column-count: 2;
}
}
@media(max-width:991px){
    .modal {
    top: 15%;
}
.modal-content {
    padding: 20px;
}
.modal-content {
       border-radius: var(--big-radius);
}

.modal-content p {
      text-align: center;
    margin-bottom:15px;
    font-size:24px;
    font-weight:600;
}
.modal-content h2 {
  
}

.modal #frm2 textarea {
    height: 60px;
}
.modal-header {
    padding: 0;
    border-bottom: none;
}
.modal button.btn.btn-contact {
    background: var(--secondary);
    color: #fff;
    margin: 0 auto;
    justify-content: center;
    display: flex;
}
.modal button.btn.btn-contact:hover {
    background: var(--primary);
}
}
@media(max-width:767px){
    .brd {
        padding: 3px 0;
    }
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn {
    display: flex;
    align-items: center;
    padding: p;
    border: 2px solid #fff;
    background: #fff;
    border-radius: var(--big-radius);
    border: 1px solid var(--secondary);
}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn i:before {
    font-size: 32px;
    color:var(--secondary);
}
.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn img{
max-width: 70px;
        animation: genieFloat 3s ease-in-out infinite;
        padding: 5px 3px 5px 8px;
}

.d-md-none.d-lg-none.ph_responsive.mobile-icon.th-btn a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    background: var(--secondary);
    border-radius: 0 var(--big-radius) var(--big-radius) 0;
    padding: 8px 10px;
}
span.text_ph {
    right: 50px;
    color: var(--secondary);
    font-size: 21px;
    display: block;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-align: start;
    font-weight: 400;
}
.mobile-icon {
    position: fixed;
    bottom: 74px;
    right: 40px;
    z-index: 9999;
}
.about_details ul strong{
    color:#fff;
}
.brand_img {
    padding:5px;
}
.slider_service_details{
    min-height: auto;
}
    .w-logo{width:168px}
.ul3 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
.homepagecities ul{
padding-left: 15px;
    
}

.banner h1{
    width:100%;
}
}
.homepagecities h2{
    margin-bottom:16px;
   text-align: center !important;
}
.brands_slider {
    color: #000 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}
.wikibox h3{display:none;}
.wikibox img{width:100%; padding:0 16px 20px}
.padding-50px-tb{
    padding: 50px 0;
}
.nav-color{
   background: linear-gradient(to right, var(--primary), var(--secondary));

}

.fa-angle-right::before {
    font-family: 'FontAwesome';
    padding-right: 10px;
}
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
    font-family: 'FontAwesome';
}
.myaccordian.fa:before {
    font-family: 'FontAwesome';
    font-style: normal !important;
}
i.fas.fa-stack-1x.fa-inverse {
    font-style: normal;
}
.fa-stack-2x {
    font-style: initial;
}


.myaccordion {
    /*max-width: 500px;*/
    margin: 50px auto;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.myaccordion .card,
.myaccordion .card:last-child .card-header {
    border: none;
}

.myaccordion .card-header {
    border-bottom-color: #edeff0;
    background: transparent;
}

.myaccordion .fa-stack {
    font-size: 15px;
        float: right;
}

.myaccordion .btn {
   width: 100%;
    font-weight: 550;
    color: var(--color3);
    padding: 0;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid #0000000f;
}

.myaccordion .btn-link:hover,
.myaccordion .btn-link:focus {
    text-decoration: none;
}

.myaccordion li + li {
    margin-top: 10px;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus{
    outline: none;
}
/*faq css*/
.myaccordion {
    display: none;
}
.service_single_area h2 {
    font-size: 26px;
    line-height:32px;
    font-weight: 600;
}
.service_single_area h3 {
    font-size: 22px;
    font-weight: 600;
    line-height:30px;
}

.fa.fa-address-book::before {
    font-family: FontAwesome;
    font-style: normal;
    font-size: 35px;
}
.hero-section-title .icon-snowflake:before {
    content: '\e807';
}
h2.contact_us\+ {
    line-height: 1.8;
}
.fa-address-book:before {
    content: "\f2c3";
    color: var(--primary);
}

.icons-header span {
    
  font-weight: 700;
} 
  .disclaimer {
    color: #fff;
    margin-top: 15px;
}
.brd a {
    font-weight: 600 !important;
    color: var(--primary) !important;
}
.brd i.fa {
    margin: 0 3px;
}
.brd a:hover {
    color: var(--secondary) !important;
}
form#contactUs label.error , form#frm1 label.error , form#frm2 label.error {
    padding: 0;
}
.modal button.close {
    opacity: 1;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    padding-bottom: 2px;
}
.sidebar-maps iframe {
    display: block;
}
.form-control:focus{
    border-color: inherit ;
        box-shadow: none;
}
.contact_form_area .contact-details {
    text-align: left;
}
.our-brandcategory a {
    display: flex;
    background: #fff;
    margin-bottom: 9px;
    text-align: center;
    justify-content: center;
    border-radius: var(--theme-radius);
    padding: 7px ;
    text-transform: capitalize;
}
.row.brand_row {
    display: flex;
    flex-wrap: wrap;
}
.pb-0 {
    padding-bottom: 0;
}
.sidebar-era .service_single_right.row {
    display: flex;
    flex-wrap: wrap;
}
.sidebar-era .service_single_right.row .col-lg-6 {
    min-height: 100%;
}
.sidebar-era .map-home {
    height: 100%;
}
.sidebar-era .information {
    min-height: 100%;
}
.sidebar-era .services_support{
    height:90%;
}
.sidebar-era .service_single_right {
    width: 100%;
    padding: 12px;
    height:initial;
}
.sidebar-era .new-home-side-era {
    display: flex;
}
.sidebar-era .service_single_right iframe {
     min-height: 98%;
}
.sidebar-era .sidebar-maps{
    height: 100%;
}
.location-era i {
    color: var(--primary);
}
a.scroll-link {
    font-size: 16px;
    font-weight: 600;
    padding-top: 2px;
    line-height:22px;
}
.location-era i:before {
    font-size: 29px;
}

.location-era .icons-header {
    display: flex;
    justify-content: center;
    align-items:center;
}

.location-era .icons-header span {
    margin-right: 9px;
}
.services-with-wiki .services_support {
    background: #fff;
}
.faq-item {
      background: #fff;
      border-radius: var(--theme-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }


.faq-question{
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #fff;
}
.faq-question::after {
    content: "\f107";
    font-family: 'FontAwesome';
    top: 16px;
    color: #fff;
    font-weight: bold;
    padding-right: 5px;
    font-size: 22px;
    position: absolute;
    right: 7px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotateX(180deg);
}

.faq-answer {
  overflow: hidden;
  padding:15px 15px ;
  display:none;
}
.faq-item.active .faq-answer {
    padding:15px 15px;
    display: block;
}
h2.main-title {
    font-size: 28px;
    font-weight: 700;
}
.location-era_txt span {
    display: block;
    color: var(--primary);
    
}
.location-era .icons-header.text-center.imgs span.d-block {
    display: flex;
}
.location-era_txt {
    display: flex;
    text-align: left;
}



section.testimonial-two {
  padding: 60px 0 ;
}
.stars-row img.g_icon {
  width: max-content;
}
.our_top_head h2 {
  position: relative;
  display: block;
  color: #131313;
    line-height: 42px;
  font-weight: 700;
}
.rating-first-sec .left-section {
  text-align: center;
}
.googe_rating .reviewer-name {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.googe_rating .owl-item:nth-child(1) .avatar,
.googe_rating .col-lg-4:nth-child(1) .avatar{
    background: #4CAF50;
}
.googe_rating .owl-item:nth-child(2) .avatar,
.googe_rating .col-lg-4:nth-child(2) .avatar{
    background: #FF9800;
}
.googe_rating .owl-item:nth-child(3) .avatar,
.googe_rating .col-lg-4:nth-child(3) .avatar{
    background: #2196F3;
}
.googe_rating .owl-item:nth-child(4) .avatar,
.googe_rating .col-lg-4:nth-child(4) .avatar{
    background: #9C27B0;
}
.googe_rating .owl-item:nth-child(5) .avatar,
.googe_rating .col-lg-4:nth-child(5) .avatar{
    background: #3F51B5;
}
.googe_rating .owl-item:nth-child(6) .avatar,
.googe_rating .col-lg-4:nth-child(6) .avatar{
    background: #673AB7;
}
.googe_rating .owl-item:nth-child(7) .avatar,
.googe_rating .col-lg-4:nth-child(7) .avatar{
    background: #00BCD4;
}
.googe_rating .owl-item:nth-child(8) .avatar,
.googe_rating .col-lg-4:nth-child(8) .avatar{
    background: #8BC34A;
}
.googe_rating .owl-item:nth-child(9) .avatar,
.googe_rating .col-lg-4:nth-child(9) .avatar{
    background: #F44336;
}
.googe_rating .review-date {
  font-weight: 400;
  font-size: 12px;
  color: #7a7a7a;
}
.googe_rating  blockquote{
    padding:0 !important; 
    border-left:none !important;
}
.googe_rating .review-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.left-section h4 {
  font-size: 24px;
  font-weight: 700 !important;
  color: #000;
  margin-bottom: 10px;
}
.left-section .based-on {
  padding: 8px;
}

section.overflow-hidden.space.updated-reviews.googe_rating .review-card {
    min-height: auto !important;
    height: 90%;
    margin-bottom: 30px;
}
.googe_rating .review-card {
  background: #7fa1c32e;
  border-radius: var(--big-radius);
  padding: 20px 20px 25px;
  text-align: left;
  position: relative;
  user-select: none;
  min-height:300px;
}

.home-form .icons a svg {
    fill: #fff;
    padding: 9px;
}
.rating-first-sec .left-section img {
  width: max-content;
}
.googe_rating .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.googe_rating .review-header .avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  user-select: none;
background: var(--primary);
}
section.googe_rating {
  padding: 60px  0;

}
.our_top_head {
    text-align: center;
    margin-bottom: 35px;
}
.bg-title.space-extra.brands-areas {
    background: var(--primary);
    padding: 50px;
}
a.th-btn.btn.btn-orange:hover {
    background:var(--primary);
}
a.th-btn.btn.btn-orange {
 
    background: var(--secondary);
    border: 1px solid var(--secondary);
}
.our-brnds.sec-title.text-white.text-center.mb-35 h2 {
    color: #fff;
    margin-bottom: 18px;
}
.left-section .google-logo {

    min-width: 200px;
    height: auto;
}
.stars-row img.g_icon {
  width: max-content;
}
.rating-first-sec .left-section {
  text-align: center;
}
.googe_rating .reviewer-name {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.googe_rating .review-date {
  font-weight: 400;
  font-size: 12px;
  color: #7a7a7a;
}
.googe_rating .review-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  margin-top: 20px;
}
.left-section h4 {
  font-size: 24px;
  font-weight: 700 !important;
  color: #000;
  margin-bottom: 10px;
}
.left-section .based-on {
  padding: 8px;
}

.googe_rating .review-header {
  display: flex
;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.googe_rating .review-header .avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  user-select: none;
  background: var(--primary);
}
.googe_rating .google-icon {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 20px !important;
  height: 20px;
}
.cta-section {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
    color: white;
}
.cta-section.cta-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
.cta-section .cta-title .highlight {
    color: #ffffff;
}
 
.cta-section .cta-description , .cta-section .cta-description p{
    color: #f0f0f0;
    margin:20px 0;
}
.cta-section .cta-description p a {
    color: #fff;
    text-decoration: underline !important;
}
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
.cta-section .btn {
    padding: 15px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title .sec-title {
    color: #fff;
}
a.btn.btn-primary.btn-red:hover {
    background: var(--secondary);
}
a.btn.btn-secondary:hover {
    background: var(--secondary);
}
.cta-section .btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}
.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}
.cta-section .btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
 
.cta-section .or-text {
    font-size: 18px;
    font-weight: bold;
    color: #f0f0f0;
    margin: 0 10px;
}
.mb-3.our-text-era {
    margin-bottom: 20px;
}
@media (min-width: 1350px) and (max-width: 1599px) {
    .responsive_click_menu:before {
        right: 10px;
    }
}
@media (width: 1200px) {
    .responsive_click_menu:before {
        right: 0px;
    }
}
@media(max-width:1199px){
    .services-with-wiki .why_choose_us_details {
        width: 31%;
    }
    nav.navbar.navbar-default.row .col-lg-3.col-md-5.hidden-xs.hidden-sm {
        padding: 0;
    }
    .responsive_click_menu:before {
        right: 0;
    }
    .brand_img {
        min-height: 171px ;
    }
    .slider_service_area {
        padding: 40px 0 !important;
    }
    .about_details ul strong {
        font-weight: 500;
    }
    .appointment a {
        display: block;
        font-size: 30px;
    }
    
}
@media(min-width:992px){
    .navbar-default .navbar-collapse {
    display: flex;
    justify-content: center;
}
}
@media(max-width:991px){
    .services-with-wiki .why_choose_us_details {
        margin: 0;
    }
    .services-box {
        margin: 0 0 30px;
    }
    .main_menu_area .header_nav .navbar-toggle:focus, .main_menu_area .header_nav .navbar-toggle:hover {
        background: var(--primary) !important;
    }
        section.slider_service_area .col-sm-12.col-md-4.col-lg-3 {
        width: 33%;
 
    }
    .main_menu_area1 {
        padding: 5px 0 !important;
    }
    .sidebar-era .new-home-side-era {
    display: block;
}
    .banner h1 {
        font-size: 32px;
        line-height: 40px;
    }
    section {
        padding: 50px 0 !important;
    }
    .services_support.mb_30:last-child {
        margin: 0;
    }
    .brands_slider {
        line-height: 34px;
    }
    .ul3 {
        column-count: 3;
    }
    .footer_section .footer_box {
        min-height: auto !important;
    }
    .logo-d .logo-phone a {
        color: #fff !important;
    }
    .banner-text p {
        display: block !important;
        margin-bottom: 10px;
    }
    .banner {
        padding: 50px 0 !important;
        display: block !important;
    }
    .banner .col-md-6 {
        width: 50%;
    }
    .slider_service_details {
        min-height: auto;
    }
    .about_support_flex p, .services_support p {
        padding: 15px;
    }
    .about_support .about_support_flex, .services_support {
        align-items: center;
    }
    .about_details {
        padding: 0;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .service_single_area h3 {
        font-size: 20px;
    }
    
}
@media(max-width:1199px){
    .header-info span a {
        font-size: 18px;
    }
}
@media(max-width:1023px){
    .icons-header span {
        font-size: 14px;
    }
        .banner img {
        width: 100%;
    }
}
@media(max-width:767px){
    .services-with-wiki .why_choose_us_details {
        width: 100%;
        padding: 5px 15px !important;
    }
    .banner {
        background-position: center !important;
        padding: 20px 0 50px  !important;
        display: flex;
        align-items: center;
    }
        .main_menu_area1 {
        padding: 8px 0 !important;
    }
    .col-lg-3.col-sm-6.rating-era {
    display: none;
}
a.scroll-link {
    font-size: 14px;
    line-height:17px;
}

.location-era_txt span {
    font-size: 14px !important;
}
    .header_nav .col-lg-5.col-sm-6 ,.header_nav .col-lg-3.col-sm-6.col-md-3 {
    justify-content: end;
    display: flex;
    width:50%;
    padding-right: 0;
}
.col-lg-3.col-sm-6.location-era {
    width: 100%;
    padding-right: 0;
}
.header_nav .col-lg-3.col-sm-6.col-md-3{
    justify-content:start;
}
    .header_slide_text h1 {
        padding: 0 !important;
        margin-bottom: 5px !important;
            line-height: 28px;
    }
    section.about_area.gray_bg{
        padding-top:0 !important;
    }
    section.about_area.gray_bg:before,section.about_area.gray_bg:after {
        display: none;
    }
    .about_details .hero-section-title h2 {
        color: #3f3f3f !important;
    }
    .about_details p {
        color: #3f3f3f !important;
    }
    .about_details ul strong {
        color: #3f3f3f !important;
    }
    .about_details ul li {
        padding-left: 25px;
        font-size: 14px;
    }
    .about_details ul li i {
        color: var(--secondary) !important;
        position: absolute;
        left: 0;
    }
    .brand_row {
        padding: 0 !important;
    }
    .slider_service_box {
        width: 100% !important;
    }
    .brand_row {
        column-count: auto !important;
        display: flex;
        flex-wrap: wrap;
    }
    .brand_row .slider_service_box {
        overflow: unset;
        height: 88%;
    }
    .brand_img {
        min-height: auto;
        height: 100%;
    }
    section.slider_service_area .col-sm-12.col-md-4.col-lg-3 {
        width: 50%;
        float: left;
    }
    .main_menu_area1 .whatsapp-icon a {
        bottom: 88px !important;
        top: auto;
    }
    .ul3 {
        column-count: 2;
    }

    .hero-section-title h4 {
        text-transform: unset;
    }
    .brands_slider {
        font-size: 21px !important;
    }
    section.slider_service_area.text-center.n_slider_services {
        padding-bottom: 20px !important;
    }
    .homepagecities {
        padding: 50px 0;
    }
    section.banner .col-lg-6 {
        width: 100%;
        padding-right: 8px;
    }
    .slider_service_area .col-sm-4.col-md-4.col-lg-3 {
        width: 50%;
        float: left;
    }
    .brand_img {
        min-height: 140px;
    }
    .banner .col-md-6 {
        width: 100%;
    }
    section.banner .row {
        justify-content: center;
        display: block;
        text-align: center;
        align-items: center;
    }
    .banner-text a {
        margin: 0 0 16px;
        background: var(--primary);
    }
    .navbar-collapse {
        box-shadow: unset !important;
        border-top: 1px solid #fff !important;
        margin-top: 12px;
    }
    .banner-text p {
        padding-top: 5px;
    }
    .about_support {
        padding: 0 15px;
    }
    .about_support_flex p span, .services_support p span {
        font-size: 26px !important;
    }
    .banner-text a {
        padding: 10px 15px !important;
    }
    .header_slide_text h1 {
        line-height: 36px;
    }
    h2 {
        font-size: 24px !important;
        line-height: 32px !important;
        font-weight: 600;
    }
    .disclaimer {
        padding-bottom: 50px;
    }
    button#scrollTopBtn {
        bottom: 155px;
        right: 40px;
        display: none !important;
    }
    section.contact_form_area.contact_form_other_style.section_padding.text-center {
        margin-bottom: 0;
    }
    .why_choose_us_details p {
        min-height: 42px;
    }
    .about_support .about_support_flex {
        max-width: 390px;
    }
    .contact_form_area .contact-details input, .contact_form_area .contact-details select, .contact_form_area .contact-details textarea {
        padding: 20px 15px !important;
    }
    .small h1 {
        margin: 0 0 15px !important;
    }
    .banner img {
        width: 100%;
    }
    .faq-question {
        padding: 10px 15px;
        padding-right: 30px;
        font-size: 17px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 15px;
    }
}
@media (max-width: 370px) {
    a.scroll-link {
        font-size: 13px;
        line-height: 20px;
    }
    .location-era i:before {
        font-size: 20px;
    }
}
@media(max-width:359px){
    .w-logo {
        width: 145px;
    }
    .header_nav .col-lg-5.col-sm-6 {
        padding-left: 0;
    }
    .appointment a {
        font-size: 27px;
    }
}

/*Article CSS*/




section.space.blog-content {
    background: #f7f7f7;
    padding: 60px 0;
}
.blog-card {
    padding: 16px;
    border-radius: var(--theme-radius);
    background-color: #fff;
    position: relative;
    z-index: 1;
    height:100%;
    transition: 0.5s;
}
.blog-card:hover {
    margin-top: -10px;
    transition: 0.5s;
}
.blog-card.style3 .blog-img {
    margin-bottom: 15px;
}
.blog-card.style3 .blog-img img{
    width:100%;
}
.blog-card .blog-img {
    display: block;
    overflow: hidden;
    border-radius: var(--theme-radius) var(--theme-radius) 0 0;
    position: relative;
    z-index: 1;
}
.blog-card .blog-content, .blog-card .blog-meta {
    color: var(--body-color);
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 3px;
    font-size: 15px;
}
.blog-meta span, .blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--primary);
    position: relative;
    margin-right: 2px;
}
.blog-meta span{
    color:var(--primary);
}
.blog-meta a:hover {
    color:var(--secondary);
}
.blog-card.style3 .box-date {
    position: absolute;
    margin: 0;
    top: 0;
    right: 32px;
    line-height: 1.1;
    text-align: center;
    border-radius: 0 0 90px 90px;
    padding: 18px 10px 24px;
    font-size: 14px;
}
section.space.blog-content .row.gy-4 {
    margin-top: 40px;
}

.blog-card .box-date {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: -19px 19px 15px auto;
    color: #ffff;
    padding: 0 24px;
    border-radius: var(--theme-radius);
    line-height: 38px;
    z-index: 1;
    position: relative;
    z-index: 3;
}
.blog-card .box-date:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    border-radius: inherit;
    z-index: -1;
}
.blog-card.style3 .box-date .date {
    display: block;
    font-size: 24px;
    font-weight: 600;
    
}



section.space.blog-content a.th-btn.btn.btn-orange {
    background: var(--secondary);
}

section.space.blog-content a.th-btn.btn.btn-orange:hover {
    background: var(--primary);
}

.blog-content h3 a {
    font-size: 24px;
    line-height: 32px;
}
.new-bottm-bar .blog-card {

    border-radius: var(--theme-radius);
    background-color: #f7f7f7;

}
section.th-blog-wrapper.blog-details.space-top.space-extra-bottom {
    padding: 70px 0;
}

section.th-blog-wrapper.blog-details.space-top.space-extra-bottom img {
    border-radius: var(--theme-radius);
    width:100%;
   
}
.widget.widget_banner.widget_tag_cloud.background-image img {
    animation: genieFloat 3s ease-in-out infinite;
}

.blog-details .blog-single .blog-content {
    background-color: transparent;
    overflow: hidden;
}
.share-links {
    padding: 20px 0;
    border-top: 1px solid var(--secondary);
}
.blog-meta span:not(:last-child), .blog-meta a:not(:last-child) {
    padding-right: 15px;
}
.blog-meta span.author-name {
    color: var(--body-color);
}
.blog-meta span, .blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--secondary);
   
    position: relative;
    margin-right: 10px;
}
blog-meta span, .blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: var(--secondary);

    position: relative;
    margin-right: 10px;
}
.blog-meta span:last-child, .blog-meta a:last-child {
    margin-right: 0;
}
.share-links-title {
    font-size: 18px;
    color: var(--secondary);
    
    font-weight: 600;
    margin: 0 15px 0 0;
    display: inline-block;
    text-transform: capitalize;
}
.share-links .th-social {
    display: inline-block;
}
.share-links .th-social a {
    --icon-size: 40px;
    font-size: 14px;
    border-radius: 99px;
    
}
.th-social.upated a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-social.upated {
    display: flex;
}
.copyright .th-social a{
    width: 35px;
    height: 35px;
}
.th-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 45px);
    background-color: #f7f7f7;
    color: #000;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 99px;
}
.th-social svg {
  
    width: 14px;
}
.th-social a:hover {
    background-color: var(--primary);
    color: #fff;
}
.blog-details .share-links .th-social a svg path {
    fill: var(--body-color) !important;
}
.blog-meta span:not(:last-child):after, .blog-meta a:not(:last-child):after {
    content: "";
    height: 14px;
    width: 1px;
    background-color: var(--secondary);
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
}
.new-bottm-bar {
    margin: 40px 0 0;
}
.blog-img {
    margin-bottom: 25px;
}

.share-links .th-social a:hover svg path {
    fill: #fff !important;
}
aside.sidebar-area .widget {
      background: #f7f7f7;
    border-radius: var(--theme-radius);
    padding: 15px;
    margin-bottom:15px;
}

p.widget_title {
    margin-top: 0px;
}
span.author-name a:hover {
    color: var(--primary);
}
.sidebar-area {
    margin-bottom: -10px;
}

.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1.4em;
    padding-bottom: 20px;
    margin: -0.12em 0 32px 0;
    color: var(--secondary);
}
.widget_title:after, .widget_title:before {
    content: '';
    height: 3px;
    width: 100%;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
}
.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom:20px;
}

.recent-post .media-img {
    margin-right: 15px;
    width: 80px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.recent-post .media-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.recent-post .media-img:after {
    content: '\f0c1';
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--secondary);
    pointer-events: none;
    border-radius:var(--theme-radius);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    top: -2px;
    font: normal normal normal 14px / 1 FontAwesome;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.title-area.text-center.our_top_head.d-block.w-100 {
    margin-bottom: 15px;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.recent-post .post-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 6px 0;
    font-family: var(--title-font);
    text-transform: capitalize;
}
.recent-post-meta i {
    margin-right: 7px;
}
.widget-banner .box-title {
    margin-bottom: 27px;
    color:#fff;
}
.widget-banner .logo {
    display: inline-block;
    padding: 17px 40px;
    border-radius: 99px;
    text-align: center;
    background-color: #fff;
    max-width:100%;
}
.widget-banner .box-text {
    font-size: 18px;
    margin-top: 27px;
    margin-bottom: 10px;
    color:#fff;
}
.widget-banner .box-link {
    font-size: 24px;
    font-weight: 600;
}
.widget-banner {
    text-align: center;
}

.widget-banner a {
    color: #fff;
}
.recent-post:hover .media-img:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.widget-banner a:hover {
    color: var(--secondary);
}
.author_inner {
    background: #fff;
    border-radius: var(--theme-radius);
    padding: 40px;
    box-shadow: none;
    display: flex;
    text-align: left;
    gap: 30px;
    align-items: center;
}

section.author-banner.pt-50 {
    background: #f7f7f7;
    padding: 60px 0 0px;
}
.author_inner img {
    border-radius: var(--theme-radius);
    margin-bottom: 0;
    min-width: 22%;
    max-width: max-content;
}
.author_inner .author {
    color: #000;
    margin-bottom: 20px;
}

.blog-content a.th-btn.style4 i {
    margin-left: 6px;
}
.sec-btn.mt-n3.mt-md-0 {
    display: flex;
    justify-content: end;
}
.blog-content .row.justify-content-between.d-flex.align-items-center {
    align-items: center;
    display: flex;

}
.blog-content .col-sm-auto {
    display: flex;
    align-items: center;
}
.cta-buttons .btn {
    border: 1px solid var(--secondary);
}
a.th-btn.style2.btn-red i {
    margin-left: 6px;
}
.new-bottm-bar h2 {
    margin-bottom: 25px;
}
.new-bottm-bar .container {
    padding: 0;
}

a.th-btn.style2.btn-red {
    color: #fff;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}
.blog-content h3 a {
    font-size: 22px;
    line-height: 32px;
}

/*Artcle css */








.team-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 32px;
    align-items:center;
    border: 1px solid var(--color2);
    border-radius: 12px;
}
.team-contact .icon-btn {
  
    font-size: 20px;
    background-color: var(--primary);
    border: none;
    color:#fff;
}
.icon-btn {
    display: inline-block;
    width: var(--btn-size, 56px);
    height: var(--btn-size, 56px);
    line-height: var(--btn-size, 54px);
    font-size: var(--btn-font-size, 20px);
    background-color: var(--icon-bg, #f7f7f7);
    color: var(--color2);
    text-align: center;
    border-radius: 99px;
    border: 1px solid var(--th-border-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}
.team-contact .box-title {
    font-size: 20px;
    margin-bottom: 2px;
}
.media-body address a {
    font-size: 18px;
}
.contact-us_img.our-rihgt-box
 {
    background: #f7f7f7;
    border-radius: var(--theme-radius);
}

 .space{
     padding:60px 0;
}
section.contact_form_area.contact_form_other_style.home-form.space h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-us.hero-section-title {
    text-align: center;
}
section.contact_form_area .col-md-12 {
    padding: 0;
}

address.box-text {
    margin-bottom: 0;
}
.media-body p {
    margin: 0;
}



.home-form .contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-form .contact-header p {
    color: #ff6b35;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}




.home-form .contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 0;
}

.home-form .form-group {
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.home-form .form-group:nth-child(3),
.home-form .form-group:nth-child(4) {
    grid-template-columns: 1fr;
    gap:0
}

.home-form .input-group {
    display: flex;
    flex-direction: column;
}
.home-form label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
}

.home-form input,
.home-form textarea {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: var(--theme-radius);
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.home-form input:focus,
.home-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.home-form input::placeholder,
.home-form textarea::placeholder {
    color: #999;
}

.home-form textarea {
    min-height: 120px;
    resize: vertical;
}

.home-form button {
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
    border: none;
   border-radius: var(--theme-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.d-block {
    display: block;
}

.home-form button:hover {
    background-color: var(--secondary);
}

.home-form .contact-info {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    padding: 40px 30px;
    border-radius: var(--big-radius);
    color: white;
}

.home-form .info-box a{
    color:#fff;
}
.home-form .info-box a:hover{
    text-decoration:underline !important;
}
.home-form .info-box {
    margin-bottom: 35px;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-form .info-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

 .home-form .social-icons h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.home-form .icons {
    display: flex;
    gap: 15px;
}

.home-form .icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    border:1px solid var(--primary);;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-form .icons a:hover {
    background-color:var(--secondary);
    text-decoration: none !important;
}

.home-form .icons a i {
    font-size: 16px;
}
.home-form .info-box h3 , .social-icons h3{
    color: #fff;
}
.page-content-box {
    background: var(--primary);
    border-radius: var(--theme-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.page-content-box.new-content-quote p {
    color: #fff;
    text-align: left;
}
.page-content-box .th-btn {
    width: fit-content;
    min-width: fit-content;
    margin-left: 30px;
    align-items: center;
}

.page-content-box p {
    color: #fff;
    text-align: left;
    margin-bottom: 0;
}
.page-content-box-three.new-content-quotes {
    background: #f7f7f7;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-left: 8px solid var(--primary);
    border-radius: var(--theme-radius);
    margin:10px 0;
}

.page-content-box-three.new-content-quotes a {
    width: fit-content;
}
.page-content-box-two {
    display: flex;
    background: #f3f3f3;
    padding: 15px;
    align-items: center;
    border-radius: var(--theme-radius);
    justify-content: space-between;
    margin: 15px 0;
}

.page-content-box-two p {
    margin-bottom: 0;
}

 
.required.error {
    padding-right: calc(1.5em + .75em);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-size: 18px;
}
.required.valid {
    padding-right: calc(1.5em + .75em);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-size: 18px;
}
input.form-control {
  transition: none !important;
}
.required.valid {
    border: 1px solid #017701;
}
.googe_rating_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.googe_rating_btn a {
    padding: 14px 30px;
}
.award-sec .stats-grid {
display: flex;
flex-wrap:wrap;
gap: 12px;
max-width: 1200px;
margin: 0 auto;
 }

.award-sec .stat-card {
background: var(--secondary);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--big-radius);
padding: 40px 30px;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
width:32%;

 }

.award-sec .stat-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.6s ease;
 }

.award-sec .stat-card:hover::before {
left: 100%;
 }

.award-sec .stat-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
border-color: rgba(251, 191, 36, 0.3);
 }

.award-sec .stat-number {
font-size: 4rem;
font-weight: 900;
color: #fff;
margin-bottom: 15px;
line-height: 1;
 }

.award-sec .stat-label {
font-size: 14px;
color: #fff;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 1px;
 }
section.award-sec .seals {
    margin-right: 24px;
}
section.award-sec .row {
    align-items: center;
    display: flex;
}
section.award-sec .seals img {
    width: 100%;
}
.award-sec .highlight-stat.award-sec .stat-number {

-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
 }
section.award-sec .hero-section-title h2 , section.award-sec .hero-section-title i {
    color: #fff;
}

section.award-sec .hero-section-title {
    text-align: center;
    
}
.award-sec .divider {
width: 60px;
height: 4px;
background:#fff;
margin: 20px auto;
border-radius: 2px;
 }
 section.award-sec {
    background: var(--primary);
    padding: 60px 0;
}
.swal2-container.swal2-center.swal2-backdrop-show {
    z-index: 999999999999;
}
.about-us2 .cta-buttons.mt-2 {
    margin-top: 20px;
}

.about-us2 .cta-buttons.mt-2 a {
    display: flex;
    align-items: center;
    width: fit-content;
}

.about-us2 .cta-buttons.mt-2 a  i {
    margin-right: 5px;
    margin-top: 2px;
}
.about-detail li .about_area li , .about-sec li{
    position: relative;
}

.about-detail li:before , .about_area li:before , .about-sec li:before {
    font-size: 16px;
    content: "\f00c";
    font-family: 'FontAwesome';
    padding-right: 0px;
    position: absolute;
    left: 0px;
    color:var(--secondary);
}
@media (max-width: 991px) {
    .blog-card.style3 {
    margin-bottom: 25px;
}
.sec-btn.mt-n3.mt-md-0 {
       justify-content: center;
    margin-top: 20px;
}
.title-area.text-md-start {
    text-align: center;
}
section.space.blog-content .row.gy-4 {
    margin-top: 25px;
}
.rating-first-sec .left-section {
    margin-bottom: 20px;
}
section.author-banner.pt-50 {
    padding-bottom: 0px !important;
}
}
@media (max-width: 768px) {
    .home-form .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-details {
    margin-bottom: 40px;
}
.author_inner .author {
      margin-bottom: 10px;
}
.sidebar-era .service_single_right {
     padding: 12px 0;
   
}
.cta-section .cta-buttons{
    flex-direction:column;
}
    
     .home-form .form-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .home-form .contact-header h2 {
        font-size: 36px;
    }
.icon-support:before {

    width: 66px;
    height: 66px;
}
    .about_support .about_support_flex i {
     width: 80px;
     
    }
   
}
.me-2 {
    margin-right: .5rem !important;
}
@media (max-width:991px){
.award-sec .stat-card {
    width: 47%;
}
.modal {
    z-index: 999999;
}
.row.n_services-one .col-md-4{
        margin-bottom: 15px;
    }
}

@media (max-width:767px){
    .appointment a {
        font-size: 28px;
    }
    .space{
        padding:40px 0;
    }
    .footer_box span {
    margin-top: 10px;
}
.page-content-box-two , .page-content-box {
    flex-direction: column;
}
.page-content-box p , .page-content-box-two p{
    text-align: center;
    margin-bottom: 20px;
}
    .service_single_right {
      
        margin-bottom: 15px;
    }
    .googe_rating .review-card {

    min-height: auto;
}
.blog-content .row.justify-content-between.d-flex.align-items-center , .author_inner{
    display: contents;
}
.blog-meta.col-lg-6 {
    margin-bottom: 20px;
  }
  .author_info {
    margin-bottom: 20px;
}
.blog-meta span:not(:last-child), .blog-meta a:not(:last-child) {
    padding-right: 8px;
}
.blog-meta.col-lg-6 , .blog-content .col-sm-auto{
        padding: 0;
    }
    .share-links-title {
  
    margin: 0 10px 0 0;
}
section.banner.inner-banner p {
    display: none !important;
}
.about-sec .row {
    display: block;
}
.googe_rating_btn {
    margin: 20px 0 30px;
}
.about-sec .row , section.award-sec .row{
    display: contents;
}
section.award-sec .seals {
    margin-right: 0px;
}
section.award-sec .seals {
    margin-right: 0px;
    margin-bottom:20px;
    max-width: 160px;
    margin: 0 auto;
}
.award-sec .stat-card {
    width: 47%;
}
section.award-sec .col-lg-9 {
    margin-top: 30px;
}
.award-sec .stat-number {
    font-size: 3rem ;
    }
    .four-col .slider_service_img:after {
        background-size: 180px;
    }
}
@media (max-width:475px){
    .award-sec .stat-number {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .award-sec .divider {
        margin: 15px auto;
    }
    .award-sec .stat-label {
        font-size: 12px;
    }
    .award-sec .stat-card {
        padding: 20px 15px;
    }
}








/*Listing Css*/


.strip {
  margin-bottom: 20px;
  border-radius: var(--big-radius) ;
  border: 1px solid #00000020;
}
.read-more.cursor-pointer.text-\[15px\] {
    color: var(--secondary);
}

.strip.list_view figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.strip .list-footer {
    padding: 16px 0 0;
    display: flex;
    margin-top: 10px;
    margin-bottom: 0;
    list-style:none;
    padding-left:0;
}
.list-logo {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}
.listing-area {
    padding: 60px 0;
}
.reviews_box.mb-2 p {
    margin-bottom: 0;
}
.strip .list_f_ul.web_phone_li:not(.list_f_ul2) {
    order: 2;
}
.strip .list_f_ul.web_phone_li a:hover,
.strip .list_f_ul.web_whatsapp_li a:hover 
{
  background-color: var(--primary) !important;
  color: #fff;

}
.reviews_box{
        background-color: #9ca3af40;
        border-radius: 5px;
        padding:8px 1em;
}
.reviews_box .author {
    font-weight:500;
}
.reviews_box p.my-0.text-\[\#333\].line-clamp-2.font-roboto {
    color: var(--secondary);
}
.strip .list_f_ul.web_whatsapp_li a:hover,
.strip .list_f_ul.web_phone_li a:hover 
{
  background-color: var(--secondary);
  border-color:var(--secondary);
  color:#fff;
}
.me-1 {
    margin-right: 8px;
}
.read-more:not(.less):after {
	content: "\f107";
}
address.d-inline-block.pb-1.mb-2.address___new {
    margin-bottom: 7px;
}
.wrapper.top .d-flex.items-center.mb-1 {
    margin: 3px 0;
}
.wrapper.top .mr6 {
    display: flex;
    align-items: center;
}
.strip.list_view.set_card_url .col-lg-2 {
    height: 100%;
    background: var(--secondary);
    border-radius:  var(--big-radius) 0 0 var(--big-radius);
}
.strip.list_view.set_card_url .row{
    width:100%;
}
.strip.list_view.set_card_url img {
    max-width: 100%;
}
.list-logo img{
    animation: genieFloat 3s ease-in-out infinite;
}
.strip.list_view.set_card_url {
    display: flex;
    width: 100%;
}
.read-more:after {
	content: "\f106";
	font: normal normal normal 14px / 1 FontAwesome;
	display: inline-block;
	font-weight: 900;
	/*animation: bounce 1s infinite;*/
	margin-left: 4px;
	color: var(--primary);
	font-size: 12px;
}
.for__slider {
    overflow: hidden;
}
.strip.list_view .wrapper {
  padding: 16px;
}
.listing_tags {
    display: flex;;
    padding-left:0;
    flex-wrap: wrap;
}
.strip .list_f_ul a,
.strip .list_f_ul button {
  padding: 7px 15px;
  border-radius: 5px;
  font-weight: 500;
  border: 1px solid transparent;
  display:block;
}
.top_part h2,
.top_part h3 {
  font-size: 24px;
  font-weight: 700;
}
.strip .list_f_ul button {
	border-color: var(--secondary);
}

.strip .list_f_ul button {
    background-color: transparent;
    color: var(--secondary);
}
.strip .list_f_ul button:hover{
    background-color:var(--primary)
    border-color:var(--primary)
    color:#fff;
}
.all_dv .list_view .col-lg-10:not(:last-child) .wrapper {
  padding-bottom: 0;
}

.strip ul:not(.listing_tags) {
  border-top: 1px solid #ededed;
}
.listing_tags li {
  display: inline-flex;
  align-items: center;
}
.strip .stars {
    margin-right: 4px;
}
[data-star] {
    text-align: left;
    font-style: normal;
    display: inline-block;
    position: relative;
    unicode-bidi: bidi-override;
}

[data-star]::before {
	display: block;
	/*content: 'â˜…â˜…â˜…â˜…â˜…';*/
	content: '\2605\2605\2605\2605\2605';
	color: #c7c7c7;
	font-size: 26px;
}

[data-star]::after {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	/*content: 'â˜…â˜…â˜…â˜…â˜…';*/
	content: '\2605\2605\2605\2605\2605';
	width: 0;
	color: #ff8c00;
	overflow: hidden;
	height: 100%;
	font-size: 26px;
}

[data-star^="0.1"]::after {
	width: 2%
}

[data-star^="0.2"]::after {
	width: 4%
}

[data-star^="0.3"]::after {
	width: 6%
}

[data-star^="0.4"]::after {
	width: 8%
}

[data-star^="0.5"]::after {
	width: 10%
}

[data-star^="0.6"]::after {
	width: 12%
}

[data-star^="0.7"]::after {
	width: 14%
}

[data-star^="0.8"]::after {
	width: 16%
}

[data-star^="0.9"]::after {
	width: 18%
}

[data-star^="1"]::after {
	width: 20%
}

[data-star^="1.1"]::after {
	width: 22%
}

[data-star^="1.2"]::after {
	width: 24%
}

[data-star^="1.3"]::after {
	width: 26%
}

[data-star^="1.4"]::after {
	width: 28%
}

[data-star^="1.5"]::after {
	width: 30%
}

[data-star^="1.6"]::after {
	width: 32%
}

[data-star^="1.7"]::after {
	width: 34%
}

[data-star^="1.8"]::after {
	width: 36%
}

[data-star^="1.9"]::after {
	width: 38%
}

[data-star^="2"]::after {
	width: 40%
}

[data-star^="2.1"]::after {
	width: 42%
}

[data-star^="2.2"]::after {
	width: 44%
}

[data-star^="2.3"]::after {
	width: 46%
}

[data-star^="2.4"]::after {
	width: 48%
}

[data-star^="2.5"]::after {
	width: 50%
}

[data-star^="2.6"]::after {
	width: 52%
}

[data-star^="2.7"]::after {
	width: 54%
}

[data-star^="2.8"]::after {
	width: 56%
}

[data-star^="2.9"]::after {
	width: 58%
}

[data-star^="3"]::after {
	width: 60%
}

[data-star^="3.1"]::after {
	width: 62%
}

[data-star^="3.2"]::after {
	width: 64%
}

[data-star^="3.3"]::after {
	width: 66%
}

[data-star^="3.4"]::after {
	width: 68%
}

[data-star^="3.5"]::after {
	width: 70%
}

[data-star^="3.6"]::after {
	width: 72%
}

[data-star^="3.7"]::after {
	width: 74%
}

[data-star^="3.8"]::after {
	width: 76%
}

[data-star^="3.9"]::after {
	width: 78%
}

[data-star^="4"]::after {
	width: 80%
}

[data-star^="4.1"]::after {
	width: 82%
}

[data-star^="4.2"]::after {
	width: 84%
}

[data-star^="4.3"]::after {
	width: 86%
}

[data-star^="4.4"]::after {
	width: 88%
}

[data-star^="4.5"]::after {
	width: 90%
}

[data-star^="4.6"]::after {
	width: 92%
}

[data-star^="4.7"]::after {
	width: 94%
}

[data-star^="4.8"]::after {
	width: 96%
}

[data-star^="4.9"]::after {
	width: 98%
}

[data-star^="5"]::after {
	width: 100%
}
li.tag,
.com_detail_cate h3.tag,
#loadMoreBtn {
  background-color: #f2f2f2;
  padding: 2px 8px;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 14px;
  margin-top: 3px;
  margin-bottom: 3px;
  color: var(--primary)
  line-height: normal;
  font-weight: 400;
}
#loadMoreBtn {
  cursor: pointer;
  background-color: var(--primary)
  color:#fff;
}
.top_part div>img,
.v_level div>img {
	margin-right: 4px;
	width: 18px;
}
.d-flex{
    display:flex;
    
}
.align-item-center{
    align-items:center;
}
.wrapper.top {
    padding-bottom: 0 !important;
}

.wrapper.bottm {
    padding-top: 0 !important;
}
.wrapper.bottm .d-flex {
    align-items: center;
    margin-bottom:7px;
}
ul.listing_tags.listing_tags_nw.mb-2.for__slider {
    margin-bottom: 0;
}
.listing-area h2 {
    margin-bottom: 20px;
    text-align: center;
}
section.about_area.water-leak-detection-update:before {
    left: 0 !important;
}
section.about_area.water-leak-detection-update .about_flex > *{
    flex: unset;
}
section.about_area.water-leak-detection-update .about_flex {
    justify-content: end;
    
}
section.about_area.water-leak-detection-update .about_details {

    max-width: 50%;
}
section.about_area.water-leak-detection-update .about_support_flex {
        left: 21%;
    }
.sidebar-maps.animate_up iframe {
    width: 100%;
}
.row.n_services-one.four-col .col-md-3 {
    margin-bottom: 30px;
}
section.error.error-pages {
    padding: 0 50px 50px;
}
@media screen and (max-width: 1699px) {
       section.about_area.water-leak-detection-update .about_support_flex {
    left: 19%;
} 
}
@media screen and (max-width: 1499px) {
    section.about_area.water-leak-detection-update .about_support_flex {
    left: 11%;
}
}
@media screen and (max-width: 1199px) {
    section.about_area.water-leak-detection-update .about_support_flex {
        left: 8%;
    }
}
@media screen and (min-width: 992px) {
    
        .strip .list_f_ul:not(.list_f_ul2):last-child {
        order: 1;
        margin-right: auto;
    }
    .all_dv .v_level {
    position: absolute;
    top: 19px;
         right: 30px;
        display: flex;
  }
  
  .top_part h2,
	.top_part h3 {
		width: calc(100% - 25%);
	}
    .listing_tags_nw li {
        margin-right: 10px;
    }


  .all_dv .list_view .col-lg-10 {
    width: calc(100% - 16.66666667%);
    margin-left: auto;
  }
      .strip .list-footer {
        justify-content: flex-end;
        align-items: center;
    }
    .site_new_services .cs_service_product_nav:not(.slick-initialized){
    display: grid;
	overflow: hidden;
	grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width:991px){
    .strip.list_view.set_card_url .col-lg-2{
    height:auto;
}
li.list_f_ul.qoute_li.free-quo-btn {
    display: none;
}
.wrapper.bottm  li.tag {
    margin-right: 10px;

}
.listing-area section {
    padding: 0 !important;
}
.listing-area {
    padding: 50px 0;
}
.wrapper.top h3 {
    line-height: 32px !important;
}
.wrapper.top .d-flex.items-center.mb-1 {
    margin: 7px 0;
}
.strip .list-footer {
    flex-wrap: wrap;
}
.strip .list-footer li{
    margin-bottom:5px;
}
.wrapper.bottm .d-flex{
    display:block;
}
.strip.list_view.set_card_url .row {
        width: auto;
    }
    .strip.list_view.set_card_url {
    overflow: hidden;
}
.strip.list_view figure {
    padding: 15px;
}
.mr6 {
    display: flex;
}
.v_level.d-flex.items-center.mb-1 {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
section.about_area.water-leak-detection-update .about_support_flex {
    left: 8%;
}
}
@media (max-width:767px){
    section.about_area.water-leak-detection-update .about_details {
    max-width: 100%;
}
section.about_area.water-leak-detection-update .about_support_flex {
    left: 0%;
}
}






