:root {
  --white: #fff;
  --black: #000;
  --theme-color: #08144f;
  --theme-orange: #ee8405;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: var(--white);
  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: 1.125rem;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
}

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;
}

header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background-color: var(--theme-color);
  padding: 1rem 0 2rem;
}

header.sticky {
  position: fixed;
}

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

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  display: inline-block;
  line-height: 1;
  position: relative;
}
.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(--theme-orange);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-orange);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 2rem;
}
.main-slider {
  position: relative;
  /* height: 100%; */
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  background: var(--theme-color);
}
.main-slider video {
  height: 100%;
  width: 100%;
  mix-blend-mode: lighten;
}
.main-slider .videoWrap {
  margin: 0 -16rem -5rem 0;
  align-self: flex-end;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.main-slider p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--white);
}
.secHeading {
  font-size: 4.375rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.25;
  text-transform: capitalize;
}
/* ThemeBtn Style Css */
.themeBtn {
  display: inline-block;
  padding: 1.25em 2em;
  margin: 0.5rem 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  border: 2px solid var(--theme-orange);
  color: var(--white);
  overflow: hidden;
  background-color: var(--theme-orange);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.themeBtn:before,
.themeBtn:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 50%;
  top: -50%;
  left: 0;
  background-color: var(--theme-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.themeBtn:after {
  top: 100%;
}
.themeBtn:hover {
  color: var(--white);
  border-color: var(--theme-orange);
}
.themeBtn:hover:before {
  top: 0;
}
.themeBtn:hover:after {
  top: 50%;
}
/* ThemeBtn Style Css */
.serviceSection {
  overflow-x: hidden;
  background: var(--theme-color);
}
.serviceSection .row + .row {
  margin-top: 10rem;
}
.serviceSection h3 {
  font-size: 1.875rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.serviceSection .procureMentImg {
  margin-right: -17rem;
}
.procureMentImg img {
  mix-blend-mode: lighten;
}
.rateSection {
  background: #f0f0f0;
}

.rateSection .secHeading {
  color: var(--black);
  margin-bottom: 0;
}
.rateSection p {
  color: var(--black);
}
.analysisCard {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.analysisCard .imgWrap {
  height: 16.875rem;
  width: 16.875rem;
  position: relative;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  background-color: var(--theme-orange);
}
.analysisCard .imgWrap::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s ease-in-out;
  height: 15.9375rem;
  width: 15.9375rem;
  border: 4px solid var(--black);
}
.analysisCard .content {
  width: calc(100% - 285px);
}
.analysisCard .content h3 {
  font-size: 1.875rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.3;
}
.analysisCard:hover .imgWrap {
  background: var(--theme-color);
}
.analysisCard:hover .imgWrap::before {
  border-color: var(--theme-orange);
}
.analysisCard:hover .imgWrap img {
  animation: pulse infinite 3s;
}
/* contactSec */
.contactSec {
  background: url(../images/contactBg.png) left bottom/auto no-repeat;
}
.contactSec .secHeading,
.contactSec p {
  color: var(--black);
}
.contactSec .form-group .form-control {
  height: 50px;
  transition: 0.3s ease-in-out;
  border-color: var(--white);
  background: var(--white);
  font-size: 1rem;
  font-weight: 400;
  color: var(--theme-color);
  box-shadow: 0px 0px 5px #06164a66;
}
.contactSec .form-group textarea.form-control {
  height: 90px;
}
.contactSec .form-group .form-control:focus {
  background-color: var(--theme-orange);
  border-color: var(--theme-color);
}
.contactSec button.themeBtn {
  width: 230px;
  height: 64px;
}
/* Footer Css */
footer {
  text-align: center;
  background: var(--theme-color);
  padding-top: 5rem;
}

.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 4rem;
  margin: 2rem 0 0;
}
.socialIo li a {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
}
.copyRight {
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgb(214 214 214/25%);
}
.copyRight p {
  text-align: left;
  font-size: 1rem;
  margin: 0;
}

.privacySec {
  color: #000;
  background: #f0f0f0;
}
.privacySec h4 {
  padding-top: 10px;
}
.privacySec h2 {
  padding-top: 20px;
}
.privacySec p {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
}
.privacySec ul li {
  padding: 10px;
}
.privacySec ul {
  list-style: unset;
  color: #000;
  font-weight: 500;
}
.privacySec a {
  color: #08144f;
}
.footerNav {
  justify-content: flex-end;
  display: flex;
  gap: 2rem;
}
.footerNav li a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
  position: relative;
}

.navbar-toggler{
  font-size: 1.5rem;
  color: var(--white);
}
.logoImg img {
  height: 225px;
  filter: invert(1);
}