:root {
    --prime: #00598f;
    --btn-color: #0e4593;
    --btn-hover: #00598F;
    --btn-shadow: #71edf871;
    --secondary: #acbfe3;
    --grayBack: #f2f4f5;
    --fontLight: #3e4d59;
    --fontDark: #181f2d;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
a.high-text{
    font-weight: 500;
    color: var(--prime);
}
.none {
  display: none;
}
.loader {
  display: none;
}
.err {
  border-bottom: 1px red solid !important;
}
.captcha-error {
    color: #b82322;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  color: var(--fontDark);
}
h4 {
  font-size: 20px;
  padding-bottom: 10px;
  color: var(--fontDark);
}

h5 {
  color: var(--fontLight);
}

ul {
  padding: 0;
}
p {
  padding: 0px;
  margin: 0px;
  font-size: 15px;
  line-height: 21px;
  color: #0a0a0a;
  font-family: "Poppins", sans-serif;
}
li {
  font-family: "Poppins", sans-serif;
}
.p0{
    padding: 0 !important;
}
.pb-10 {
  padding-bottom: 10px;
}
.py-50 {
  padding: 50px 0;
}
.mt5 {
    margin-top: 5px;
  }
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.clearfix {
  clear: both;
}
.text-center {
  text-align: center !important;
}
.btn-common {
  width: fit-content;
  /* border-radius: 5px; */
  font-size: 16px;
  background-color: #ac0000;
  border: 1px solid #ac0000;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 12px 26px;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 10px 30px -10px var(--btn-shadow);
  justify-content: center;
  align-items: center;
}
.btn-common:hover {
  border: 1px solid var(--btn-hover);
  background: var(--btn-hover);
  transform: translateY(-3px);
}
.btn-border{
    background-color: unset;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
}
.btn-border:hover {
    background: var(--btn-hover);
    color: white;
  }
.container {
  margin: 0px auto;
  width: 1240px;
  max-width: 100%;
}

.background-dark{
  background: var(--prime);
}
.background-dark h2,
.background-dark p,
.background-dark ul li{
  color: white;
}

/* Header */
.header {
  padding: 5px 0;
  position: sticky;
  width: 100%;
  z-index: 999;
  top: 0px;
  background: var(--grayBack);
}
.header .btn-common{
    box-shadow: none;
}
.header.float {
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  float: left;
  line-height: 0px;
  width: 200px;
  color: #0a0a0a;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
}
.header .logo .img1 {
  width: 30%;
}
.header .logo .img2 {
  width: 100%;
  padding: 10px 0;
}
.header .nav {
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 55%;
  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;
  /* color: white; */
}
.header .right-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.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 start */
.banner {
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), url(../images/banner.jpg);
}

.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* min-height: 90vh; */
  padding: 70px 0;
}

.banner h1 {
  font-size: 52px;
  line-height: 64px;
  color: #f5a932;
  padding-bottom: 30px;
  width: 90%;
}

.halfleft {
  width: 60%;
  /* padding: 50px 50px 0; */
}
.formwrp {
  width: 37%;
  background-color: #fff;
  /* border-radius: 15px; */
  min-width: 300px;
  padding: 20px 20px 25px 20px;
}

.formwrp h2 {
  font-size: 22px;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 600;
}

.halfleft p {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  padding-bottom: 30px;
}

.banner-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-btn a {
  text-decoration: none;
  padding: 10px 25px;
  font-size: 20px;
  text-align: center;
}

.banner form {
  width: 100%;
  /* padding: 20px; */
  border-radius: 12px;
  background-color: #fff;
}

.banner textarea {
  height: 100px;
  resize: vertical;
}

.submitbtn {
  display: flex;
  justify-content: center;
}
.submitbtn input{
    cursor: pointer;
}

.banner_content {
  background-color: #464646c3;
  padding: 30px 30px;
  max-width: 50%;
  min-height: 80vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}

.banner_content h2 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.banner_content p {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.banner-btn {
  width: 100%;
}

.hero_service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero_service_card {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: start;
  gap: 10px;
  width: 49%;
}
.hero_service_card .wrap{
    width: 80%;
}
.hero_service_card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.hero_service_card p{
    font-size: 16px;
    line-height: 22px;
}
.service_icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}
/* .service_icon svg {
  width: 100%;
} */
.service_icon img {
  /* width: 100%; */
  width: 100%;
  /* height: 20px; */
}

.banner .customers-list {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    border-radius: 40px;
    background: #ffffff;
    width: fit-content;
    padding: 10px 20px;
}
.banner .customers-list .imgs-list {
    display: flex;
    column-gap: 4px;
}
.banner .customers-list .imgs-list img:first-child {
    margin: 0;
    border-radius: 50%;
}
.banner .customers-list .imgs-list img {
    width: 27px;
    /* margin-left: -20px; */
}
.banner .customers-list .content-wrap h4 {
    text-align: left;
    /* color: white; */
    font-size: 19px;
    font-weight: 600;
    padding: 0;
}
.banner .customers-list .content-wrap h6 {
    /* color: white; */
    font-size: 12px;
    font-weight: 600;
}

.review-wrapper{
  padding: 0;
  background: white;
  width: 230px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.review-wrapper h4{
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  width: 100%;
}
.review-wrapper img{
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Banner end */

/* Major Highlights */
.major-add{
    padding: 20px 0;
    background: var(--btn-color);
}
.major-add .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 16px;
}
.major-add h2{
    font-size: 34px;
    font-weight: 500;
    color: white;
}
.major-add .btn{
  border-color: white;
    background-color: white;
    color: var(--btn-color);
    font-weight: 600;
}
/* Major Highlights Ends */

/* Form Css */
.formwrp {
  background: white;
  box-shadow: var(--box-shadow);
  border-radius: 0;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.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%;
  margin-bottom: 10px;
  border-radius: 7px;
}
.formgroup input,
.formgroup select,
.formgroup textarea {
  -webkit-appearance: none;
  font-size: 14px;
  /* text-indent: 0.8rem; */
  padding: 14px 0 14px 8px;
  outline: none;
  width: 100%;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid rgb(207, 207, 207);
  -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: "Poppins", sans-serif;
  box-sizing: border-box;
  border-radius: 0;
}

.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%;
}
.submitbtn input[type=submit]{
    width: 100%;
}
/* Form Css Ends */

/* Services Sec */
.services-sec {
  padding: 50px 0;
  /* background-image: linear-gradient(180deg, #f2f5ff 6.41%, #FFF 76.21%); */
  /* background: #f2f5ff; */
}
.services-sec h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--fontDark);
}
.services-sec h2 span {
  font-weight: 700;
}
.services-sec p{
  width: 70%;
  text-align: center;
  margin: 10px auto 0 auto;
}
.services-sec .services-wrapper .service-card {
  width: 23.6%;
  /* width: 21.5%; */
  /* padding: 25px; */
  /* box-shadow: inset 0 0 15px rgba(0, 0, 0, .2); */
  background: white;
  border-radius: 20px;
  position: relative;
}
.services-wrapper .service-card img {
  width: 100%;
  display: block;
}
.services-wrapper .service-card h5 {
  /* font-size: 22px; */
  font-size: 15px;
  color: var(--fontLight);
  text-align: center;
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(2px);
  width: 90%;
  margin: -18px auto 0 auto;
  position: relative;
  padding: 10px 5px;
}
.services-wrapper .service-card p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 21px;
}
.services-wrapper .service_flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 40px;
    row-gap: 30px;
}
.services-wrapper .service_flex_box .sticky_text {
    position: sticky;
    top: 150px;
    align-self: flex-start;
}
.services-wrapper .service_flex_box .left_box h3 {
    font-size: 30px;
}
.services-wrapper .service_flex_box .left_box {
    width: 18%;
    display: flex;
    align-items: center;
}
.services-wrapper .service_flex_box .right_box {
    width: 79%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 10px;
    row-gap: 20px;
    column-gap: 20px;
}
.services-wrapper .service_flex_box .right_box .service_section {
    width: 23%;
    position: relative;
    color: #fff;
    overflow: hidden;
}
.services-wrapper .service_flex_box .right_box .service_section .service-title{
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.33); */
    background: black;
    /* backdrop-filter: blur(2px); */
    width: 90%;
    margin: -18px auto 0 auto;
    position: relative;
    padding: 10px 5px;
}
.services-wrapper .service_flex_box .right_box .image_holder {
    position: relative;
    height: 145px;
}
.services-wrapper .service_flex_box .right_box .image_holder .image_holder_wrapper {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Services Sec Ends */

/* Special Sec */
.special-features-sec {
  padding: 50px 0;
  /* background: var(--grayBack); */
}
.special-features-sec .sec-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.special-features-sec .left-img {
  width: 44%;
}
.special-features-sec .left-img img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.special-features-sec .right-content {
  width: 50%;
}
.special-features-sec .right-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--fontDark);
    margin-bottom: 10px;
}
.special-features-sec .right-content h2 span {
  font-weight: 700;
}
.special-features-sec .right-content h4{
    font-size: 18px;
}
.special-features-sec .right-content ul{
    padding-left: 18px;
}
.special-features-sec ul.check-points{
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 20px;
}
.special-features-sec ul.check-points li{
  padding-left: 26px;
  background-image: url("../images/check-mark.svg");
  background-size: 18px;
  background-position: 0 3px;
  background-repeat: no-repeat;
  margin-bottom: 6px;
}
.special-features-sec .right-content p{
  margin-bottom: 10px;
}
.special-features-sec .right-content .features-wrapper {
  margin: 30px 0 45px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1%;
  justify-content: center;
  row-gap: 20px;
}
.special-features-sec .right-content .features-wrapper .card-wrapper {
  width: 48%;
  display: flex;
  align-items: center;
  column-gap: 13px;
}
.special-features-sec .features-wrapper .card-wrapper img {
  width: 43px;
}
.special-features-sec .features-wrapper .card-wrapper p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: var(--fontDark);
}
.special-features-sec .features-wrapper .card-wrapper p .higherFont {
  font-size: 26px;
  font-weight: 700;
  color: var(--prime);
}
.special-features-sec .features-wrapper .card-wrapper p .bold {
  font-weight: 700;
}
/* Special Sec Ends */

/* Why Choose Us */
.why-choose-us{
    padding: 50px 0;
}
.why-choose-us h2{
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--fontDark);
  margin-bottom: 20px;
}
.why-choose-us .content-wrapper{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.why-choose-us .content-wrapper .choose-content{
    width: 25%;
}
.why-choose-us .content-wrapper .choose-content img{
    width: 100%;
    display: block;
}
.why-choose-us .content-wrapper .choose-content .text-wrap{
    padding: 20px 20px 0 20px;
}
.why-choose-us .content-wrapper .choose-content .text-wrap h3{
    padding-bottom: 20px;
    font-size: 22px;
    position: relative;
    margin-bottom: 14px;
}
.why-choose-us .content-wrapper .choose-content .text-wrap h3::after{
    content: '';
    position: absolute;
    width: 60px;
    height: 1.2px;
    background: var(--btn-color);
    left: 0;
    bottom: 5px;

}
/* Why Choose Us Ends */

/* Aboout Us */
.section3 {
  padding: 90px 0;
  background-color: var(--secondary);
  position: relative;
}
.section3::before{
  content: '';
  background-image: url("../images/about-us.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.section3 .content-wrapper{
  background: white;
  padding: 20px 30px;
  width: 60%;
  margin-left: 33%;
  position: relative;
}

.section3 h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--fontDark);
    margin-bottom: 10px;
}

.section3 .content-wrapper .btn-common{
  margin: 12px 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 .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 */

/* CTA Sec */
.cta-sec {
  padding: 50px 0;
  background: var(--prime);
}
.cta-sec h2 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    width: 90%;
    margin: 0 auto;
}
.cta-sec h2.special-text span{
  font-weight: 600;
}
.cta-sec .cta-dec{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    /* text-transform: uppercase; */
    color: white;
    margin: 20px 0 15px 0;
}
.cta-sec .btn{
    margin: 20px auto 0 auto;
    background-color: white;
    color: var(--btn-color);
    font-weight: 600;
    border-color: white;
}
.cta-sec .sec-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2%;
  row-gap: 20px;
}
.cta-sec .sec-wrapper ul li {
  width: 18.4%;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  position: relative;
}
.cta-sec .sec-wrapper ul li::after{
  content: '';
  background: var(--btn-color);
  height: 50%;
  width: 20%;
  right: 0;
  bottom: 30px;
  position: absolute;
  z-index: 0;
}
.cta-sec .sec-wrapper ul li .img-wrp{
  padding: 7px;
  border-radius: 18px 18px 0 18px;
  background: var(--btn-color);
  position: relative;
  z-index: 1;
}
.cta-sec .sec-wrapper ul li img {
  width: 100%;
  display: block;
  border-radius: 15px;
}
.cta-sec .sec-wrapper .content-wrap{
  background: white;
  padding: 13px;
  height: 100%;
  /* margin-top: -10px; */
  border-radius: 0 18px 18px 18px;
  position: relative;
  z-index: 1;
}
.cta-sec .sec-wrapper ul li h5 {
  /* font-size: 32px; */
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  width: fit-content;
  /* background-image: url('../images/lower-highlight-.png'); */
  background-size: 45%;
  padding: 5px;
  margin: 0 auto;
  /* background-repeat: no-repeat; */
  /* background-position: left center; */
}
.cta-sec .sec-wrapper ul li p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 21px;
}
/* CTA Sec Ends */

/* Two Sections Devide */
.sec-4boxicons{
    padding: 50px 0;
}
.sec-4boxicons .container{
	overflow: visible;
}
.sec-4boxicons h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--fontDark);
}
.sec-4boxicons .subheading {
    width: 60%;
    margin: 0px auto;
    font-size: 14px;
    text-align: center;
}
.sec-4boxicons .flex_box{
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	justify-content: center;
	padding-top: 40px;
}
.sec-4boxicons .flex_box .content_img_div{
	width: 58%;
	text-align: center;
}
.sec-4boxicons .flex_box .content_img_div > p{
	font-size: 16px;
    width: 90%;
    margin: 0 auto;
}
.sec-4boxicons .flex_box .content_img_div .img_box{
	position: relative;
	margin-bottom: 35px;
}
.sec-4boxicons .flex_box .content_img_div .img_box img{
	width: 100%;
}
.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;
}
/* Two Sections Devide Ends */

/* Testimonial Section */
.testimonial {
  padding: 50px 0 0 0;
  background-image: linear-gradient(
    180deg,
    var(--grayBack) 0%,
    var(--grayBack) 67.5%,
    transparent 67.5%,
    transparent 100%
  );
}
.testimonial .logos-wrapper {
  width: 70%;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px auto;
  column-gap: 30px;
}
.testimonial .logos-wrapper .item {
  width: 140px;
}
.testimonial .logos-wrapper .item img {
  width: 100%;
}
.testimonial h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--fontDark);
    margin-bottom: 10px;
}
.testimonial .headPara {
  width: 60%;
  margin: 10px auto 0 auto;
}
.testimonial .testimonial-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 30px auto 0;
  position: relative;
}
.testimonial-wrapper .testi-card {
  background: white;
  padding: 28px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  min-height: 199px;
}
.testimonial-wrapper .testi-card .name-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-wrapper .testi-card .name-wrapper .test-name {
  width: 60%;
  font-size: 18px;
  font-weight: 600;
}
.testimonial-wrapper .testi-card .name-wrapper .ratings-wrap {
  width: fit-content;
  color: #fbc724;
  font-size: 14px;
}
.testimonial-wrapper .testi-card .name-wrapper .location {
  width: 60%;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 500;
  color: #b7bcc1;
}
.testimonial-wrapper .owl-nav button {
  position: absolute;
  top: 43%;
  background: var(--prime) !important;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
}
.testimonial-wrapper .owl-nav button span {
  font-size: 32px;
  line-height: 20px;
  color: white;
}
.testimonial-wrapper .owl-nav button.owl-prev {
  left: -20px;
}
.testimonial-wrapper .owl-nav button.owl-next {
  right: -20px;
}
/* Testimonial Section Ends */

/* Footer Sec */
.footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 0 0;
}
.footer .footer-wrapper .left-content {
  width: 45%;
  padding: 20px 50px 0 0;
}
.footer .submitbtn input {
  width: 100%;
}
.footer .footer-wrapper .left-content h2 {
  font-size: 32px;
}
.footer .left-content form {
}
.footer .footer-wrapper .right-form {
  width: 55%;
  position: relative;
}
.footer .footer-wrapper .right-form::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 210px;
  background: var(--btn-color);
  z-index: 0;
}
.footer .footer-wrapper .right-form iframe {
  width: 100%;
  height: 100%;
  padding: 20px 40px 0 0;
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.footer-contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10%;
  margin: 50px 0 -50px 0;
  position: relative;
  background: white;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  border-radius: 10px;
}
.footer-contact-info .infos {
  display: flex;
  column-gap: 18px;
}
.footer-contact-info .infos i {
  font-size: 40px;
  color: var(--fontDark);
}
.footer-contact-info .infos .details .tag {
  font-size: 16px;
  font-weight: 600;
  color: var(--fontDark);
}
.footer-contact-info .infos .details a {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fontLight);
  opacity: 0.8;
}
.footer-contact-info .infos .details .dec {
  font-size: 14px;
  font-weight: 500;
  color: var(--fontLight);
  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: 70px 0 20px 0;
  background-color: var(--grayBack);
  font-size: 12px;
}
.copyrights-design.thank-youpage {
    padding: 20px 0;
}
.copyrights-design .container {
  display: flex;
  justify-content: space-between;
}
.copyrights-design .copyrights {
  text-align: left;
  font-weight: 500;
  font-size: 15px;
}
.copyrights-design
.copyrights-design .designed {
  width: 50%;
  float: left;
  text-align: right;
  font-size: 15px;
}
.copyrights-design a{
    font-weight: 600;
}
/* CopyRight Ends */

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

@media (max-width: 355px) {
    .btn-common{
        padding: 12px 18px;
        font-size: 14px;
    }
    .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;
    }
    .header .right-nav{
      flex-wrap: nowrap;
    }
    .halfleft p{
        font-size: 19px;
    }
    .banner .container{
        padding: 50px 12px !important;
    }
    .hero_service_card .wrap{
        width: 80% !important;
    }
}
@media (max-width: 600px) {
    .thank-you-h1 {
      text-align: center;
      height: calc(100vh - 320px);
      font-size: 26px;
      padding: 0 15px;
    }
    .container {
      padding: 0 16px;
    }
    .btn-common{
        padding: 12px 22px;
    }
    .header{
        padding: 0;
    }
    .header .logo .img2{
      width: 100%;
      max-width: 180px;
      margin: 0 auto;
      padding: 4px 0 6px 0;
    }
    .header .container {
      flex-direction: column;
      padding: 4px 16px;
    }
    .header .logo {
      float: none;
      margin: 0px auto;
      display: inherit;
      width: 200px !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;
    }
    .header .right-nav {
      margin-top: 4px;
    }
    .header .nav ul li {
      margin: 0px;
    }

    /* Banner Starts */
    .banner{
      background-size: 230% 58%;
      background-position: center top;
    }
    .banner .container{
        padding: 50px 16px;
        row-gap: 20px;
    }
    .halfleft{
        width: 100%;
    }
    .banner h1{
        font-size: 35px;
        width: 100%;
        line-height: 42px;
        padding-bottom: 20px;
    }
    .halfleft p{
        font-size: 20px;
        line-height: 26px;
        /* font-weight: 400; */
    }
    .hero_service{
        row-gap: 20px;
    }
    .hero_service_card{
        width: 100%;
    }
    .hero_service_card p{
        font-size: 16px !important;
        line-height: 22px;
    }
    .hero_service_card .wrap{
        width: 85%;
    }
    .banner-btn a{
        width: 100%;
    }
    .formwrp{
        width: 100%;
    }
    /* Banner Ends */

    .services-sec .services-wrapper{
      margin-top: 0;
    }

    .major-add h2{
      font-size: 28px;
      line-height: 34px;
    }

    /* Services Sec */
    .services-sec h2{
        font-size: 28px;
    }
    .services-wrapper .service_flex_box:first-child{
        padding-top: 10px;
    }
    .services-wrapper .service_flex_box{
        row-gap: 20px;
    }
    .services-wrapper .service_flex_box .left_box{
        width: 100%;
        position: relative;
        top: 0;
    }
    .services-wrapper .service_flex_box .left_box h3{
        width: 100%;
        text-align: center;
        font-size: 22px;
    }
    .services-wrapper .service_flex_box .right_box{
        width: 100%;
    }
    .services-wrapper .service_flex_box .right_box .service_section{
        width: 100%;
    }
    .services-wrapper .service_flex_box .right_box .image_holder{
        height: 210px;
    }
    /* Services Sec Ends */

    /* Special Sec */
    .special-features-sec .right-content h2{
        font-size: 28px;
        line-height: 34px;
    }
    .special-features-sec{
        padding: 30px 0;
    }
    .special-features-sec .right-content{
        width: 100%;
    }
    .special-features-sec .left-img{
        width: 100%;
    }
    .special-features-sec.mob-reverse .left-img{
        order: 2;
    }
    .special-features-sec.mob-reverse .right-content{
        order: 1;
    }
    /* Special Sec Ends */

    /* CTA */
    .cta-sec{
        padding: 40px 0;
    }
    .cta-sec h2{
        width: 100%;
        font-size: 28px;
        line-height: 34px;
    }
    /* CTA Ends */

    /* Why Choose Us */
    .why-choose-us{
        padding: 30px 0;
    }
    .why-choose-us .content-wrapper .choose-content{
        width: 100%;
    }
    /* Why Choose Us Ends */

    /* Testimonial */
    .testimonial h2{
        font-size: 28px;
    }
    .testimonial .headPara{
        width: 100%;
    }
    .testimonial-wrapper .owl-nav button.owl-prev{
        left: -12px;
    }
    .testimonial-wrapper .owl-nav button.owl-next{
        right: -12px;
    }
    /* Testimonial Ends */

    /* About Sec */
    .section3 h2{
        font-size: 28px;
    }
    .section3::before {
        width: 100%;
        height: 36%;
    }
    .section3 .content-wrapper {
        width: 100%;
        margin: 0;
    }
    .section3{
      padding: 400px 0 30px 0;
    }
    .section3::before{
      background-position: center;
    }
    /* About Sec Ends */

    /* Footer */
    .footer .footer-wrapper .left-content {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .footer .footer-wrapper .left-content h2 {
        text-align: center;
        font-size: 28px;
    }
    .footer .footer-wrapper .right-form {
        width: 100%;
    }
    .footer .footer-wrapper .right-form iframe {
        height: 300px;
        padding: 0;
    }
    .footer-contact-info {
        margin: 40px 0 -50px 0;
        padding: 10px 30px;
        row-gap: 15px;
    }
    .footer-contact-info .infos {
        width: 100%;
    }
    .footer-contact-info .infos i {
        font-size: 30px;
    }
    .footer-contact-info .infos .details{
        width: 84%;
        overflow: hidden;
    }
    .footer-contact-info .infos .details a{
        width: 100%;
        display: block;
        margin: 0;
        word-wrap: break-word;
        /* overflow: hidden;
        text-overflow: ellipsis; */
    }
    /* Footer Ends */

    /* Copyright */
    .copyrights-design{
        text-align: center;
    }
    .copyrights-design .container {
        flex-wrap: wrap;
    }
    .copyrights-design .copyrights {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .copyrights-design p {
        width: 100%;
    }
    .copyrights-design p br{
        display: none;
    }
    /* Copyright Ends */
}
@media (min-width: 601px) and (max-width: 850px) {
    .thank-you-h1 {
      text-align: center;
      height: calc(100vh - 178px);
      font-size: 26px;
      padding: 0 15px;
    }
    .container {
      padding: 0 20px;
    }
    .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 Starts */
    .banner{
      background-size: 170% 58%;
      background-position: center top;
    }
    .banner .container{
        padding: 50px 16px;
        row-gap: 20px;
    }
    .halfleft{
        width: 100%;
    }
    .banner h1{
        font-size: 36px;
        width: 100%;
        line-height: 42px;
        padding-bottom: 20px;
    }
    .hero_service{
        row-gap: 20px;
    }
    .hero_service_card{
        width: 100%;
    }
    .hero_service_card .wrap{
        width: 86%;
    }
    .banner-btn a{
        width: 100%;
    }
    .formwrp{
        width: 100%;
    }
    /* Banner Ends */
    /* Services Sec */
    .services-wrapper .service_flex_box:first-child{
        padding-top: 10px;
    }
    .services-wrapper .service_flex_box{
        row-gap: 20px;
    }
    .services-wrapper .service_flex_box .left_box{
        width: 100%;
        position: relative;
        top: 0;
    }
    .services-wrapper .service_flex_box .left_box h3{
        width: 100%;
        text-align: center;
        font-size: 22px;
    }
    .services-wrapper .service_flex_box .right_box{
        width: 100%;
    }
    .services-wrapper .service_flex_box .right_box .service_section{
        width: 48%;
    }
    .services-wrapper .service_flex_box .right_box .image_holder{
        height: 210px;
    }
    /* Services Sec Ends */

    .services-sec .services-wrapper{
      margin-top: 0;
    }

    /* Special Sec */
    .special-features-sec{
        padding: 30px 0;
    }
    .special-features-sec .right-content{
        width: 100%;
    }
    .special-features-sec .left-img{
        width: 100%;
    }
    .special-features-sec.mob-reverse .left-img{
        order: 2;
    }
    .special-features-sec.mob-reverse ..right-content{
        order: 1;
    }
    /* Special Sec Ends */

    /* About Sec */
    .section3::before {
      width: 100%;
      height: 50%;
    }
    .section3 .content-wrapper{
      width: 100%;
      margin-left: 0;
    }
    .section3::before{
      background-position: center;
    }
    .section3{
      padding: 400px 0 30px 0;
    }
    /* About Sec Ends */

    /* CTA */
    .cta-sec{
        padding: 40px 0;
    }
    /* CTA Ends */

    /* Why Choose Us */
    .why-choose-us{
        padding: 30px 0;
    }
    .why-choose-us .content-wrapper .choose-content{
        width: 50%;
    }
    /* Why Choose Us Ends */

    /* Testimonial */
    .testimonial .headPara{
        width: 80%;
    }
    .testimonial-wrapper .owl-nav button.owl-prev{
        left: -15px;
    }
    .testimonial-wrapper .owl-nav button.owl-next{
        right: -15px;
    }
    /* Testimonial Ends */

    /* Footer */
    .footer-contact-info{
        column-gap: 1%;
    }
    .footer-contact-info .infos:first-child{
        width: 39%;
    }
    .footer-contact-info .infos{
        width: 26%;
    }
    .footer-contact-info .infos .details{
        width: 84%;
        overflow: hidden;
    }
    .footer-contact-info .infos .details a{
        width: 100%;
        display: block;
        margin: 0;
        word-wrap: break-word;
        /* overflow: hidden;
        text-overflow: ellipsis; */
    }
    /* Footer Ends */

    /* Copyright */
    .copyrights-design{
        text-align: center;
    }
    .copyrights-design .container {
        flex-wrap: wrap;
    }
    .copyrights-design .copyrights {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .copyrights-design p {
        width: 100%;
    }
    .copyrights-design p br{
        display: none;
    }
    /* Copyright Ends */
}
@media (min-width: 851px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .btn-common{
        padding: 12px 18px;
    }
    .header .nav ul li{
        margin: 0;
    }
    .header .nav ul li a{
        padding: 10px 6px;
    }
    .banner .container{
        padding: 70px 30px;
    }
    .banner h1{
        width: 100%;
        font-size: 50px;
        line-height: 56px;
    }
    .footer-contact-info{
        column-gap: 1%;
    }
    .footer-contact-info .infos:first-child{
        width: 48%;
    }
    .footer-contact-info .infos{
        width: 22%;
    }
    .footer-contact-info .infos .details{
        width: 84%;
        overflow: hidden;
    }
    .footer-contact-info .infos .details a{
        width: 100%;
        display: block;
        margin: 0;
        word-wrap: break-word;
        /* overflow: hidden;
        text-overflow: ellipsis; */
    }
}