:root {
  --prime: #121055;
  --prime-red: #8b0100;
  --btn-color: #8b0100;
  --btn-color-hover: #000000;
  --secondary: #39368d;
  --colorback: #2b85b5;
  --lightBack: #f7f7f7;
  --fontLight: #252e35;
  --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;
}
.contactform .captcha-error {
    display: none;
	text-align: left;
    padding: 0px;
    color: red !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: var(--fontLight);
}

h2{
    font-size: 28px;
    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;
  background: var(--btn-color);
  border: 1px solid var(--btn-color);
  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: var(--btn-color-hover);
}

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

.elem-center{
    margin: 0 auto;
}

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

.lightback{
  background: var(--lightBack);
}

/* Header */
.header {
  padding: 10px 0;
  position: sticky;
  width: 100%;
  z-index: 1000;
  top: 0px;
  background: var(--lightBack);
  transition: 300ms ease-in-out;
}
.header.float {
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.12);
    padding: 0;
}
.header.float .logo .img2{
    height: 72px;
    top: 10px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  float: left;
  line-height: 0px;
  width: auto;
  height: 65px;
  color: #0a0a0a;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}
.header .logo .img2 {
  width: auto;
  height: 100px;
  position: absolute;
  top: 0;
  transition: 300ms ease-in-out;
}
.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;
  background-color: var(--btn-color);
  border: 1px solid var(--btn-color);
  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: var(--btn-color);
  background: white;
}
.header .border-rightside {
  border: 1px solid var(--btn-color-hover);
  background: var(--btn-color-hover);
  color: white;
  padding: 10px 14px;
  font-size: 17px;
  display: inline-block;
  font-weight: 500;
  transition: 300ms ease;;
}
.header .border-rightside:hover {
  background: var(--btn-color);
  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 {
	position: relative;
	overflow: hidden;
	padding: 0px 0 60px 0;
	margin-top: 0px;
  background-image: url('../images/bannermain.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
.banner::after {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
	content: "";
	height: 100%;
  background-color: #000000ba;
	/* background-image: radial-gradient(#0000008d, rgb(0 0 0 / 76%)); */
}
.banner .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  padding: 40px 0 0 0;
  position: relative;
  z-index: 4;
  justify-content: space-between;
}
.banner .btn-common{
    margin-top: 20px;
}
.formwrp {
	background-color: #fff;
	width: 35%;

	float: right;
}
.formwrp p {
	color: #333 !important;
    font-size: 15px !important;
    margin-bottom: 0px !important;
    text-align: center;
    margin-top: 0px;
	padding:0 25px;    
}
.formwrp p a {
	color: var(--secondary);
	font-weight: 600;
}
.formwrp p a:hover{
	color: #1c7fbb;	
}
.formwrp h2 {
	font-weight: 600;
    color: #333;
    text-align: left;
	padding:20px 25px 10px;
    font-size: 30px;
    text-align: center;
}
.formwrp form {
	padding:20px 25px 10px;
}
.locationzz {
	background-color: rgba(255, 255, 255, 0.3);

	padding: 15px 25px;
	color: #333;
	width: fit-content;
	align-items: center;
	display: flex;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 400;
}
.locationzz img {
	margin-right: 5px;
}
.halfleft {
	width: 55%;
	margin-right: 0%;
}
.formwrp {
	width: 40%;
	margin-left: 5%;
}
.banner .halfleft .main-form {
	position: relative
}
.banner .formgroup {
	padding: 0px 0 0px 0;
	width: 100%;
	margin-bottom: 10px;
;
}
.banner .owl-carousel{
	position: absolute;
	z-index: -1;
	top: 0px;
}
.banner .owl-carousel .owl-item img{
	height: 100%;
	min-height: 700px;
	object-fit: cover;	
}
.banner .formgroup label {
	font-size: 14px;
    display: block;
    padding: 10px 0px 0 10px;
    margin-bottom: 0px;
    font-weight: 500;
}
.banner .formgroup label span {
	color: #f00;
}
.banner .formgroup.textaea {
	width: 98%;
}
.banner .formgroup input,
.banner .formgroup select,
.banner .formgroup textarea {
	font-size: 14px;
	padding: 14px 0 14px 8px;
	outline: none;
	width: 100%;
	border:  0px;
	font-weight: normal;
  border-bottom: 1px solid rgb(207, 207, 207);
	-webkit-box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box
}
.banner .submitbtn input {
	font-size: 18px;
}
.banner .formgroup textarea{
  height: 70px;
}
.banner .main-form .submitbtn {
	margin: 0px auto 0;
	display: block;
	width: 100%;
	text-align: center;
}
.halfleft h1 {
	font-size: 54px;
  font-weight: 500;
  line-height: 60px;
  color: #fff;
}
.halfleft h3{
  color: white;
  font-weight: 500;
  background: #000000;
  /* background: #0d2342; */
  width: fit-content;
  padding: 4px 13px;
  margin: 13px 0 0 0;
}
.halfleft p{
    color: white;
    font-size: 18px;
    line-height: 24px;
    margin-top: 22px;
}
.bannerlisting {
	margin: 20px 0 0 0;
	padding: 0px;
	list-style: none;
}
.bannerlisting li {
  display: flex;
  column-gap: 15px;

	padding: 8px 0;
	color: #fff;
	transition: all 0.3s ease;
  font-size: 18px;
  line-height: 26px;
  width: 70%;
}
.bannerlisting li i{
  margin-top: 4px;
  font-size: 20px;
  min-width: 22px;
  text-align: center;
}
/* .bannerlisting li:hover {
	background-color: #ffffff16;
  backdrop-filter: blur(40px);
} */
.bannerlisting li img {
	width: 100%;
	margin: 0px auto;
	display: block;
}
.review-wrapper{
  padding: 12px 26px;
  background: white;
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2px;
  margin-top: 15px;
}
.review-wrapper h4{
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  width: 100%;
}
.review-wrapper img{
  width: 32%;
}
/* 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;
  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 */

/* 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;
}
.sec-4boxicons ul li {
	width: 29%;
	margin: 0px 0.5% 20px;
	text-align: center;
	padding: 10px 10px 20px;
	position: relative;
	overflow: hidden;
	background-color: #fff;

	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;
	-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: var(--prime);
	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: 60px;
    margin: 6px auto;
	position: relative;
	z-index: 99;
    transition: 300ms ease-in-out;
}
.sec-4boxicons ul li:hover img{
    filter: invert(1);
}
.sec-4boxicons .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
.sec-4boxicons .flex_box .content_img_div {
  width: 48%;
  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%;
}
.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 */

/* CTA Sec */
.cta-sec {
  padding: 50px 0;
  background: var(--grayBack);
}
.cta-sec.main-sec{
  background-image: url('../images/cta-back.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.cta-sec.main-sec h2,
.cta-sec.main-sec p{
  color: white;
}

.cta-sec h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cta-sec h2 span{
  font-weight: 700;
}
.cta-sec p{
    width: 70%;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
}
.cta-sec h2.special-text{
  font-weight: 400;
  width: 75%;
  margin: 0 auto;
}
.cta-sec h2.special-text span{
  font-weight: 600;
}
.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;
  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;
  background: var(--btn-color);
  position: relative;
  z-index: 1;
}
.cta-sec .sec-wrapper ul li img {
  width: 100%;
  display: block;;
}
.cta-sec .sec-wrapper .content-wrap{
  background: white;
  padding: 13px;
  height: 100%;
  /* margin-top: -10px; */
  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 */

/* Clients */
.section3 {
  padding: 50px 0;
  background-color: black;
  position: relative;
}

.section3 .content-wrapper .logo-wrapper{
    display: flex;
    justify-content: center;
    column-gap: 3%;
}
.section3 .content-wrapper .logo-wrapper img{
    width: 8%;
}

.section3 h2{
    text-align: center;
    color: white;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.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;
  /* overflow: hidden;
  border: 1px solid #004740; */
}
.section3 .rxwlgrowt > li img {
  width: 100%;;
}
.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;
}
/* Clients Ends */

/* About Sec */
.about-sec{
    padding: 50px 0;
}
.about-sec .sec-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 6%;
}
.about-sec .sec-wrapper .content-side,
.about-sec .sec-wrapper .img-side{
    width: 47%;
}
.about-sec .sec-wrapper .content-side p{
    margin-bottom: 12px;
}
.about-sec .sec-wrapper .img-side img{
    width: 100%;
}
.about-sec .btn-common{
    margin-top: 16px;
}
/* About Sec Ends */

/* Testimonial */
.testimonial {
	padding: 50px 0;
	background-color: var(--lightBack);
	position: relative;
	text-align: center
}
.testimonial .reviewtxtbox{
	position: relative;
    width: 80%;
    margin: 0 auto;
}
.testimonial .dots-left{
	position: absolute;
	top: -20px;
	left: -40px;
}
.testimonial .dots-right{
	position: absolute;
	bottom: -20px;
	right: -20px;
}
.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;

	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: var(--prime) !important;
    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;

	background-color: #ccc
}

.testimonial .owl-dots .owl-dot.active {
	background-color: #212121
}
.testimonial .white_box{
	width: 95%;
	background: rgb(254, 253, 255);
	min-height: 180px;
	border: 2px solid transparent;
	padding: 24px;
	box-sizing: border-box;
	border: 1px solid rgb(234, 236, 240);
	/* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
  margin: 0 auto;
}
.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 p{
  text-align: left;
} 
.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 */

/* FAQ Sections */
.faq-sec {
  padding: 50px 0;
}
.faq-sec h2 {
  font-size: 28px;
  padding-bottom: 20px;
}
.faq-sec .faq-sec-wrapper {
  width: 100%;
  margin: 10px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap {
  margin-top: 10px;
  width: 46%;
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa {
  /* background: #dfbd7a3c; */
  position: relative;
  border-bottom: 1px solid rgb(185, 185, 185);
  /* border-radius: 5px; */
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa button {
  width: 100%;
  padding: 15px 45px 15px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  background: none;
  border: none;
  text-transform: none;
  cursor: pointer;
}
.faq-sec
  .faq-sec-wrapper
  .faq-contents-wrap
  .faq-qa
  button[aria-expanded="true"] {
  /* border-bottom: 2px solid #a98036; */
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa button span {
  text-align: left;
  /* padding-left: 18px; */
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa button .icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: block;
  right: 3px;
  top: 11px;
  position: absolute;
  transition: 300ms;
  cursor: pointer;
  background-image: url("../images/drop.png");
  background-size: 24px;
  background-position: center;
}
.faq-sec
  .faq-sec-wrapper
  .faq-contents-wrap
  .faq-qa
  button[aria-expanded="true"]
  .icon {
  border: none;
  rotate: 180deg;
}
.faq-sec
  .faq-sec-wrapper
  .faq-contents-wrap
  .faq-qa
  button[aria-expanded="true"]
  + .accordion-content {
  opacity: 1;
  max-height: 18em;
  /* padding-bottom: 20px; */
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background-color: white;
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa .accordion-content {
  width: 100%;
  padding: 0 26px 0 15px;
  box-sizing: border-box;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faq-sec .faq-sec-wrapper .faq-contents-wrap .faq-qa .accordion-content p {
  margin-top: 10px;
  margin-bottom: 26px;
  font-size: 16px;
    line-height: 22px;
}
/* FAQ Sections Ends */

.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 .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%;
  /* width: 21.5%; */
  /* padding: 25px; */
  /* box-shadow: inset 0 0 15px rgba(0, 0, 0, .2); */
  /* background: white; */
  position: relative;
}
.services-wrapper .service-card img {
  width: 100%;
  display: block;
}
.services-wrapper .service-card h5 {
    font-size: 20px;
    font-weight: 600;
    /* color: var(--prime); */
    padding: 10px;
    text-align: center;
    width: fit-content;
    min-width: 100%;
    bottom: 4%;
}
.services-wrapper .service-card p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 21px;
}
/* Services Sec Ends */

/* Form Css */
.formwrp {
  background: white;
  box-shadow: var(--box-shadow);
  padding: 20px 0;
  width: 36%;
  position: relative;
  z-index: 2;
}
.formwrp h2 {
  font-weight: 600;
  text-align: left;
  padding: 0;
  font-size: 31px;
  text-align: center;
  color: var(--fontDark);
}
/* .formwrp form {
  margin-top: 10px;
} */
.formgroup {
  padding: 0;
  width: 100%;
  margin-bottom: 10px;;
}
.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: "Open Sans", sans-serif;
  box-sizing: border-box;;
}

.formgroup textarea{
  height: 130px;
}
.formgroup.half{
    width: 48%;
}
.formgroup.smallform{
    width: 30%;
}

.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{
    padding: 50px 0;
    background-color: var(--lightBack);
}
.footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  /* border: 1px solid red; */
  background-color: white;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
}
.footer .footer-wrapper .left-content {
  width: 100%;
  padding: 0;
}
.footer .footer-wrapper textarea{
    height: 45px;
    overflow: hidden;
}
.footer .submitbtn input {
  width: 100%;
}
.footer .contactform{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .footer-wrapper .left-content h2 {
  font-size: 32px;
  text-align: center;
}
.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(--prime);
  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: space-between;
  flex-wrap: wrap;
  margin: 30px auto -90px auto;
  position: relative;
  background: white;
  width: 80%;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
  padding: 20px 0;;
}
.footer-contact-info .infos {
  display: flex;
  column-gap: 18px;
  width: 30%;
  padding: 0 15px;
}
.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: 80px 0 20px 0;
  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;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 10px;
}
.copyrights-design .copyrights p{
    font-weight: 500;
    font-size: 15px;
}
.copyrights-design .copyrights .separator{
    font-weight: 600;
}
.copyrights-design .copyrights a{
    font-weight: 600;
}
.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 - 142px);
}

@media (min-width: 0px) and (max-width: 370px){
    .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: 25px !important;
    }
    .points-hightlight-sec .pointslisting li img{
      width: 70px !important;
    }
    .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: 26px;
    }
    .services-sec h2{
        font-size: 26px;
    }
    .halfleft h1{
        font-size: 28px !important;
    }
    .cta-sec h2{
        line-height: 30px;
    }
    .btn-common,
    .btn-common.btn-border{
      padding: 12px 16px;
    }
    .header{
      padding: 0;
    }
    .header .logo .img2{
      margin: 0 auto;
      position: relative;
      top: unset;
      height: 100%;
    }
    .header.float .logo .img2{
        top: 0;
        height: 100%;
    }
    .header .container {
      flex-direction: column;
      padding: 10px 16px;
    }
    .header .logo {
      float: none;
      margin: 0px auto;
      display: inherit;
      height: 75px;
    }
    .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;
    }
    .header .nav ul li {
      margin: 0px;
    }

    .banner{
      padding: 0px 0 40px 0;
      background-image: url('../images/bannermain.jpg');
      background-position: top;
        background-size: 200%;
    }
    .banner::after{
        background-color: unset;
        background-image: linear-gradient(180deg, #000000bd, transparent);
    }
    .banner .halfleft,
    .banner .formwrp{
      width: 100%;
      margin: 0;
    }
    .banner .container{
      padding: 40px 16px;
      row-gap: 10px;
    }
    .services-sec{
        padding: 0 0 50px 0;
    }
    .cta-sec h2{
        font-size: 22px;
    }
    .cta-sec p{
        width: 100%;
    }
    .about-sec .sec-wrapper{
        row-gap: 30px;
    }
    .about-sec .sec-wrapper .content-side, 
    .about-sec .sec-wrapper .img-side{
        width: 100%;
    }
    .testimonial .reviewtxtbox{
        width: 100%;
    }
    .section3 .content-wrapper .logo-wrapper{
        flex-wrap: wrap;
        column-gap: 6%;
    }
    .section3 .content-wrapper .logo-wrapper img{
        width: 18%;
    }
    .faq-sec .faq-sec-wrapper .faq-contents-wrap{
        width: 100%;
    }
    .footer .footer-wrapper{
        width: 100%;
    }
    .formgroup.smallform,
    .formgroup.half{
        width: 100%;
    }
    .review-wrapper{
      width: 100%;
    }
    .sliderbanner {
      display: none !important;
    }

    .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 .services-wrapper .service-card{
      width: 49%;
    }
    .sec-4boxicons .flex_box{
      row-gap: 20px;
    }
    .sec-4boxicons .flex_box .content_img_div{
      width: 100%;
    }
    .sec-4boxicons ul li{
      width: 100%;
    }

    .cta-sec{
      padding: 30px 0;
    }
    .cta-sec h2.special-text{
      width: 100%;
      font-size: 24px;
      line-height: 30px;
    }

    .halfleft h1{
      font-size: 30px;
      line-height: 36px;
      /* text-align: center; */
    }
    .bannerlisting{
      margin: 10px 0 0 0;
    }
    .bannerlisting li{
      margin: 5px 0;
      width: 100%;
    }
    .bannerlisting li i{
      /* width: 10%; */
    }

    .section3::before {
      width: 100%;
      height: 50%;
    }
    .section3 .content-wrapper {
      width: 100%;
      margin: 0;
    }

    /* 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 .left-content{
      width: 100%;
      padding: 20px 0;
    }
    .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: 30px 0 -90px 0;
      padding: 20px 0;
      row-gap: 15px;
      width: 100%;
    }

    .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%;
    }
}
@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 .halfleft,
    .banner .formwrp{
      width: 100%;
      margin: 0;
    }
    .banner .container{
      padding: 40px 20px;
      row-gap: 16px;
    }

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

    .cta .ctaflex .item1 h2{
        line-height: 50px;
    }
    .cta-sec p{
        width: 80%;
    }
    .about-sec .sec-wrapper{
        row-gap: 40px;
    }
    .about-sec .sec-wrapper .content-side, 
    .about-sec .sec-wrapper .img-side{
        width: 100%;
    }
    .section3 .content-wrapper .logo-wrapper img{
        width: 11%;
    }
    .testimonial .reviewtxtbox{
        width: 100%;
    }
    .testimonial .white_box{
        width: 100%;
    }
    .footer-contact-info{
        row-gap: 15px;
    }
    .footer-contact-info .infos{
      width: fit-content;
    }
    .testimonial .white_box{
        min-height: 206px;
    }

    .sec-4boxicons ul li{
      width: 49%;
    }

    .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;
  }
  .halfleft h1{
    font-size: 42px;
    line-height: 52px;
  }
  .footer-contact-info .infos{
      min-width: unset;
  }
  .copyrights-design .container{
      justify-content: center;
      row-gap: 6px;
  }
}