* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  transition: .3s ease;
}
:root {
  --primary-color: #be1e2d; 
  --secondary-color: #02bef7;
  --header-links-color: #fff;
  --menu-links-color: #000;
  --text-color: #7d8791;
  --sub-title-color: #be1e2d;
  --title-size: 36px;
  --inn-title-size: 20px;
  --inn-title-color: #000;
  --title-color: #000;
  --title-font-family: 'Poppins', sans-serif;
  --sub-title-font-family: 'Poppins', sans-serif;
  --sub-title-size: 14px;
  --text-size: 15px;
  --text-font-family:'Poppins', sans-serif;
  --text-weight: 400;
  --button-text-size: 15px;
  --button-text-color: #fff;
  --button-bg-color: #be1e2d;
  --button-font-family: 'Poppins', sans-serif;
  --button-bg-hover-color: #02bef7;   
  --button-text-hover-color: #fff;
  --sub-title-font-weight: 600;
  --title-font-weight: 600;
  --footer_titles_font_family: 'Poppins', sans-serif;
  --footer_titles_color: #fff;
  
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;

}
img{
	width: 100%;
}
a:hover {
    color: var(--secondary-color);
}
p{
  margin: 0px;
}



.topbar{
	background: var(--primary-color);
	color: var(--header-links-color);
  padding: 6px 0px;
}
.top-bar-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-conts a {
    color: var(--header-links-color);
    font-size: 13px;
    font-weight: 400;
    	margin-left: 10px;
}
.top-conts a:hover{
   color: var(--secondary-color);
}
.top-conts i {
    font-size: 12px;
    font-weight: 600;
    color: var(--header-links-color);
    
}

.top-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-socials a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.top-socials a:hover{
   color: var(--secondary-color);
}
.top-socials i {
    font-size: 13px;
    margin-right: 6px;
}

/* navbar css */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  z-index: 100;
}
.menu-items li a.active {
    color: var(--primary-color);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.3rem;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: var(--primary-color);
}
.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    flex-wrap: nowrap;
}
.menu-items li a {
    font-size: 16px;
    color: var(--menu-links-color);
}
.menu-items li a {
    position: relative;

}

.menu-items li a:after {
    content: '';
    background: var(--primary-color);
    width: 0px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 25px;
    transition: .3s ease;
}
.menu-items li a.active:after, .menu-items li a:hover:after{
  width: 30px;
}
.logo img {
    height: 100% !important;
    width: 178px;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 388px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
    padding-right: 30px;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
}
/* navbar css end */


 /* jssor slider loading skin spin css */
        .jssorl-009-spin img {
            animation-name: jssorl-009-spin;
            animation-duration: 1.6s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes jssorl-009-spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }


        /*jssor slider bullet skin 132 css*/
        .jssorb132 {position:absolute;}
        .jssorb132 .i {position:absolute;cursor:pointer;}
        .jssorb132 .i .b {fill:#fff;fill-opacity:0.8;stroke:#000;stroke-width:1600;stroke-miterlimit:10;stroke-opacity:0.7;}
        .jssorb132 .i:hover .b {fill:#000;fill-opacity:.7;stroke:#fff;stroke-width:2000;stroke-opacity:0.8;}
        .jssorb132 .iav .b {fill:#000;stroke:#fff;stroke-width:2400;fill-opacity:0.8;stroke-opacity:1;}
        .jssorb132 .i.idn {opacity:0.3;}

        .jssora051 {display:block;position:absolute;cursor:pointer;}
        .jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
        .jssora051:hover {opacity:.8;}
        .jssora051.jssora051dn {opacity:.5;}
        .jssora051.jssora051ds {opacity:.3;pointer-events:none;}

/* banner end */

.about_section .row {
    align-items: center;
    justify-content: space-between;
}
.about_section {
    margin: 80px 0px 10px;
}
.sub_ttl  h4 {
    font-size: var(--sub-title-size);
    color: var(--sub-title-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--sub-title-font-family);
    font-weight: var(--sub-title-font-weight);
}
.main_ttl h2 {
    font-size: var(--title-size);
    color: var(--title-color);
    font-family: var(--title-font-family);
    font-weight: var(--title-font-weight);
}
.paras p {
    color: var(--text-color);
    font-size: var(--text-size);
    font-family: var(--text-font-family);
    font-weight: var(--text-weight);
}
.inn_title {
    font-size: var(--inn-title-size);
    color: var(--inn-title-color);
    font-family: var(--title-font-family);
}
.main_btn{
  background: var(--button-bg-color) !important;
  font-size: var(--button-text-size);
  font-family: var(--button-font-family);
  color: var(--button-text-color) !important;
  padding: 11px 30px;
  letter-spacing: 1px;
  position: relative;
  transition: .4s ease;
  border-radius: 0px;
}
.main_btn:hover {
    background: var(--button-bg-hover-color) !important;
    color: var(--button-text-hover-color) !important;

}
.abt_btn_wrapper {
    margin-top: 50px;
}
.titles_wrapper {
    margin-bottom: 20px;
}
.abt_inner_para {
    margin-top: 25px;
}
.mini_banner_section {
    background: url('../images/banner-slide-1.jpg') no-repeat;
    margin: 90px 0px 70px;
    padding: 75px 0px 75px;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.mini_bnr_ttl_wrapper {
    text-align: center;
    color: #fff;
}
.mini_banner_section:before {
    content: '';
    background: #000000c2;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.mini_banner_section .container {
    position: relative;
}
.service_section .row {
    justify-content: space-between;
    align-items: center;
}
.serv_btn_wrapper {
    text-align: right;
}
.ttl_divid {
    height: 4px !important;
    width: 80px;
    background: var(--sub-title-color);
    opacity: 1;
}
.contact_section {
    margin: 20px 0px;
    padding: 50px 0px 50px;
}
.cont_ttl_row {
    margin-bottom: 30px;
}
.cont_det_col {
    margin-top: 25px;
    word-break: break-word;
}
.cont_titles {
    text-align: center;
    position: relative;
}
.cont_ttl:after {
    content: '';
    background: var(--sub-title-color);
    height: 4px;
    width: 80px;
    position: absolute;
    left: 516px;
    top: 89px;
}
.cont_det_wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.cont_icon_wrapper {
    background: var(--primary-color);
    padding: 18px 22px;
    border-radius: 50%;
    margin-right: 20px;
}
.cont_icon_wrapper i {
    color: #fff;
    font-size: 18px;
}
.cont_details h4 {
    font-size: 15px;
}
.cont_details p {
    font-weight: 600;
    font-size: 18px;
}
.cont_form  input, .cont_form  textarea { 
  border: none; 
  padding: 12px 15px; 
  position: relative;
  background: #f2f2f2;
}
.input_icons {
    position: relative;
    left: 321px;
    top: 35px;
    z-index: 1;
}
.input_icons i {
    color: var(--primary-color);
}
.msg_inp_icon {
    left: 703px;
}
.submit_btn input {
    padding: 15px 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.submit_btn {
    margin-top: 20px;
}
.cont_form input::placeholder, .cont_form textarea::placeholder {
    font-size: 15px;
    letter-spacing: 1px;
}
.testimonial_section {
    background: #f7f7f7;
    margin-top: 60px;
    padding: 50px 0px 50px;
}
.testi_titles {
    text-align: center;
    position: relative;
}
.testi_ttl:after {
    content: '';
    background: var(--sub-title-color);
    height: 4px;
    width: 80px;
    position: absolute;
    left: 516px;
    top: 89px;
}

.testi_ttl_row {
    margin-bottom: 60px;
}
.buttons_group {
    text-align: center;
    margin-top: 30px;
}
.bnr_cont_btn {
    margin-right: 10px;
}
.bnr_call_btn {
    background: none !important;
    border: 2px solid var(--button-bg-color) !important;
    outline: var(--button-bg-color) !important;
}
.bnr_call_btn:hover{
  background: var(--button-bg-color) !important;
}
.bnr_call_btn i {
    margin-right: 10px;
}
.mini_bnr_ttl_wrapper h2 {
    font-size: 40px;
    line-height: 55px;
}
.step_col {
    text-align: center;
    position: relative;
    word-break: break-word;
}
.step_col:not(:last-child):after {
    content: '';
    border-bottom: 2px dashed #e7e7e7;
    width: 240px;
    height: 5px;
    position: absolute;
    top: 56px;
    left: 240px;
    border-radius: 50%;
}

.step_icon_wrapper i {
    font-size: 60px;
    color: var(--primary-color);
}
.step_icon_wrapper {
    margin-bottom: 40px;
}
.step_text p, .step_text p a {
    color: #000;
    font-weight: 600;
    font-size: 20px;
}
.step_text p a:hover{
    color: var(--primary-color);
}
.steps_row {
    margin-top: 100px;
}

/* testimonial carousel */

.testimonial{
    padding: 20px 20px 20px 90px;
    margin: 10px 20px 50px 55px;
    border-left: 2px solid #ae483a;
    position: relative;
}
.testimonial:after{
    content: "";
    border-bottom: 25px solid #ae483a;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    position: absolute;
    bottom: -24px;
    left: -26px;
}
.testimonial .pic{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #ae483a;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -50px;
}
.testimonial .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial .title{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 7px 0;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ae483a;
    text-transform: capitalize;
}
.testimonial .description{
    font-size: 15px;
    color: #222;
    line-height: 28px;
}
.owl-theme .owl-controls{ margin-top: 10px; }
.owl-theme .owl-controls .owl-page span{
    width: 35px;
    height: 15px;
    border-radius: 0;
    background: #71334a;
    opacity: 0.8;
    transition: all 0.3s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ae483a;
}
@media only screen and (max-width: 479px){
    .testimonial{
        padding: 20px 0 20px 60px;
        margin: 10px 20px 50px 50px;
    }
    .testimonial .title{ font-size: 20px; }
}
.step_text span {
    font-size: 16px;
}


/* footer css */
.recent_blogs a {
    color: #fff;
    font-size: 14px;
}
.recent_blogs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.recent_blogs li {
    margin-bottom: 15px;
}
.main_footer {
    background: #222;
    padding: 30px 0px 40px;
}
.copyright_section {
    background: #000;
    text-align: center;
    padding: 20px 0px;
}
.copy_text {
    color: #ffffffe6;
    margin-bottom: 0px;
    font-size: 14px;
}
.ft_abt_text {
    color: #ffffffe6;
    font-size: 14px;
    line-height: 26px;
    word-spacing: 1px;
    margin-top: 12px;
}
.footer_titles {
    margin-bottom: 20px;
}
.footer_titles h3 {
    color: var(--footer_titles_color);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--footer_titles_font_family);
    letter-spacing: 1px;
}

.quick_links li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 35px;
}
.quick_links li a:hover {
    color: var(--primary-color);
}
.footer_links_col {
    margin-top: 30px;
    word-break: break-word;
}
.footer_logo img {
    width: 230px;
}
.quick_links li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 13px;
}
.foot_cont_ul li i {
    color: var(--primary-color);
    font-size: 17px;
    margin-right: 10px;
}
.foot_cont_ul li span {
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 25px;
}
.foot_cont_ul li {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}
.footer-socials {
    display: flex;
    /*justify-content: space-evenly;*/
    margin-top: 40px;
}
.footer-socials li a {
    color: #fff;
    font-size: 14px;
}
.footer-socials li i {
    color: #fff;
    background: #000;
    padding: 10px 15px;
    box-shadow: 1px 1px 3px 0px #000;
    margin-right: 8px;
}
.footer-socials li a:hover, .footer-socials li a:hover i {
    color: var(--primary-color);
}
.recent_reviews li {
    margin-bottom: 10px;
    position: relative;
}
.rating {
    color: #e8ae0f;
    font-size: 10px;
    padding: 0;
    margin-top: 3px;
}

.recent_reviews li p {
    font-size: 12px;
    color: #fff;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.recent_reviews li h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

/* footer css end */


/*Contact page*/

.page_banner {
    background: url('../images/banner-slide-3.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 120px 0px 110px;
    position: relative;
}
.page_banner:before {
    content: '';
    background: #0000008f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.banner_content_wrapper {
    text-align: center;
    position: relative;
}
.banner_ttl {
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 600;
}
.breadcrumb {
    justify-content: center;
}
.breadcrumb-item.active {
    color: #cfcfcf;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-item:not(.active) a {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb-item:not(.active) a:hover {
    color: var(--primary-color);
}
.locations_wrapper {
    display: flex;
    flex-wrap: wrap;
}
.single_location {
    margin-bottom: 20px;
}
.location_col_ttl {
    margin-bottom: 35px;
}
.find_location_section {
    background: url('../images/banner-slide-1.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 0px 40px;
    margin-bottom: 10px;
    position: relative;
}
.find_location_section:before {
    content: '';
    background: #000000c9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.find_location_col {
    position: relative;
    animation: 2s 1 fadeIn;
    animation-fill-mode: forwards;
}

.location_col_ttl h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}
.location_title h4 {
    color: #fff;
    font-size: 18px;
}
.location_number a {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
}
.location_number a:hover{
    color: var(--secondary-color);
    text-decoration: underline;
}
.cont_form_col{
    animation: 2s 1 fadeInRight;
}
.cont_det_col{
    animation: 2s 1 fadeInLeft;
}
.titles_wrapper{
     animation: 4s 1 fadeIn;
     animation-fill-mode: forwards;
}
.what_exp_sec {
    margin-top: 0px;
    background: transparent;
}
.testimonial_cat_ttl h3 {
    font-size: 22px;
}
.testimonial_cat_ttl {
    margin-bottom: 30px;
}
.color_back_testi {
    /*background: url('../images/bg_01.jpg') no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center center;  #fffafa*/
    background: #f7f7f7; 
    padding: 50px 25px;
    margin: 60px 0px;
}
.testi_pg_cta_sec {
    margin: 0px 0px 10px;
}
.breadcrumb {
    background: transparent;
}
.req_appoint_sec {
    padding: 50px 0px 50px;
}
.repair_titles {
    text-align: center;
}

.note_ttl_wrapper h2 {
    font-size: 23px;
}
.note_ttl_wrapper {
    margin-top: 50px;
}
.brands_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.single_brand {
    margin-bottom: 40px;
}
.appoint_form_col {
    margin-top: 50px;
}
.out_of_war_hd {
    font-size: 25px;
}
#progressbar li.active:before, #progressbar li.active:after{
    background: var(--primary-color) !important;
}
#msform {
  text-align: center;
  position: relative;
  margin-top: 40px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.form-card {
  text-align: left;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  background-color: #eceff1;
  font-size: 16px;
  letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673ab7;
  outline-width: 0;
}
#msform .action-button:hover, #msform .action-button:focus {
    background-color: var(--secondary-color) !important;
}

#msform .action-button {
  width: auto;
  background: var(--primary-color);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 30px;
  margin: 10px 0px 10px 5px;
  float: right;
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #311b92;
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000;
}

.card {
  z-index: 0;
  border: none;
  position: relative;
}

.fs-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.purple-text {
  color: var(--primary-color);
  font-weight: normal;
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.fieldlabels {
  color: #000;
  text-align: left;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  display: flex;
  justify-content: center;
}

#progressbar .active {
  color: var(--primary-color);
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

#progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e";
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030";
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #673ab7;
}

.progress {
  height: 20px;
}

.progress-bar {
  background-color: var(--primary-color);
}

.fit-image {
  width: 100%;
  object-fit: cover;
}
.main_content {
    padding: 50px 0px 70px;
}
.ttl_para p {
    font-size: 14px;
}
.ttl_para p span {
    color: var(--primary-color);
    font-weight: 500;
}
.ttl_para {
    margin-top: 17px;
}
.coupon_row {
    margin-top: 30px;
}
.coupon_main_ttl {
    margin-bottom: 20px;
}
.cp_extra_para {
    margin-bottom: 30px;
}
.limit_para {
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;
}
.coupon_ttl h3 {
    font-size: 17px;
    color: var(--primary-color);
}
.coupon_main_ttl h2 span {
    color: var(--primary-color);
}
.appliance_no {
    font-size: 14px;
}
.coupon-img-col{
    animation: 2s 1 fadeInLeft;
}
.coupon-text-col {
    animation: 2s 1 fadeInRight;
}
.prv_head_sec {
    padding: 50px 0px 40px;
}
.prv_col_wrapper {
    margin-bottom: 30px;
}
.prv_ttl h3 {
    font-size: 20px;
}
.prv_ttl_para p {
    margin-bottom: 15px;
    font-size: 14px;
}
.prv_content_sec {
    padding: 10px 0px 40px;
}

.privacy_titles {
    text-align: center;
}
    



/* animations */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
  }
}


/*Responsive Queries*/

/** Mobile Responsive **/
@media only screen and (max-width: 767px){

  body{
    overflow-x: hidden;
  }
  .logo {
    top: -8px;
    height: 80px;
}
  
  .abt_titles {
    margin-top: 40px;
} 
  .mini_bnr_ttl_wrapper h2 {
    font-size: 32px;
    line-height: 47px;
}
  .bnr_call_btn {
    margin-top: 25px;
}
  .serv_btn_wrapper {
    text-align: left;
    margin-top: 20px;
}
  .step_col:not(:last-child):after {
    transform: rotate(90deg);
    left: 132px;
    width: 106px;
    top: 200px;
}
.step_col:not(:last-child) {
    margin-bottom: 160px;
}
  .main_banner text {
    font-size: 70px !important;
}
  svg.box_svg {
      left: -96px !important;
}
  svg.big_hd_svg {
    left: -900px !important;
    width: 400px;
}
  svg.sm_hd_svg {
    left: 800px !important;
    width: 400px;
}
svg.sm_hd_svg {
    left: 1353px !important;
    width: 250px;
} 
  div#jssor_1 {
    height: 450px !important;
}
.testi_ttl:after {
    left: 134px;
    top: 130px;
}
.cont_ttl:after{
    left: 134px;
    top: 130px;
}
.msg_inp_icon {
    left: 321px;
}
.locations_wrapper .col-md-3 {
    width: 50%;
}
.location_number a {
    font-weight: 700;
}
.row.coupon_row {
    flex-direction: column-reverse;
}
.coupon-text-col {
     margin-bottom: 20px; 
}
.main_content {
    padding-bottom: 30px;
}

}



/** Ipad Responsive **/
@media (max-width: 991px) and (min-width: 768px){

  .step_col:not(:last-child):after {
    left: 163px;
    width: 110px;
}
  .cont_det_col, .cont_form_col {
    width: 100% !important;
}
  .input_icons {
    left: 300px;
}
  .msg_inp_icon {
    left: 660px;
}
  .cont_ttl:after {
    left: 300px;
}
  .main_footer .col-md-3 {
    width: 50%;
}
  .logo {
    top: -8px;
    height: 80px;
}
.navbar .menu-items {
    padding-top: 570px;
}
  

}

