:root {
  --primary: linear-gradient(to bottom, #1971ed, #003f84);
  --black: #000;
  --theme-color: #fff;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

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

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

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828282;
}

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

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

header.sticky {
  position: fixed;
}

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

.navbar-nav {
  gap: 1rem 1rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--white);
  text-transform: capitalize;
  transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #1971ed;
}

.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.secHeading {
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.themeBtn {
  background: var(--primary);
  color: white;
  padding: 0.875rem 2.8125rem;
  border-radius: 3.125rem;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.5s ease-in-out;
}

.themeBtn:hover {
  background: black;
  border-radius: 0px 60px 0px 60px;
  color: white;
}

.form-inline {
  padding-left: 1.5rem;
}

.main-slider h2 {
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 0.8;
}

.main-slider p {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.3;
}

.main-slider a {
  font-size: 1.125rem;
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.typeWritter {
  animation: text1;
}
.typeWritter {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  animation-duration: 20s;
  animation-timing-function: steps(30, end);
  animation-iteration-count: infinite;
}

.typeWritter::after {
  content: "|";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}
@keyframes text1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 7em;
  }
}

@keyframes caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Banner Sec Css End */

/* Ultra Sec Css Start */

.ultraSec {
  background-color: #f2f2f2;
}

.ultraSec p {
  width: 82%;
  line-height: 1.9;
  padding-top: 8px;
}

/* Ultra Sec Css End */

/* Spec Sec Css Start */

.specbox {
  text-align: center;
  margin-left: 0.8125rem;
  border: 1px solid white;
  transition: 0.5s ease-in-out;
  position: relative;
}

.specbox h4 {
  font-size: 1rem;
  margin: 1.25rem 0px 1rem 0;
  font-weight: 600;
}

.specbox figure {
  position: relative;
  overflow: hidden;
  display: block;
}

.specbox figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.specbox figure img {
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.specbox:hover figure img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.specbox .themeBtn {
  padding: 11px 1.5625rem;
  font-size: 0.75rem;
}

.specbox:hover {
  border: 1px solid #1971ed;
  border-radius: 8px;
  padding-bottom: 12px;
}

/* Spec Sec Css End */

/* Application Sec Css Start */

.applicationSec {
  background: var(--primary);
  height: 100%;
  max-height: 710px;
}

.videoImg figure {
  position: relative;
}

.videoImg img {
  border-radius: 0.9375rem;
}

.videoImg figure a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
}

.videoImg figure a div {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: 0.4s ease-in-out;
}

.videoImg:hover figure a div {
  background: var(--primary);
  color: white;
}

.applicationSec p {
  font-size: 1rem;
  padding-bottom: 1rem;
}

.applicationSec p,
.applicationSec h2 {
  color: var(--white);
}

/* Application Sec Css End */

/* Enviro Sec Css Start */

.enviroSec {
  margin-top: 15rem;
}

.enviroSec h3 {
  font-size: 3.125rem;
  font-weight: 300;
}

.enviroSec h2 {
  margin: 0;
}

/* Enviro Sec Css End */

/* AwaiR Sec Css Start */

.awairSec {
  background-color: rgb(242, 242, 242);
  height: 100%;
  max-height: 700px;
}

.awairSec .videoImg {
  padding-bottom: 2rem;
  position: relative;
}

.videoImg figure {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 0.9375rem;
}

.videoImg figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.videoImg:hover figure img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.videoImg figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.awairVideo figure a div {
  width: 55px;
  height: 55px;
  font-size: 12px;
}

/* AwaiR Sec Css End */

/* Inspire Sec Css Start */

.inspireSec {
  margin-top: 28rem;
}

.teamBox h6 {
  font-size: 1.375rem;
  color: #1971ed;
  padding-top: 1rem;
  font-weight: 600;
}

.teamBox h6 span {
  font-size: 1rem;
  display: block;
  color: black;
  font-weight: 400;
}

.teamBox p {
  font-size: 1rem;
  font-weight: 500;
}

.teamBox ul {
  display: flex;
  gap: 1rem;
}

.teamBox ul li a i {
  color: #828282;
}

.teamBox ul li a i:hover {
  color: #1971ed;
}

.teamBox figure {
  border: 2px dashed #707070;
  position: relative;
  padding: 1rem 0;
  z-index: 1;
  text-align: center;
}

.teamBox figure::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 4rem;
  height: 4rem;
  top: -12px;
  left: -17px;
  z-index: -1;
}

.teamBox h3 {
  position: absolute;
  top: -31px;
  z-index: 1;
  left: 0;
  color: #e5e5e5;
  font-weight: 400;
  font-size: 40px;
}

/* Inspire Sec Css End */

/* Get in touch Sec Css Start */

.getintouchSec {
  background-image: url(../images/formBg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.getintouchSec h2 {
  color: white;
}

.getForm .form-group input {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin-bottom: 2rem;
  padding-bottom: 1.3rem;
}

.getForm .form-group input::placeholder {
  font-size: 1.125rem;
  color: floralwhite;
}

.getForm .form-group textarea {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin-bottom: 2rem;
  padding-bottom: 1.3rem;
}

.getForm .form-group textarea::placeholder {
  font-size: 1.125rem;
  color: floralwhite;
}

.getForm .themeBtn {
  background: white;
  border: none;
  font-weight: 600;
  color: #054896;
}
/* Get in touch Sec Css End */

/* Footer Sec Css Start */

footer {
  background: #f2f2f2;
  padding: 5rem 0 0;
}

.ftrLst h2 {
  font-size: 1.875rem;
  color: #000;
  font-weight: 600;
  margin: 0 0 1.4rem;
}

.ftrLst ul li a {
  font-size: 1rem;
  color: #828282;
  text-transform: uppercase;
  padding-left: 0;
  font-weight: 500;
}

.ftrLst ul li + li {
  margin-top: 0;
}

.ftrCal {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.4rem;
}

.ftrCal i {
  color: #1971ed;
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

.ftrdres h3 {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.ftrdres p {
  color: #828282;
  line-height: 27px;
  margin: 0;
  font-size: 1rem;
}

.ftrCal + .ftrCal {
  margin-top: 1.5rem;
}

.ftrdres p a {
  color: #828282;
  font-size: 1rem;
}

.copyRight {
  border-top: 1px solid rgb(122 122 122 / 30%);
  padding: 2.2rem 0;
  margin-top: 2.5rem;
}

.copyRight p {
  margin: 0;
  color: #828282;
  line-height: inherit;
}

.footerLink {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footerLink li a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffff;
  border-radius: 50%;
  color: #1971ed;
  transition: 0.5s ease-in-out;
}

.footerLink li a:hover {
  background: var(--primary);
  color: #fff;
}

.ftrLst ul li a:hover,
.ftrdres p:hover a {
  color: #1971ed;
}

.paraFoter {
  font-size: 14px;
  margin-top: 1rem;
}

.logoSec {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

footer .footLinkss {
  max-height: 244px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.logoSec li {
  color: #828282;
}

.copyRight p {
  font-size: 1rem;
}

/* Footer Sec Css End */

/* Inner Css Start */

.innerBan .carousel-caption {
  top: 4rem;
}

.enviroSecInn {
  padding-top: 2rem;
}

.videoInner {
  padding-top: 4rem;
}

.inspireSecInner {
  padding-top: 4rem;
}

.firstParagraph h3 {
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 0 11px 0;
}

.firstParagraph p {
  width: 90%;
}

.aboutSec ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828282;
}

.aboutSec ul {
  list-style: disc;
  list-style-position: inside;
}

.aboutSec ul li + li {
  padding-top: 1rem;
}

.aboutSec h6 {
  font-size: 1.375rem;
  text-transform: uppercase;
  font-weight: 600;
}

ul.itLinks li + li {
  padding-top: 5px;
}

.aboutSec ul li span {
  font-weight: 600;
  color: black;
}

.specInner .specbox {
  margin-bottom: 2rem;
}

.our-products-tab ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  gap: 1rem 2rem;
}

.our-products-tab .nav-item .nav-link {
  color: #000;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
}

.specInner h4 {
  font-size: 1.6875rem;
}

.our-products-tab .nav-item .nav-link.active {
  background-color: #003f84;
  color: #e5e5e5;
  border-radius: 1.875rem;
  padding: 10px 1.875rem;
}

.contactInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11rem;
  margin: 4rem 0 5rem;
}

.contactInfo li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  background: #fff;
  border: 3px dashed #1971ed;
  margin-bottom: 1rem;
}

.contactInfo li span strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.contactInfo li span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.contactInfo li:first-child a {
  background-color: #fff;
}

.contactInfo li:last-child a {
  background-color: #fff;
}

.contactInfo li:last-child a::before {
  border-color: #1971ed;
}

.contactInfo li {
  text-align: center;
}

.contactSec h2 {
  font-size: 3.125rem;
  text-align: center;
  font-weight: 500;
}

.mapSec iframe {
  filter: grayscale();
}

.videoImg.awairVideo {
  margin-bottom: 2rem;
}

/* .ball {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
} */

.ball {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--primary);
  border-radius: 50%;
  z-index: 100;
  pointer-events: none;
}
