:root {
  --prime: #19174A;
  --prime-red: #a11d21;
  --btn-color: #f12029;
  --btn-color-hover: #c3161f;
  --secondary: #39368d;
  --colorback: #2b85b5;
  --lightBack: #f7f7f7;
  --fontLight: #3e4d59;
  --fontDark: #171b23;
  --text-heading: #39368d;
}

* {
  box-sizing: border-box;
  outline: none;
}
body {
  width: 100%;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  color: var(--fontDark);
}
a {
  text-decoration: none;
  color: inherit;
}
.none {
  display: none;
}
.loader {
  display: none;
}
.err {
  border-bottom: 1px red solid !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  color: var(--fontDark);
}
h4 {
  font-size: 20px;
  padding-bottom: 10px;
  text-align: center;
  color: var(--fontDark);
}

h5 {
  color: #1e2b4b;
}

h2{
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.under-highlight-test{
    background-image: linear-gradient(180deg, white 46%, #f0e4f7 46%, #f0e4f7 100%);
    padding-bottom: 3px;
}

ul {
  padding: 0;
  list-style: none;
}
p {
  padding: 0px;
  margin: 0px;
  font-size: 15px;
  line-height: 21px;
  color: #0a0a0a;
  font-family: "Montserrat", sans-serif;
}
li {
  font-family: "Montserrat", sans-serif;
}
.pb-10 {
  padding-bottom: 10px;
}
.py-50 {
  padding: 50px 0;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px !important;
}
.clearfix {
  clear: both;
}
.text-center {
  text-align: center !important;
}
.btn-common {
  width: fit-content;
  border-radius: 5px;
  /* background: #265FB4; */
  background: #004eb3;
  border: 1px solid #004eb3;
  color: white;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 12px 26px;
  transition: all 0.3s ease;
  display: block;
  justify-content: center;
  align-items: center;
}
.btn-common:hover {
  background-color: #000000;
  border-color: #000;
}

.btn-emerg{
    background-color: #df3e3f;
    border: 1px solid #df3e3f;
}

.btn-common.btn-light{
    background-color: #000000;
    border: 1px solid #000000;
    color: white;
}
.btn-common.btn-light:hover{
    background: #000000;
    border: 1px solid #000000;
}
.btn-common.btn-border{
    /* border: 1px solid #000000; */
    /* background: #004eb3; */
    border: 1px solid #df3e3f;
    background: #df3e3f;
    color: white;
    padding: 12px 17px;
}
.btn-common.btn-border:hover{
    background: #000000;
    border: 1px solid #000000;
}
.subheading {
    width: 60%;
    margin: 0px auto 20px;
    font-size: 14px;
    text-align: center;
    line-height: 21px;
}
.back-color{
  background-color: #f2f4f5;
}
.container {
  margin: 0px auto;
  width: 1240px;
  max-width: 100%;
}

.flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.elem-center{
    margin: 0 auto;
}

.background-dark{
  background: #004eb3;
}
.background-dark h2,
.background-dark p,
.background-dark ul li{
  color: white;
}

.lightback{
  background: #ffffff;
}

/* Header */
.header {
  padding: 10px 0;
  position: sticky;
  width: 100%;
  z-index: 1000;
  top: 0px;
  background: transparent;
  transition: 300ms ease-in-out;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.12);
  background: white;
}
/* .header.float {
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.12);
    padding: 0;
    background: white;
} */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  float: left;
  line-height: 0px;
  width: 80px;
  /* width: 310px; */
  color: #0a0a0a;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
}
.header .logo-text{
    font-size: 40px;
    font-weight: 500;
    color: #004eb3;
    margin-left: 10px;
    font-family: "Roboto Slab", sans-serif;

}
.header .logo .img1 {
  width: 30%;
}
.header .logo .img2 {
  width: 100%;
  /* max-width: 100px; */
}
.header .nav {
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 42%;
  /* margin-top: 7px; */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}
.header .nav ul {
  margin: 0px;
  padding-left: 0;
}
.header .nav ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0px 5px;
}
.header .nav ul:hover li {
  opacity: 0.5;
}
.header .nav ul:hover li:hover {
  opacity: 1;
}
.header .nav ul li a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
}
.header .right-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.header .rightside {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  border-radius: 5px;
  background-color: #004eb3;
  border: 1px solid #004eb3;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .rightside:hover {
  color: #004eb3;
  background: white;
}
.header .border-rightside {
  border: 1px solid #000000;
  background: #000000;
  color: white;
  padding: 10px 14px;
  font-size: 17px;
  display: inline-block;
  font-weight: 500;
  transition: 300ms ease;
  border-radius: 5px;
}
.header .border-rightside:hover {
  background: #004eb3;
  color: var(--fontDark);
}
.header .rightside img {
  width: 120px;
  padding-left: 20px;
  margin-top: -12px;
}
.header .rightside .picon {
  /* background-image: url("../images/phone-form-header.svg");
  background-repeat: no-repeat;
  background-position: 16px 7px; */
  /* background-size: 20px; */
  padding: 7px 20px;
  /* float: left; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
  display: block;
  font-weight: 500;
}
.header .rightside .micon {
  background-image: url("../images/mail-form-header.svg");
  background-repeat: no-repeat;
  background-position: 10px;
  padding-left: 30px;
  background-size: 20px;
  float: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
}
/* Header Ends */

/* Banner Starts */
/* banner */

  .banner {
    position: relative;
    overflow: hidden;
    /* background-image: linear-gradient(0deg, #05131d40, #000000a8), url(../images/banner.jpg); */
    background-image: url('../images/banner1.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    /* background-position: right; */
    background-size: cover;
    padding: 0 0 40px 0;
    /* background-color: #d3f2e9; */
  }
  
  .banner .container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4%;
    justify-content: space-between;
  }
  .banner .halfleft{
    width: 55%;
    box-sizing: border-box;
  }
  .banner .halfleft .innerWrap{
    padding-top: 0;
    width: 100%;
  }
  .banner .halfright{
    width: 38%;
    border-radius: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 23px;
    position: relative;
  }
  
  .banner .halfright img{
    object-fit: cover;
    border-radius: 30px;
    display: block;
    position: absolute;
    left: calc(50% - 15px);
  }
  .banner .halfright img.first-img{
    width: 80%;
    max-height: 420px;
    top: 0;
    right: 0;
  }
  .banner .halfright img.second-img{
    width: 62%;
    max-height: 380px;
    left: 0;
    bottom: 0;
  }
  
  .banner .banner-highlights {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px !important;
  }
  .banner .innerWrap .information-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
  }
  .banner .innerWrap .information-wrapper .content-wraps {
    width: 32%;
  }
  .banner .innerWrap .information-wrapper .content-wraps img {
    display: block;
    width: fit-content;
    height: 23px;
    margin: 0 auto;
  }
  .banner .innerWrap .information-wrapper .content-wraps p {
    text-align: center;
    font-size: 16px;
  }
  .banner .mainbanner::after {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    content: "";
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .banner .formwrp .d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
  }
  .banner .formwrp .d-flex .formgroup {
    width: 48%;
  }
  /* .banner_box{
      background: #181818; 
      padding: 20px; 
      border-radius: 10px;
  } */
  .banner_box .banner_p {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 0;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
  }

  .banner .banner-logo {
    background: white;
    padding: 10px;
    width: fit-content;
    margin: 0 0 15px 0;
  }
  
  .banner .banner-logo img {
    width: 175px;
}
.halfleft .innerWrap ul {
    list-style: none;
    padding: 0 0 0 16px;
  }
  .halfleft .innerWrap ul li {
    color: white;
    position: relative;
    margin-bottom: 10px;
  }
  .halfleft .innerWrap ul li::before {
    content: "";
    /* background-image: url(); */
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .messg {
    width: 64.8% !important;
  }
  .main-form2 .submitbtn input {
    font-size: 18px;
    background-color: #fff;
    color: #181818;
    border-radius: 15px;
    border: 0px;
    padding: 15px 30px;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    -webkit-appearance: none;
  }
  .main-form2 .submitbtn {
    margin: 0px 5px;
    display: block;
    width: 19%;
  }
  .main-form2 .formgroup select option {
    color: #ffffff;
  }
  .formgroupboxwrp {
    width: 78%;
    margin-right: 2%;
  }
  .formwrp {
    background-color: #fff;
    width: 100%;
    /* width: 580px; */
    border-radius: 20px;
    padding-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  }

  
.formwrp p {
    color: #ffffff !important;
    font-size: 15px !important;
    margin-bottom: 0px !important;
    text-align: center;
    margin-top: 0px;
    /* padding: 0 14px; */
  }
  
  .formwrp p a {
    color: #006abf;
    font-weight: 600;
  }
  
  .formwrp h2 {
    font-weight: 600;
    color: #1c1c1c;
    text-align: left;
    padding: 20px 25px 10px;
    font-size: 26px;
    line-height: 29px;
  }
  .formwrp h2 span {
    /* font-weight: 600; */
    background: #abbe26;
    padding: 0 6px;
    border-radius: 4px;
  }
  
  .formwrp form {
    padding: 10px 25px 10px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* row-gap: 10px; */
  }
  
  .locationzz {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 15px 25px;
    color: #ffffff;
    width: fit-content;
    align-items: center;
    display: flex;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .locationzz img {
    margin-right: 5px;
  }
  
  .halfleft {
    width: 58%;
    margin-right: 0%;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
  }
  
  .halfleft p {
    margin: 5px auto;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
  }

  
  .banner .rating-brands {
    background-color: white;
    box-shadow: 0 0 20px 0 #8080804d;
    width: fit-content;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: fit-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
  }
  .banner .rating-brands img.google-logo{
    width: 38px;
  }
  .banner .rating-brands .rating-logos{
    padding-left: 10px;
    border-left: 1px solid #cfcfcf;
  }
  .banner .rating-brands img.rating-starts {
    width: 115px;
    display: block;
    margin: 10px auto;
  }
  .banner .rating-brands .rating-logos {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 8px;
  }
  .banner .rating-brands .rating-logos .rating-value{
    font-size: 43px;
    line-height: 43px;
    font-weight: 500;
    margin: 0;
    color: #636363;
  }
  .banner .rating-brands .rating-logos img {
    width: 140px;
    margin: 0;
    display: block;
  }
  .banner .rating-brands .box-wrap p {
    font-size: 13px;
    text-align: center;
    margin: 0 !important;
  }

  .banner .offer-banner{
    /* background-color: #df3e3f; */
    background-color: white;
    box-shadow: 0 0 20px 0px #8c8c8c40;
    border-radius: 50px;
    padding: 0 20px 0 0px;
    margin-top: 70px;
    margin-bottom: 20px;
    width: fit-content;
  }
  .banner .offer-banner img{
    width: 270px;
    display: block;
  }
  .banner .offer-banner .content-wrapper p{
    color: white;
    margin: 0;
  }
  .banner .offer-banner .top-layer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 2px;
  }
  .banner .offer-banner .top-layer p.large-font{
    font-size: 54px;
    line-height: 54px;
    font-weight: 700;
    margin-right: 4px;
  }
  .banner .offer-banner .small-contents p.mid-font{
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }
  .banner .offer-banner .small-contents p.small-font{
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
  }
  .banner .offer-banner .second-layer{
    font-size: 18px;
    font-weight: 600;
  }
  .banner .offer-banner .content-wrapper .simple-content{
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #151a19;
    display: flex;
    align-items: center;
  }
  .banner .offer-banner .content-wrapper .color-chip{
    background-color: #df3e3f;
    border-radius: 32px;
    padding: 14px;
    font-size: 30px !important;
    line-height: 30px;
    font-weight: 600;
    color: white;
    margin-right: 12px;
  }
  
  .banner .halfleft .main-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .banner .formgroup {
    padding: 0px 0 0px 0;
    /* border: 1px solid #ebebeb; */
    width: 100%;
    margin-bottom: 10px;
    border-radius: 7px;
  }
  .banner .formgroup textarea{
    height: 80px;
  }
  .banner .formgroup.halffield{
    width: 48%;
  }
  .banner .submitbtn .btn-common{
    font-size: 16px;
  }
  .banner-form .formgroup.halffield{
    width: 20.8%;
  }
  
  select.placeholder-shown {
    color: #9e9e9e;
  }
  select.placeholder-hidden {
    color: #ffffff;
  }
  
  .banner-form .formgroup ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9e9e9e;
    opacity: 1;
    /* Firefox */
  }
  
  .banner-form .formgroup :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9e9e9e;
  }
  
  .banner-form .formgroup ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #9e9e9e;
  }
  
  .banner-form .formgroup label {
    font-size: 14px;
    display: block;
    padding: 10px 0 6px 0;
    margin-bottom: 0px;
    font-weight: 500;
  }
  
  .banner-form .formgroup label span {
    color: #f00;
  }
  
  .banner-form .formgroup.textaea {
    width: 98%;
  }
  
  .banner-form .formgroup input,
  .banner-form .formgroup select,
  .banner-form .formgroup textarea {
    font-size: 14px;
    /* text-indent: 0.8rem; */
    padding: 10px 14px;
    outline: none;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 7px;
    -webkit-transition: border-color 0.15s;
    -o-transition: border-color 0.15s;
    transition: border-color 0.15s;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
    display: block;
  }
  
  .banner-form .formgroup input option,
  .banner-form .formgroup select option,
  .banner-form .formgroup textarea option {
    color: #ffffff;
  }
  
  .banner-form .submitbtn input {
    box-sizing: border-box;
    width: fit-content;
    font-size: 17px;
    font-weight: 600;
    background-color: #284A9F;
    color: #fff;
    border: 0px;
    border-radius: 7px;
    padding: 10px 22px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 300ms ease-in-out;
  }
  
  .formwrp p.form-buttom-text {
    margin-top: 15px;
    color: white;
  }
  
  .banner-form .submitbtn input:hover {
    background-color: #000;
    color: #fff;
  }
  
  .banner-form .main-form .submitbtn {
    display: flex;
    flex-direction: column;
    margin: auto 0 0 0;
  }
  
  .halfleft h1 {
    font-size: 50px;
    color: #171b23;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .halfleft .innerWrap p {
    color: #151a19;
    line-height: 24px;
    margin-top: 16px;
  }
  .halfleft .innerWrap h3{
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    width: fit-content;
    background: #004eb3;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 13px 0 0 0;
  }
  .halfleft .innerWrap p .highlight {
    background: #ffc403;
    padding: 0 6px;
    color: #181818;
    font-weight: 600;
  }
  .halfleft .cta-holder {
    margin-top: 20px;
  }
  .halfleft .cta-holder .btn-anim {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 30px 15px 30px;
    border-radius: 3px;
    color: #fff;
    font-size: 22px;
    font-weight: 100;
    /* float: left; */
    /* top: 80px; */
    /* background-color: #181818; */
    background-color: #abbe26;
    position: relative;
    transition: 300ms ease-in-out;
    overflow: hidden;
  }
  .btn-anim p:nth-child(1) {
    font-weight: 500;
    line-height: 1.5;
  }
  .btn-anim p:nth-child(2) {
    font-size: 14px;
  }
  .halfleft .cta-holder .btn-anim:hover {
    /* background-color: #113157; */
    background-color: #374b01;
  }
  .bannerlisting {
    /*	display: flex;
      flex-wrap: wrap;*/
    margin: 20px 0 0 0;
    padding: 0px;
    list-style: none;
  }
  
  .bannerlisting li {
    /*	display: flex;
      flex-wrap: wrap;*/
    /*	width: 50%;*/
    margin-bottom: 20px;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
  }
  
  .bannerlisting li i {
    padding-right: 10px;
  }
  
  .bannerlisting li img {
    width: 50px;
    margin-right: 10px;
  }

  .banner .hero-review {
    border-color: hsla(0, 0%, 100%, .6);
    border-top-width: 1px;
    display: flex;
    flex-direction: row;
    min-height: 82px;
    padding-top: 15px;
    color: #fff;
    border-top: 1px solid hsla(0, 0%, 100%, .6);
}

.banner .hero-review .customer-wrap {
    align-items: center;
    display: flex
;
    flex-direction: row;
    gap: 14px;
}

.banner .hero-review .customer-wrap .customer-images {
    display: flex
;
}
.banner .hero-review .customer-wrap .customer-images img:first-child {
    margin-left: 0;
    z-index: 3;
}

.banner .hero-review .customer-wrap .customer-images img {
    border-radius: 9999px;
    height: 55px;
    margin-left: -20px;
    width: 55px;
    z-index: 2;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 3px;
}
.banner .banner-wrap.wysiwyg img {
    margin-bottom: 0;
}

.wysiwyg img {
    height: revert-layer;
    margin-bottom: 1rem;
}
.banner .hero-review .customer-wrap .customer-images img:last-child {
    z-index: 1;
}
.banner .hero-review .customer-wrap .customer-data {
    display: flex
;
    flex-direction: column;
}

.banner .hero-review .hero-review-heading {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2rem;
}

.banner .hero-review .hero-review-text {
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
    line-height: 18px;
}

.banner .hero-review .rating-wrap {
    border-left: 1px solid hsla(0, 0%, 100%, .6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    padding-left: 15px;
}

.banner .hero-review .hero-review-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 2rem;
}
.banner .hero-review .rating-wrap .hero-rating {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.banner .hero-review .rating-wrap .rating {
    column-gap: 3px;
}
.rating {
    display: flex;
    column-gap: 3px;
}

.banner .hero-review .hero-review-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1rem;
    line-height: 18px;
}
.banner .hero-review .rating-wrap .rating .star {
    font-size: 14px;
}
.rating .star.full {
    color: #f5c200;
    font-size: 14px;
}
.rating .star {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.5rem;
    position: relative;
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity));
}


/* banner-form */
.banner-form{
  margin-bottom: 50px;
}
.banner-form .container{
    margin-top: -60px;
    position: relative;
}

.banner-form .formgroup textarea{
    height: 39px;
    resize: none;
    overflow: hidden;
}
/* Banner Ends */

/* Hightlights Sec */
.points-hightlight-sec{
  margin-top: -70px;
  position: relative;
  z-index: 1;
}
.points-hightlight-sec .pointslisting{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.12);
}
.points-hightlight-sec .pointslisting li img{
  width: 100px;
  display: block;
}
/* Hightlights Sec Ends */

/* 24-Hour Emergency Repair Service */
.major-add{
  padding: 20px 0;
  background: #004eb3;
}
.major-add h2 {
  font-size: 34px;
  font-weight: 500;
  color: white;
  margin: 0;
}

/* 24-Hour Emergency Repair Service */

/* Why choose Us */
.sec-4boxicons {
	padding: 50px 0;
}
.sec-4boxicons ul {
	list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.sec-4boxicons ul li {
  width: calc(33.33% - 26px);
	margin: 0px 0.5% 20px;
	text-align: center;
	padding: 10px 10px 20px;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgb(137 137 137 / 10%);
  border: 1px solid rgba(11, 11, 76, 0.168);
}
.sec-4boxicons ul li h6 {
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	color: #1e2b4b;
	margin: 10px 0;.sec-4boxicons ul li img
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position: relative;
	z-index:  999;
}
.sec-4boxicons ul li p {
	font-size: 14px;
    color: #7e7e7e;
    line-height: 21px;
    position: relative;
    z-index:  999;
    -webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.sec-4boxicons ul li:before {
	background-color: #004eb3;
	width: 100%;
	height: 5px;
	display: block;
	z-index: 1;
	content: "";
	bottom: 0px;
	left: 0px;
	position: absolute;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.sec-4boxicons ul li:hover:before {
	height: 100%;
} 
.sec-4boxicons ul li:hover h6,
.sec-4boxicons ul li:hover p {
	color: #fff;
}
.sec-4boxicons ul li img {
	display: block;
	width:100%;
	position: relative;
	z-index: 99;
  border-radius: 5px;
}

.sec-4boxicons .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
}
.sec-4boxicons .flex_box .content_img_div {
  /* width: 48%; */
  width: calc(33.33% - 40px);
  text-align: center;
}
.sec-4boxicons .flex_box .content_img_div .img_box {
  position: relative;
  margin-bottom: 40px;
}
.sec-4boxicons .flex_box .content_img_div .img_box img {
  width: 100%;
  max-height: 315px;
  object-fit: cover;
  object-position: center;
}
.sec-4boxicons .flex_box .content_img_div .img_box .title_div {
  position: absolute;
  background: white;
  width: 85%;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 32px 19px, rgba(0, 0, 0, 0.03) 0px 14px 14px, rgba(0, 0, 0, 0.03) 0px 4px 8px, rgba(0, 0, 0, 0.03) 0px 0px 0px;
  padding: 15px;
}
.sec-4boxicons .flex_box .content_img_div .img_box .title_div h3 {
  font-size: 20px;
  font-weight: 500;
  color: black;
}
.sec-4boxicons .flex_box .content_img_div > p {
  font-size: 16px;
}
/* Why choose Us Ends */

/* Steps Sec Starts */
.steps-section{
  padding: 50px 0;
}
/* Steps Sec Ends */

/* CTA Sec */
.cta-sec {
  padding: 50px 0 0 0;
  /* background: var(--grayBack); */
}

.cta-sec .container{
  position: relative;
  z-index: 1;
  padding: 50px 0;
  background-position: left;
  background-image: linear-gradient(160deg, #265fb4 0%, #000000 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 40px 192px;
  border-radius: 20px;
  overflow: hidden;
}
.cta-sec .container::after{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/halftone-background-abstract-black.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  opacity: 0.02;
}

.cta-sec.main-sec h2{
  color: white;
  line-height: 38px;
}
/* .cta-sec.main-sec h2 .large-text{
  font-size: 34px;
  font-weight: 600;
} */

.cta-sec .sec-wrapper{
  position: relative;
  z-index: 1;
}

.cta-sec .sec-wrapper .bts-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
}

.cta-sec .sec-wrapper .sec-dec{
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 26px;
}

.cta-sec h2 {
  font-size: 32px;
  font-weight: 600;
}
.cta-sec h2 span{
  font-weight: 700;
}
.cta-sec .sec-wrapper .btn-common{
  background-color: white;
  border: 1px solid white;
  color: #171b23;
}
.cta-sec .sec-wrapper .btn-common:hover{
  background: #000000;
    border: 1px solid #000000;
    color: white;
}

/* .cta-sec .sec-wrapper .btn-common:hover{
} */

.cta-sec .sec-wrapper .btn-border{
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.cta-sec .sec-wrapper .btn-border:hover{
  background-color: white;
  color: #171b23;
}

.cta-sec .sec-wrapper .flex-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cta-sec .sec-wrapper .flex-cards .card-wrapper{
  width: 31.8%;
  border-radius: 14px;
  background-color: #ffffff23;
  border: 1px solid #ffffff32;
  padding: 18px;
  text-align: center;
  color: white;
}
.cta-sec .sec-wrapper .flex-cards .card-wrapper .card-title{
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  line-height: 24px;
  margin-bottom: 6px;
}
.cta-sec .sec-wrapper .flex-cards .card-wrapper .card-dec{
  color: white;
  font-size: 14px;
}
.cta-sec .sec-wrapper .flex-cards .card-wrapper .icon-wrap{
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  /* background-color: #0b3163; */
  /* padding: 14px; */
}
.cta-sec .sec-wrapper .flex-cards .card-wrapper .icon-wrap img{
  width: 100%;
}

/* CTA Sec Ends */


/* 4 Icons */

.how-it-works h2{
  margin-bottom: 25px;
}

.sec-4boxicons {
	padding: 50px 0;
}
.sec-4boxicons h2{
  font-size: 32px;
  font-weight: 600;
}
.sec-4boxicons h2 .accent-head{
  color: #284A9F;
}
.sec-4boxicons .tech_ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sec-4boxicons ul {
	list-style: none;
	padding-left: 0;
	margin-top: 8px;
}

.sec-4boxicons .work_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.sec-4boxicons .work_flex .img1 {
    position: absolute;
    right: 61%;
    width: 11%;
    top: 12%;
}
.sec-4boxicons .work_flex .img2 {
  position: absolute;
  right: 28%;
  width: 11%;
  top: 86%;
}
.sec-4boxicons .work_flex .img3 {
    position: absolute;
    right: 19%;
    width: 11%;
    top: 22%;
}
.sec-4boxicons .work_flex .item1 {
    width: 31%;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 20px;
}
.sec-4boxicons .work_flex .item1.highlight{
  background-image: linear-gradient(160deg, #27569b 0%, #0b2855 100%);
}
.sec-4boxicons .work_flex .item1.highlight::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 32%;
    height: 100%;
    background-image: url(../images/halftone-background-abstract-black.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
    opacity: 0.02;
}
.sec-4boxicons .work_flex .item1.highlight .icon,
.sec-4boxicons .work_flex .item1.highlight .content{
  position: relative;
  z-index: 1;
}
.sec-4boxicons .work_flex .item1.highlight h2,
.sec-4boxicons .work_flex .item1.highlight p{
  color: white;
}
.sec-4boxicons .work_flex .item1.highlight .btn-common{
  background-color: white;
  border: 1px solid white;
  color: #171b23;
  margin: 20px auto 0 auto;
}
.sec-4boxicons .work_flex .item1.highlight .btn-common:hover{
  background: #000000;
    border: 1px solid #000000;
    color: white;
}
.sec-4boxicons .work_flex .item1 .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.sec-4boxicons .work_flex .item1.highlight .icon .icon_div{
  background-color: white;
}
.sec-4boxicons .item1.highlight .icon_div h4{
  color: #004eb3;
}
.sec-4boxicons .work_flex .item1 .icon .icon_div {
    margin-bottom: 10px;
    width: 35px;
    background: #004eb3;
    border-radius: 50px;
    padding: 6px;
}
.sec-4boxicons .work_flex .item1 h2 {
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 10px;
    text-align: center;
}
.sec-4boxicons .work_flex .item1 p {
    font-size: 14px;
    line-height: 23px;
    text-align: center;
}

.sec-4boxicons .item1 .icon_div h4{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 0;
}

.tech_li .content ul li {
	display: flex;
	margin-bottom: 4px;
	font-size: 15px;
	color: #333;
}

.sec-4boxicons .tech_ul .tech_li {
	width: 23%;
	margin: 8px 8px;
	text-align: center;
	/* padding: 2%; */
	position: relative;
	background-color: #fff;
	border-radius: 10px;
	/* border:1px solid #ddd; */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.sec-4boxicons .tech_ul .tech_li .content .safe_driving_ul li i {
	color: #195597 !important;
}

.sec-4boxicons .tech_ul .tech_li .content {
	padding: 20px;
	text-align: left;
	/* width: 100%; */
}

.sec-4boxicons .tech_ul .tech_li .content li i {
	color: #195597;
	padding-right: 4px;
}

.sec-4boxicons .tech_ul .tech_li h6 {
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	color: #195597;
	margin-bottom: 5px;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	text-align: left;
}

.sec-4boxicons .tech_ul .tech_li p {
	font-size: 14px;
	color: #333;
	line-height: 18px;
}

.sec-4boxicons .tech_ul .tech_li img {
	display: block;
	width: 100%;
	margin: 0px auto;
	border-radius: 10px 10px 0 0;
}


/* Aboout Us */
.section3 {
  padding: 70px 0;
  position: relative;
}

.section3 .content-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section3 .steps-list{
  margin-top: 30px;
}
.section3 .steps-list li{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section3 .steps-list li .count{
  width: 10%;
}
.section3 .steps-list li .count p{
  background-color: #004eb3;
  color: white;
  width: 44px;
  height: 44px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section3 .arrow1,
.section3 .arrow2{
  position: absolute;
}
.section3 .arrow1{
  position: absolute;
  left: 0;
  width: 70px;
  top: 145px;
  transform: rotate(90deg);
}
.section3 .arrow2{
  position: absolute;
  left: -30px;
  width: 80px;
  top: 285px;
  transform: rotate(100deg);
}

.section3 .steps-list li .content{
  width: 88%;
}
.section3 .steps-list li .content h4{
  text-align: left;
}

.section3 .text-side{
  width: 48%;
  position: relative;
}
.section3 .img-side{
  width: 48%;
}
.section3 .img-side img{
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.section3 h3 {
  font-size: 26px;
  padding-bottom: 10px;
}

.section3 .content-wrapper .btn-common{
  margin: 20px 0 0 0;
}
.section3 .rxwlgrowt {
  list-style: none;
  margin: 0px;
  padding: 0px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
}
.section3 .about-img{
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.section3 .about-img img{
  height: 50px;
}
.section3 .rxwlgrowt > li {
  width: 23.7%;
  /* margin: 1%; */
  display: block;
  float: left;
  /* min-height: 450px; */
  position: relative;
  border-radius: 10px;
  /* overflow: hidden;
  border: 1px solid #004740; */
}
.section3 .rxwlgrowt > li img {
  width: 100%;
  border-radius: 10px;
}
.section3 .rxwlgrowt > li p {
  color: #004740;
  padding: 0 5% 5% 5%;
  text-align: center;
}
.section3 .rxwlgrowt > li h3 {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-align: center;
  color: #004740;
}
/* About Us Ends */

/* Testimonial */
.testimonial {
	padding: 50px 0;
	position: relative;
	text-align: center;
  background-image: linear-gradient(160deg, #265fb4 0%, #000000 100%);
  background-repeat: no-repeat;
  background-size: 100%;
  /* margin-bottom: 50px; */
  position: relative;
}
.testimonial::before{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/halftone-background-abstract-black.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  opacity: 0.02;
}
.testimonial .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.testimonial .heading-wrap{
  width: 26%;
  padding-top: 30px;
}
.testimonial .heading-wrap h2,
.testimonial .heading-wrap p{
  text-align: left;
  color: white;
  /* margin-bottom: 20px; */
}
.testimonial .reviewtxtbox{
	width: 70%;
  position: relative;
  /* height: 413px; */
}
.testimonial .dots-left{
	position: absolute;
	top: -20px;
	left: -40px;
}
.testimonial .dots-right{
	position: absolute;
	bottom: -20px;
	right: -20px;
}
.testimonial .owl-carousel .owl-stage{
  display: flex;
  align-items: center;
}
.brand-banner-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	padding: 0;
    list-style: none;
}
.brand-banner-wrapper li{
	width: 90px;
    margin-right: 20px;
}
.brand-banner-wrapper li img{
	width: 100%;
}

.testimonial .ctp-wid {
	width: 100%;
	margin: 0px auto;
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	line-height: 21px
}

.testimonial .item {
	width: 70%;
	margin: 0px auto;
}

.testimonial .ct-img {
	width: 80px;
	height: 80px;
	float: left;
	border-radius: 100px;
	overflow: hidden;
	margin-top: 20px;
	display: none
}

.testimonial .name {
	color: #000;
	font-weight: bold;
	margin-top: 30px
}

.testimonial .name p {
	font-size: 17px
}

.testimonial .design {
	width: 120px;
	margin: 0px 0 0 auto
}

.testimonial .design img {
	width: 100%
}

.testimonial .owl-nav span {
  font-size: 32px;
  line-height: 20px;
  color: white;
}

.testimonial .owl-nav button {
	position: absolute;
  top: 50%;
  background: #004eb3 !important;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
}

.testimonial .owl-nav .owl-next {
	/* background-image: url("../images/right-arrow.png") !important; */
	right: -5px
}

.testimonial .owl-nav .owl-prev {
	/* background-image: url("../images/left-arrow.png") !important; */
	left: -5px
}

.testimonial .owl-dots {
	margin: 10px 0 0 0
}

.testimonial .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	margin: 3px;
	border-radius: 40px;
	background-color: #ccc
}

.testimonial .owl-dots .owl-dot.active {
	background-color: #212121
}
.testimonial .white_box{
	width: 95%;
	background: rgb(254, 253, 255);
	padding: 24px;
	box-sizing: border-box;
	border: 1px solid rgb(234, 236, 240);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.testimonial .white_box i{
  font-size: 14px;
  color: #f4bc06;
}
.testimonial .detail-box{
  background: rgb(254, 253, 255);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.testimonial .detail-box h3{
  color: #212121;
  font-size: 15px;
  font-weight: 600;
}
.testimonial .content{
  flex: 1;
  /* overflow-y: auto; */
}
.testimonial .content p{
  text-align: left;
  height: 170px;
} 
.testimonial .bottom-text h3{
  color: #212121;
}
.testimonial .white_box .icon{
  display: flex;
  justify-content: center;
  /* display: none; */
}
.testimonial .white_box .icon img{ 
  width: 30%;
}
/* Testimonial Ends */

.services-sec {
  padding: 70px 0;
  /* background-image: linear-gradient(180deg, #f2f5ff 6.41%, #FFF 76.21%); */
  background: #f2f4f5;
}
.services-sec h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--fontDark);
}
.services-sec h2 span {
  font-weight: 700;
}
.services-sec .services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.8%;
  row-gap: 20px;
  /* row-gap: 40px; */
}
.services-sec .services-wrapper .service-card {
  width: 23.6%;
  border-radius: 10px;
  position: relative;
  background-color: white;
  padding: 8px;
}
.services-wrapper .service-card img {
  width: 100%;
  border-radius: 7px;
  display: block;
}
.services-wrapper .service-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1e2b4b;
  padding: 10px;
  text-align: center;
  /* background: white; */
  border-radius: 10px;
  width: fit-content;
  min-width: 94%;
  bottom: 4%;
}
.services-wrapper .service-card p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 21px;
}
/* Services Sec Ends */

/* Form Css */
.formwrp {
  /* background: #f2f4f5; */
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 30px 0 0 0;
  box-shadow: 0 0 20px 0 #80808038;
}
.formwrp h2 {
  font-weight: 600;
  text-align: left;
  padding: 0;
  font-size: 32px;
  text-align: center;
  color: var(--fontDark);
}
/* .formwrp form {
  margin-top: 10px;
} */
.formgroup {
  padding: 0;
  width: 100%;
  border-radius: 7px;
}
.formgroup input,
.formgroup select,
.formgroup textarea {
  -webkit-appearance: none;
  font-size: 14px;
  /* text-indent: 0.8rem; */
  padding: 10px 14px;
  outline: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 7px;
  transition: border-color 0.15s;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

.formgroup textarea{
  height: 130px;
  resize: none;
}
.formgroup label {
    font-size: 14px;
    display: block;
    padding: 10px 0 6px 0;
    margin-bottom: 0px;
    font-weight: 500;
}
.formgroup label span {
    color: #f00;
}

.formgroup ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9e9e9e;
    opacity: 1;
    /* Firefox */
  }
  
.formgroup :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9e9e9e;
  }
  
.formgroup ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #9e9e9e;
  }


.formgroup.half{
    width: 49%;
}

.formgroup select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 98%;
}

/* Footer Sec */
.footer{
  background-image: url(../images/backgroun-color.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 70px 0;
}
.footer .footer-wrapper .left-content {
  width: 45%;
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px 0 #80808038;
}
.footer .submitbtn input {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-top: 12px;
}
.footer .footer-wrapper .left-content h2 {
  font-size: 32px;
  text-align: center;
}
.footer .left-content form {
}
.footer .footer-wrapper .right-form {
  width: 50%;
  position: relative;
}
.footer .footer-wrapper .right-form::after {
  /* content: ""; */
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 210px;
  background: #004eb3;
  z-index: 0;
}
.footer .footer-wrapper .right-form iframe {
  width: 100%;
  height: 535px;
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  border-radius: 16px;
}
.footer-contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  position: relative;
  background: white;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  border-radius: 16px;
  margin-bottom: 16px;
}
.footer-contact-info .infos {
  display: flex;
  column-gap: 18px;
  /* width: 30%; */
  padding: 0 15px;
}
.footer-contact-info .infos i {
  font-size: 40px;
  color: #004eb3;
}
.footer-contact-info .infos .details .tag {
  font-size: 16px;
  font-weight: 600;
  color: #004eb3;
}
.footer-contact-info .infos .details a {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1e2b4b;
  opacity: 0.8;
}
.footer-contact-info .infos .details a:hover {
  color: #000;
}

.footer-contact-info .infos .details .dec {
  font-size: 14px;
  font-weight: 500;
  color: #1e2b4b;
  opacity: 0.8;
}
.footer-contact-info .infos .details .dec span {
  color: var(--fontDark);
  opacity: 1;
  font-weight: 700;
}
/* Footer Sec Ends */

/* CopyRight Sec */
.copyrights-design {
  padding: 20px 0;
  background-color: #004eb3;
  font-size: 12px;
}
.copyrights-design.thank-youpage{
  padding: 20px 0;
}
.copyrights-design .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.copyrights-design .copyrights {
  text-align: left;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 10px;
  width: 100%;
}
.copyrights-design .copyrights p{
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}
.copyrights-design .copyrights .separator{
    font-weight: 600;
    color: #fff;
}
.copyrights-design .copyrights a{
    font-weight: 600;
}
.copyrights-design .copyrights a:hover{
    color: #ddd;
}
.copyrights-design .designed {
  width: 50%;
  float: left;
  text-align: right;
  font-size: 15px;
}
/* CopyRight Ends */

.thank-you-h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 161px);
}

@media (min-width: 0px) and (max-width: 400px){
    .header .nav ul li {
      margin: 0px;
    }
    .header .nav ul li a {
      padding: 10px;
    }
    .header .container {
      flex-direction: column;
      padding: 10px 13px;
    }
    .header .rightside .picon {
      margin-right: 0px;
      float: none !important;
      padding: 7px 10px !important;
      font-size: 13px !important;
    }
    .header .border-rightside {
      font-size: 13px !important;
      padding: 10px !important;
    }
    .header .btn-common{
      padding: 12px 14px;
      font-size: 12px;
    }
    .halfleft h1{
      font-size: 22px !important;
    }
    .halfleft h3{
      font-size: 12px !important;
    }
    .points-hightlight-sec .pointslisting li img{
      width: 70px !important;
    }
    .banner .offer-banner .content-wrapper .simple-content{
      font-size: 12px !important;
    }
    .banner .offer-banner .content-wrapper .color-chip.small-mob{
      font-size: 14px !important;
    }
    .banner .img-wrapper{
      width: 61% !important;
    }
    .banner .img-wrapper .bannerlisting {
      margin-left: -40px !important;
      width: 110% !important;
      margin-top: 0;
    }
    .banner .img-wrapper .rating-brands{
      bottom: 0 !important;
    }
    .banner .img-wrapper .bannerlisting li{
      font-size: 12px !important;
    }
    .sec-4boxicons .work_flex .item1 h2{
      font-size: 21px;
    }
    .footer-contact-info .infos i{
      font-size: 22px !important;
    }
    .footer-contact-info .infos{
      column-gap: 10px;
    }
    .footer-contact-info .infos .details a{
      font-size: 13px;
    }
    .copyrights-design .copyrights p{
        font-size: 13px;
    }
}
@media (min-width: 0px) and (max-width: 600px){
    .thank-you-h1 {
      text-align: center;
      height: calc(100vh - 252px);
      font-size: 26px;
      padding: 0 15px;
    }
    .container {
      padding: 0 16px;
    }
    .subheading{
      width: 100%;
    }
    h2{
      font-size: 27px;
    }
    .btn-common,
    .btn-common.btn-border{
      padding: 12px 16px;
      /* padding: 12px 12px; */
    }
    .header{
      padding: 0;
    }
    .header .logo .img2{
      width: 100%;
      max-width: 80px;
      margin: 0 auto;
    }
    .header .container {
      flex-direction: column;
      padding: 10px 16px;
    }
    .header .logo {
      float: none;
      margin: 0px auto;
      display: inherit;
      width: 220px !important;
    }
    .header .nav ul li a {
      font-size: 12px;
    }
    .header .nav {
      float: none;
      margin: 0px auto;
      display: none;
    }
    .header .nav ul {
      padding: 0px;
      margin: 0px;
    }
    .header .rightside {
      float: none;
      margin: 0px auto;
    }
    .header .rightside .picon {
      margin-right: 0px;
      float: none !important;
      padding: 7px 15px;
      font-size: 15px;
    }
    .header .border-rightside {
      font-size: 15px;
      padding: 15px 15px;
    }
    .header .right-nav {
      margin-top: 10px;
      justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .header .nav ul li {
      margin: 0px;
    }
    .formwrp h2{
      font-size: 26px;
      line-height: 30px;
      margin-bottom: 6px;
    }

    .banner{
      padding: 0 0 40px 0;
      background-size: cover;
      background-position: 70% 72%;
      position: relative;
      background-image: none;
    }
    .banner .halfleft,
    .banner .formwrp{
      width: 100%;
      margin: 0;
      padding: 20px 0;
    }
    .banner::after{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(90deg, white 30%, transparent 90%);
      z-index: 0;
      top: 0;
      left: 0;
    }
    .banner .halfleft .innerWrap{
      width: 100%;
      padding-top: 20px;
    }
    .banner .halfright{
      width: 100%;
    }
    .banner .offer-banner .content-wrapper .color-chip{
      font-size: 16px !important;
      /* text-align: center; */
      border-radius: 55px;
    }
    .banner .formgroup.halffield{
      width: 100%;
    }
    .halfleft .innerWrap h3{
      font-size: 13px;
      /* text-align: left; */
      margin: 0 auto;
    }
    .halfleft .innerWrap p{
      text-align: center;
    }
    .banner .rating-brands{
      margin: 20px auto 0 auto;
    }
    .banner-form .main-form .submitbtn{
      margin: 0 auto;
    }
    .banner .container{
      padding: 0 16px;
      row-gap: 30px;
      position: relative;
      z-index: 1;
    }
    .banner .formgroup{
      width: 100%;
    }
    .banner .offer-banner{
      padding: 0;
      margin-top: 0;
      margin: 0 auto 24px auto;
    }
    .banner .offer-banner .content-wrapper .simple-content{
      text-align: left;
      font-size: 14px;
      padding: 0 22px 0 0;
    }
    .review-wrapper{
      width: 100%;
    }
    .sliderbanner {
      display: none !important;
    }
    .banner-form .formgroup.halffield{
      width: 100%;
    }

    .points-hightlight-sec{
      margin-top: -40px;
    }
    .points-hightlight-sec .pointslisting{
      width: 100%;
      padding: 20px 20px;
      row-gap: 10px;
    }
    .points-hightlight-sec .pointslisting li img{
      width: 80px;
    }
    .services-sec{
      padding: 50px 0;
    }
    .services-sec .services-wrapper{
      justify-content: space-between;
    }
    .services-sec .services-wrapper .service-card{
      width: 48.4%;
      /* width: 100%; */
    }
    .sec-4boxicons .flex_box{
      row-gap: 20px;
    }
    .sec-4boxicons .flex_box .content_img_div{
      width: 100%;
    }
    .sec-4boxicons ul li{
      width: 100%;
    }

    .section3 .img-side{
      width: 100%;
      order: 2;
    }
    .section3 .text-side{
      width: 100%;
    }
    

    .cta-sec{
      padding: 30px 0;
    }
    .cta-sec .container{
      padding: 30px 16px;
    }
    .cta-sec h2.special-text{
      width: 100%;
      font-size: 24px;
      line-height: 30px;
      text-align: center;
    }
    .cta-sec .sec-wrapper .flex-cards{
      row-gap: 16px;
    }
    .cta-sec .sec-wrapper .flex-cards .card-wrapper{
      width: 100%;
    }

    .testimonial .heading-wrap{
      width: 100%;
    }
    .testimonial .heading-wrap h2, .testimonial .heading-wrap p{
      text-align: center;
    }
    .testimonial .reviewtxtbox{
      width: 100%;
      margin-top: 20px;
    }
    .testimonial .owl-carousel .owl-stage{
      align-items: flex-start;
    }
    .testimonial .heading-wrap{
      padding: 0;
    }
    .testimonial .content p{
      height: 190px;
    }

    .halfleft h1{
      font-size: 26px;
      line-height: 34px;
      text-align: center;
    }
    .halfleft h3{
      font-size: 14px;
      margin: 13px auto 20px auto;
      text-align: center;
    }
    .banner .img-wrapper .bannerlisting{
      top: 0;
      right: -146px;
    }
    .banner .img-wrapper .bannerlisting li{
      margin: 5px 0 10px 0;
      width: 100%;
      font-size: 14px;
      line-height: 20px;
      column-gap: 8px;
    }
    .bannerlisting li i{
      /* width: 10%; */
    }
    .banner .img-wrapper{
      width: 63%;
      order: 2;
      margin: 0 auto 0 0;
    }
    .banner .img-wrapper img{
      margin: 0 auto 0 0;
    }
    .banner .img-wrapper .rating-brands{
      bottom: -10px;
      right: -60px;
    }

    .section3{
      padding: 30px 0;
    }

    .section3::before {
      width: 100%;
      height: 50%;
      display: none;
    }
    .section3 .content-wrapper {
      width: 100%;
      margin: 0;
      row-gap: 20px;
    }
    .section3 .steps-list li .count p{
      width: 34px;
      height: 34px;
    }
    .section3 .arrow1{
      left: -23px;
      width: 86px;
      top: 157px;
    }
    .section3 .arrow2{
      left: -44px;
      width: 110px;
      top: 325px;
    }

    /* Gallery */
    .gallery-sec .sec-wrapper ul{
        row-gap: 12px;
    }
    .gallery-sec .sec-wrapper ul li{
        max-height: 140px;
        width: 49%;
    }
    /* Gallery Ends */

    .footer .footer-wrapper{
      padding: 50px 0;
    }
    .footer .footer-wrapper .left-content{
      width: 100%;
      padding: 20px;
    }
    .footer .footer-wrapper .right-form{
      width: 100%;
    }
    .footer .footer-wrapper .right-form iframe{
      height: 300px;
      padding: 20px 0 0 0;
    }
    .footer .footer-wrapper .right-form::after{
      display: none;
    }
    .footer .footer-wrapper .left-content h2{
      text-align: center;

    }
    .footer-contact-info .infos{
      width: 100%;
    }
    .footer-contact-info .infos i {
      font-size: 30px;
    }
    .footer-contact-info {
      margin: 40px 0 0 0;
      padding: 10px 0;
      row-gap: 15px;
    }

    .copyrights-design {
      text-align: center;
      /* margin-bottom: 60px; */
      padding: 65px 0 20px 0;
    }
    .copyrights-design .container {
      flex-wrap: wrap;
    }
    .copyrights-design .copyrights {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }
    .copyrights-design p {
      width: 100%;
    }
    .copyrights-design .copyrights .separator{
        display: none;
    }
    .copyrights-design .copyrights p{
        width: 100%;
    }
    .sec-4boxicons .work_flex{
      row-gap: 20px;
    }
    .sec-4boxicons .work_flex .item1{
      width: 100%;
    }
    .sec-4boxicons .work_flex .img1,
    .sec-4boxicons .work_flex .img2,
    .sec-4boxicons .work_flex .img3{
      display: none;
    }

    .major-add .flex{
      flex-direction: column;
    }

    .services-sec h2, 
    .sec-4boxicons h2, 
    .major-add h2 
    /* .formwrp h2, 
    .footer .footer-wrapper .left-content h2 */
    {
      font-size: 28px;
    }

    
}
@media (min-width: 601px) and (max-width: 850px){
    .thank-you-h1 {
      text-align: center;
      height: calc(100vh - 189px);
    }
    .container {
      padding: 0 20px;
    }
    .subheading{
      width: 90%;
    }
    .header .logo {
      float: none;
      /* margin: 0px auto; */
      display: inherit;
    }
    .header .container {
      justify-content: space-between;
    }
    .header .nav {
      margin: 0px auto;
      float: none;
      display: none;
    }
    .header .rightside {
      float: none;
      margin: 0px auto;
    }
    .header .nav ul li {
      margin: 0px;
    }
    .header .nav ul {
      padding: 0px;
    }
    .header .rightside .picon {
      float: none;
    }
    .header .nav ul li a {
      font-size: 13px;
    }

    .banner{
      padding: 30px 0 40px 0;
      background-size: 150%;
      background-position: left top;
    }
    .banner .halfleft,
    .banner .formwrp{
      width: 100%;
      margin: 0;
      padding: 20px 0;
    }
    .banner .container{
      padding: 0 20px 0 20px;
      row-gap: 16px;
    }
    .banner .img-wrapper{
      width: 44%;
      margin: 0 auto 0 14%;
      order: 2;
    }
    .banner .img-wrapper .bannerlisting {
      top: 40px;
      margin-left: 0;
      right: -190px;
    }
    .banner .img-wrapper .rating-brands{
      margin-left: 0;
      bottom: 0px;
      right: -60px;
    }
    .banner .halfleft .innerWrap{
      width: 87%;
      padding-top: 0;
    }
    .banner .halfright{
      width: 100%;
    }
    .banner-form .formgroup.halffield {
      width: 48.8%;
    }
    .halfleft h3{
      margin: 13px auto 20px auto;
    }
    .banner .offer-banner{
      margin-top: 0;
    }

    .points-hightlight-sec .pointslisting{
      width: 100%;
    }
    .points-hightlight-sec .pointslisting li img{
      width: 75px;
    }
    

    .cta-sec .container{
      padding: 30px 20px;
    }
    .cta .ctaflex .item1 h2{
        line-height: 50px;
    }
    .cta-sec h2.special-text{
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
    .cta-sec .sec-wrapper .flex-cards .card-wrapper{
      width: 32%;
      padding: 12px 8px;
    }

    .testimonial .heading-wrap{
      width: 100%;
    }
    .testimonial .content p{
      height: 210px;
    }
    .testimonial .heading-wrap h2, .testimonial .heading-wrap p{
      text-align: center;
    }
    .testimonial .reviewtxtbox{
      width: 100%;
      margin-top: 20px;
    }
    .testimonial .owl-carousel .owl-stage{
      align-items: flex-start;
    }
    .testimonial .heading-wrap{
      padding: 0;
    }

    .footer-contact-info{
        row-gap: 15px;
    }
    .footer-contact-info .infos{
      width: fit-content;
    }
    .footer .footer-wrapper{
      row-gap: 20px;
    }
    .footer .footer-wrapper .left-content,
    .footer .footer-wrapper .right-form{
      width: 100%;
    }
    .footer .footer-wrapper .right-form iframe{
      height: 445px;
    }

    .testimonial .white_box{
        min-height: 256px;
    }

    .sec-4boxicons ul li{
      width: 30%;
    }
    .section3 .content-wrapper{
      row-gap: 20px;
    }
    .section3 .img-side{
      width: 100%;
      order: 2;
    }
    .section3 .text-side{
      width: 100%;
    }

    .sec-4boxicons .work_flex{
      row-gap: 20px;
    }
    .sec-4boxicons .work_flex .item1{
      width: 32%;
      padding: 20px 10px;
    }
    .sec-4boxicons .work_flex .item1 h2{
      font-size: 18px;
      line-height: 24px;
    }
    .sec-4boxicons .work_flex .img1{
      right: 59%;
      width: 13%;
      top: 8%;
    }
    .sec-4boxicons .work_flex .img2{
      right: 25%;
      width: 15%;
      top: 95%;
    }

    .copyrights-design {
      text-align: center;
      /* margin-bottom: 70px; */
    }
    .copyrights-design div {
      width: 100% !important;
      float: none !important;
      text-align: center !important;
    }
    .copyrights-design .container{
        row-gap: 9px;
    }
    .copyrights-design p {
      width: 100%;
    }
    .copyrights-design .copyrights .separator{
        display: none;
    }
    .copyrights-design .copyrights p{
        width: 100%;
    }
}
@media (min-width: 851px) and (max-width: 1024px){
  .container {
      padding: 0 30px;
  }
  .btn-common,
  .btn-common.btn-border{
    padding: 12px 16px;
    font-size: 15px;
  }
  .header .nav ul li a {
    font-size: 12px;
  }
  .header .rightside .picon {
    background-position: 19px 11px;
    /* padding: 7px 20px 7px 40px; */
    background-size: 15px;
    font-size: 15px;
  }
  .header .nav ul li{
    margin: 0;
  }
  .banner .container{
    padding: 40px 30px;
  }
  .points-hightlight-sec .pointslisting li img{
    width: 85px;
  }
  .pop-up .container{
      padding: 0;
  }
  .footer-contact-info .infos{
      min-width: unset;
  }
  .copyrights-design .container{
      justify-content: center;
      row-gap: 6px;
  }
}