:root {
  --white: #fff;
  --black: #000;
  --primary: #dcb95b;
  --secondary: #0579b5;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
  filter: brightness(100%) invert(1);
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
/* nav.navbar.navbar-expand-lg {
  align-items: flex-start;
} */
.navbar-nav .nav-item .nav-link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item:last-child .nav-link {
  color: var(--white);
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--primary);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 2rem;
}
.callBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  border-radius: 50px;
  line-height: 1.1;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.25em 1em;
}
.callBtn span {
  font-size: 10px;
  font-weight: 600;
}
.callBtn span strong {
  font-weight: 600;
  display: block;
  font-size: 1rem;
}
.callBtn:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.main-slider {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  background: url(../images/ban.jpg) center/cover no-repeat fixed;
}
.main-slider::before {
  content: "";
  background-color: var(--secondary);
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 650px;
}
.main-slider h2 {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.main-slider p {
  font-size: 1.125rem;
  color: var(--white);
}
.main-slider figure {
  margin: 0 -18rem -2rem 0;
}
.main-slider figure img {
  animation: pulse infinite 3s;
}
.main-slider .btn-group {
  align-items: center;
  gap: 1rem;
}
.main-slider .btn-group span {
  font-size: 1rem;
  color: #f7c728;
}
.socialIo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.socialIo li a {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  color: var(--white);
}
.socialList {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 5rem;
  top: 50%;
  gap: 4rem;
  z-index: 1;
  transform: translateY(-50%);
}
.socialList li a {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-lr;
  transform: scale(-1);
}
.socialList li a:hover {
  color: var(--primary);
}

/* ThemeBtn style */
.themeBtn {
  padding: 0.65em 1em;
  color: var(--white);
  background-color: var(--secondary);
  font-weight: 600;
  font-size: 1.125rem;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  margin: 0.5rem 0;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}
.themeBtn span {
  position: relative;
  z-index: 3;
}
.themeBtn:hover {
  color: var(--white);
}
.themeBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
  transform: scaleY(1);
}
.themeBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
  transform: scaleX(1);
}
.themeBtn:hover::before {
  transform: scaleY(0);
}
.themeBtn:hover::after {
  transform: scaleX(0);
}
/* ThemeBtn style */

.secHeading {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.secHeading span {
  font-size: 1.375rem;
  font-weight: 600;
  display: block;
}

.whatWeCheck::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #f6f6f6;
  height: 100%;
  width: 100%;
  max-width: 50%;
  left: 0;
  top: 0;
}

.whatWeCheck p {
  line-height: 2.3;
  font-size: 1.125rem;
}

/* servicesSec */
.servicesSec {
}

.serv-card {
  text-align: center;
  margin-bottom: 1.5rem;
}
.serv-card h3 {
  margin-top: 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
.serv-card .img-wrap {
  overflow: hidden;
}
.serv-card .img-wrap img {
  transition: 0.3s ease-in-out;
}
.serv-card:hover .img-wrap img {
  transform: scale(1.25);
}

/* Video Section */
.videoSection {
  background-color: #f6f6f6;
}
.videoCard .content {
  text-align: center;
  width: 80%;
  padding: 1rem;
  margin: 0 auto;
}
.videoCard .content h3 {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 600;
  margin-top: 0.5rem;
}
.videoCard .content p {
  font-size: 1rem;
  line-height: 2.1;
  color: #828282;
}
.videoImg {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 40px;
}
.videoImg img {
  transition: 0.3s ease-in-out;
}
.videoImg span {
  display: inline-block;
  height: 100px;
  width: 100px;
  background-color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 0px 10px rgb(220 186 91 / 75%);
}
.videoImg:hover img {
  transform: scale(1.25) rotate(-3deg);
}

/* ctaSection */
.ctaSection {
  background: var(--secondary) url(../images/ctaBnnr.png) center/cover no-repeat;
  text-align: center;
}

.ctaSection .secHeading {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ctaSection .callBtn.themeBtn {
  color: var(--white);
  display: inline-flex;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}
.ctaSection .callBtn.themeBtn i {
  color: var(--white);
  z-index: 1;
}

/* testimonialSec */
.testimonialSec figure {
  margin: -12rem -37rem 0 0;
}
.testimonialSec h2.secHeading {
  font-size: 3rem;
}
.testimonial-card {
  text-align: center;
}
.testimonial-card .content {
  background-color: #f3f3f3;
  border-radius: 40px;
  padding: 1rem 2.5rem;
}
.testimonial-card p {
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 400;
  margin: 1rem 0;
}
.testimonial-card .imgWrap img {
  margin: -3rem auto 0.5rem;
  border: 5px solid var(--white);
  border-radius: 50%;
}
.testimonial-card .imgWrap span {
  color: #00d3ff;
  display: block;
  font-size: 1rem;
}
.testimonial-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}
.testimonial-card .imgWrap p {
  margin: 0;
}

.testimonialSlider .slick-dots {
  bottom: -3rem;
}
.testimonialSlider .slick-dots li button:before {
  width: 20px;
  height: 20px;
  border: 3px solid #707070;
  font-size: 0;
  opacity: 1;
  border-radius: 50%;
  top: 4.5px;
  left: 4.99px;
}
.testimonialSlider .slick-dots .slick-active button:before {
  background-color: #00d3ff;
}

/* Contact Section */
.contactSec {
  background-color: #0579b5;
  clip-path: ellipse(70% 100% at 50% 0%);
}
.contactSec .secHeading {
  color: var(--white);
}
.contactSec .form-group .form-control {
  border-radius: 60px;
  border: none;
  background-color: rgb(255 255 255/20%);
  height: 80px;
  font-size: 1.125rem;
  padding-left: 1.5rem;
  color: var(--white);
  transition: 0.4s ease-in-out;
  line-height: 1;
}
.contactSec .form-group {
  margin-bottom: 2rem;
}
.contactSec .form-group .form-control::placeholder {
  color: var(--white);
  opacity: 0.7;
}
.contactSec .form-group textarea.form-control {
  height: 180px;
  padding-top: 1rem;
  resize: none;
  border-radius: 30px;
}
.contactSec .form-group .form-control:focus {
  background-color: var(--theme-color);
}
.contactSec button.themeBtn {
  border: 0;
  padding: 1.25rem;
  border: 3px solid var(--primary);
}
.contInfo {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.infoWrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contInfo li a {
  font-weight: 500;
  color: var(--white);
  font-size: 1.125rem;
}
.contInfo li {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  flex: 1;
  /* text-align: center; */
}
.contInfo li strong {
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}

.contactSec .socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 4rem 0 -4rem;
}
.contactSec .socialIo li a {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.contactSec .socialIo li a:hover {
  background-color: var(--white);
  color: var(--secondary);
}

/* Footer css */
footer {
  padding-top: 4rem;
}
footer .footerMenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
footer .footerMenu li a {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1;
}
footer .footerMenu li a:hover {
  color: var(--theme-color);
}
.copyRight {
  border-top: 1px solid rgba(112, 112, 112, 0.3);
  padding: 1.5em 0;
  margin-top: 3em;
  position: relative;
}
.copyRight p {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Inner pages css */
.main-slider.inner-slider {
  /*height: auto;*/
  background: url(../images/ban.jpg) center/cover no-repeat fixed;
}
.main-slider.inner-slider figure img {
  animation: none;
}
.whatWeCheckInner h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}
.serviceIcon {
  display: grid;
  place-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.serviceIcon span {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}

.contactSec.contactInner .secHeading {
  font-size: 5rem;
  margin: 0;
}

/* inspectionWrap */
.inspectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.inspectionHead h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--black);
  width: 55%;
  margin: 0;
}

.packgeWrap {
  background-color: var(--secondary);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 0.5rem;
  width: 22.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.packgeWrap.gold {
  background-color: var(--primary);
}
.packgeWrap h3 {
  color: var(--white);
  font-size: 1.675rem;
  font-weight: 700;
  line-height: 1;
}
.packgeWrap h4 {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
}
.packgeWrap h4 span {
  color: var(--white);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
}
.inspectionBody {
  padding: 1rem 2rem;
  background-color: var(--secondary);
  border-radius: 28px;
}
.inspectionBody .row + .row{
  border-top: 1px solid #E5E5E5;
}
.inspectionBody .row .col:nth-child(1) {
  max-width: 55%;
  padding: 1rem;
}
.inspectionBody .row:nth-child(1) .col:nth-child(2) {
  border-top-left-radius: 24px;
}
.inspectionBody .row:nth-child(1) .col:nth-child(3) {
  border-top-right-radius: 24px;
}
.inspectionBody .row:last-child .col:nth-child(2) {
  border-bottom-left-radius: 24px;
}
.inspectionBody .row:last-child .col:nth-child(3) {
  border-bottom-right-radius: 24px;
}
.inspectionBody .row .col:nth-child(2) {
  max-width: 22.5%;
  text-align: center;
  border-right: 1px solid #E5E5E5;
  padding: 1rem;
  background-color: var(--white);
}
.inspectionBody .row .col.disabled span{
  pointer-events: none;
  opacity: 0.5;
}
.inspectionBody .row .col:nth-child(3) {
  max-width: 22.5%;
  text-align: center;
  padding: 1rem;
  background-color: var(--white);
}
.inspectionBody .row .col span i {
  font-size: 1.5rem;
  color: var(--primary);
}
.inspectionBody p {
  color: var(--white);
  font-size: 1.125;
  font-weight: 400;
  margin: 0;
}
.inspectionBody p i {
  margin-left: 0.5rem;
}


.contactSec.contactInfoSec {
  clip-path: none;
  background-color: #f3f3f3;
}
.contactSec.contactInfoSec .secHeading{
  color: var(--black);
}
.contactSec.contactInfoSec .form-group .form-control{
background-color: var(--white);
color: var(--black);
}
.contactSec.contactInfoSec .form-group .form-control::placeholder{
  color: var(--black);
}