:root {
  --white: #fff;
  --black: #000;
  --theme-color: #0039d6;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

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

@font-face {
  font-family: "UTM Nokia";
  src: url("../fonts/UTMNokia.ttf");
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}

.ais {
  align-items: flex-start;
}

.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  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 {
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  padding: 1rem 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;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0;
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  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(--white);
  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;
}

.themeBtn {
  display: inline-block;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  padding: 1em 1.5em;
  text-transform: uppercase;
  background: var(--theme-color);
  border-radius: 50px;
  border: 1px solid var(--theme-color);
}

.themeBtn:hover {
  background: var(--white);
  color: var(--theme-color);
}

.secHeading {
  font-family: "UTM Nokia";
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.social-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: absolute;
  right: 6rem;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.social-list li span.text {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-lr;
  transform: scale(-1);
}

.social-list li span.line {
  width: 1px;
  height: 200px;
  display: inline-block;
  background: var(--white);
}

.social-list li a {
  font-size: 1.125rem;
  color: var(--white);
}

.social-list li a:hover {
  color: var(--theme-color);
}

/* About Section */
.aboutSec {
  background: url(../images/logoBg.png) right 50% / auto no-repeat;
}

.aboutSec h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  margin: 0;
}

.aboutSec h3 {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 0.5rem;
}

.aboutSec p {
  color: var(--black);
}

.aboutSec figure .abt1 {
  display: block;
  margin-left: auto;
  box-shadow: -1.25rem -10px 0px 10px var(--theme-color);
}

.aboutSec figure .abt2 {
  display: block;
  margin-left: auto;
  margin-top: -12rem;
  position: relative;
  border: 5px solid var(--white);
}

/* serviceSec */
.serviceSec {
  background: url(../images/serviceBg.png) center bottom/cover no-repeat;
  padding-bottom: 15rem;
  z-index: 1;
}

.serviceSec .secHeading {
  color: var(--white);
}

.servCard {
  background: var(--white);
  padding: 15px 18px;
  border-radius: 22px;
  margin-bottom: 4rem;
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #efefef;
  box-shadow: 0 7px 10px rgba(146, 146, 146, 0.16);
}

.servCard figure {
  overflow: hidden;
}

.servCard figure img {
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.servCard:hover figure img {
  transform: scale(1.125);
}

.servCard h3 {
  margin: 0.5rem 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  line-height: 1;
}

.servCard:hover {
  background: var(--theme-color);
}

.servCard:hover h3 {
  color: var(--white);
}

.serviceSec .swiper-pagination {
  bottom: 0rem;
  width: 100%;
  text-align: center;
}

.serviceSec .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  margin: 0 0.75rem;
  opacity: 1;
  background: #acacac;
}

.serviceSec .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.serviceSec .swiper-pagination-bullet-active::before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  left: -4px;
  top: -4px;
  border-radius: 50%;
  border: 1px solid var(--white);
}

/* .helpSection */
.helpSection {
  background: url(../images/helpBg.png) center bottom/cover no-repeat;
  padding: 15rem 0;
  margin-top: -10rem;
}

.helpCard {
  text-align: center;
  position: relative;
}

.helpCard .line {
  position: absolute;
  top: 3rem;
  right: -31%;
  width: 230px;
  /* transform: translateX(0); */
}

.helpCard .iconWrap {
  height: 11.5rem;
  width: 11.5rem;
  display: inline-grid;
  place-items: center;
  position: relative;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 2.5rem;
  transition: 0.3s ease-in-out;
}

.helpCard .iconWrap::before {
  content: "";
  border: 2px dashed var(--black);
  border-radius: 50%;
  height: 14.125rem;
  width: 14.125rem;
  position: absolute;
  left: -1.25rem;
  top: -1.25rem;
}

.helpCard .iconWrap img {
  transition: 0.3s ease-in-out;
}

.helpCard h3 {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  text-align: center;
}

.helpCard:hover .iconWrap {
  background: var(--theme-color);
}

.helpCard:hover .iconWrap img {
  filter: brightness(0) invert(1);
  transform: scale(-1) rotate(180deg);
}

/* .offerSec */
.offerWrap {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.offerWrap .overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}

.offerWrap .overlay h3 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.offerWrap img {
  opacity: 0.75;
  width: 100%;
  transition: opacity, ease all 2s;
  transform: scale(1);
}

.offerWrap:hover img,
.offerWrap:focus img {
  opacity: 1;
  transform: scale(1.1);
}

.offerWrap:hover .overlay {
  transform-origin: top;
  transform: scaleY(1);
}

/* whoHelpSec */
.whoHelpSec {
  background: url(../images/helpBg2.png) top/100% 100% no-repeat;
  padding: 10rem 0 20rem;
  height: 100%;
  z-index: 1;
  /* margin-top: -10rem; */
}

.whoHelpSec .secHeading {
  color: var(--white);
}

.whoCard {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.whoCard figure {
  background: var(--white);
  padding: 10px;
  border-radius: 1.375rem;
  text-align: center;
  border: 1px solid #efefef;
  box-shadow: 0 7px 10px rgba(146, 146, 146, 0.16);
  overflow: hidden;
}

.whoCard figure img {
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.whoCard:hover figure img {
  transform: scale(1.125);
}

.whoCard p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 90%;
  line-height: 1.25;
  margin: 0.75rem auto;
}

.whoCard .themeBtn {
  background: #898c89;
  padding: 0.75em 1em;
}

.whoCard .themeBtn:hover {
  background: var(--white);
}

/* faqSection */
.faqSection {
  margin-top: -10rem;
  padding: 15rem 0;
  background: #dfe0df;
}

.accordionStyle {
  display: flex;
  flex-direction: column;
}

.accordionStyle .faqCard .cardHeader button[aria-expanded="true"] .fas:before {
  content: "\f0d8";
}

.faqCard .cardHeader button {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid var(--black);
}

.faqCard .cardHeader button i {
  font-size: 1.5rem;
  color: var(--black);
}

.faqCard p {
  font-size: 1rem;
  color: var(--black);
  text-align: left;
  padding: 1rem;
}

/* Footer CSS */
footer {
  padding-top: 12rem;
  margin-top: -10rem;
  position: relative;
  background: url(../images/footerBg.png) top/cover no-repeat;
}

footer .secHeading {
  font-size: 1.875rem;
  color: var(--white);
}

footer p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-top: 1rem;
}

footer .form-group {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 5px;
  border-radius: 50px;
  background: var(--white);
  margin-top: 1.5rem;
}

footer .form-group input {
  background: transparent;
  outline: none;
  border: 0;
  height: 60px;
  padding-left: 1.5rem;
  color: var(--white);
  font-size: 1.125rem;
  width: calc(100% - 50px);
}

footer .form-group button {
  color: var(--white);
  font-size: 1.25rem;
  border: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  outline: none;
  background: var(--theme-color);
}

footer .contctInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
footer .contctInfo li {
  flex: 1;
}

footer .contctInfo li a {
  text-align: center;
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

footer .contctInfo li a .iconBox {
  height: 8.25rem;
  width: 8.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
  color: var(--theme-color);
  background: var(--white);
  transition: 0.3s ease-in-out;
}
footer .contctInfo li a .iconBox img {
  transition: 0.3s ease-in-out;
}
footer .contctInfo li a strong {
  display: block;
  font-weight: 400;
}
footer .contctInfo li a:hover .iconBox {
  background: var(--theme-color);
}
footer .contctInfo li a:hover .iconBox img {
  filter: brightness(0) invert(1);
}
footer .contctInfo li a:hover i {
  background: var(--white);
}

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

.footerMenu li a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
}

.footerMenu li a:hover {
  color: var(--theme-color);
}

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

.socialIo li a {
  height: 3rem;
  width: 3rem;
  background: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  color: var(--black);
  border-radius: 50%;
}

.socialIo li a:hover {
  background: var(--theme-color);
  color: var(--white);
}

.copyRight {
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  align-items: center;
  border-top: 1px solid rgb(255 255 255/10%);
}

.copyRight p {
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
  margin: 0;
  color: var(--white);
}

.copyRight p img {
  margin: 0 10px;
}

/* Inner Pages Css */
.inner-banner {
  position: relative;
  height: auto;
  z-index: 1;
}
.inner-banner > img.w-100 {
  min-height: 425px;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #000000 0%, #54545400 100%);
}

.inner-banner h1 {
  margin: 0;
  font-weight: 500;
  color: var(--white);
  font-size: 3.5rem;
  text-transform: uppercase;
  font-family: "UTM Nokia";
}

.inner-banner .btmShape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.servicesInner,
.aboutInner {
  padding-bottom: 18rem;
}

.servicesInner .row + .row,
.aboutInner .row + .row {
  margin-top: 5rem;
}

.servicesInner p {
  color: var(--black);
}

.faqInner {
  margin-top: 0;
  padding-top: 6rem;
}

/* contactSec */
.contactList {
  background: #f5f5f5;
  padding: 3rem;
  height: 100%;
  display: flex;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
}

.contactList .secHeading {
  font-size: 2.25rem;
}

.contactList p {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.contactList .infoList {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 8rem;
  gap: 1.5rem;
}

.contactList .infoList li a {
  display: flex;
  align-items: center;
  color: var(--black);
  gap: 1rem;
  line-height: 1.4;
}

.contactList .infoList li a span {
  font-weight: 500;
  font-size: 14px;
}

.contactList .infoList li a span strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
}

.contactList .socialIo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.contactList .socialIo li a {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  color: var(--black);
  font-size: 1.5rem;
  border-radius: 50%;
}

.contactList .socialIo li a:hover {
  background-color: var(--black);
  color: #fff;
}

.formWrap {
  background: #202020;
  padding: 4rem;
  padding-left: 5rem;
  margin-left: -2rem;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.formWrap .form-group {
  margin-bottom: 2rem;
}

.formWrap .form-group label {
  color: #fff;
  font-size: 1rem;
  opacity: 0.3;
  font-weight: 500;
}

.formWrap .form-group .form-control {
  border: 0;
  height: 50px;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #c7c7c7;
}

.formWrap .form-group .form-control::placeholder {
  color: var(--white);
}

.formWrap .form-group textarea.form-control {
  height: 200px;
}

.offerInner {
  padding-bottom: 15rem;
}

.offerCard {
  margin-bottom: 3rem;
}

.offerCard .secHeading {
  font-size: 2.75rem;
  margin-top: 0.75rem;
}

.offerCard p {
  color: var(--black);
}

.navbar-toggler {
  font-size: 1.75rem;
  color: var(--white);
  outline: none !important;
}

.privacySec h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin: 1rem 0;
  color: var(--black);
  text-transform: uppercase;
}
.privacySec p {
  line-height: 2;
  margin-bottom: 1rem;
}
.privacySec p a {
  color: var(--theme-color);
  font-weight: 500;
  display: inline-block;
}
.privacySec p a:hover {
  color: var(--black);
}
.privacySec ol li,
.privacySec ul li {
  position: relative;
  font-size: 1.125rem;
  color: #828288;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.privacySec ul li::before {
  content: "";
  height: 8px;
  width: 8px;
  line-height: 1.3;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  background: var(--theme-color);
}
.privacySec ol li {
  list-style: lower-alpha;
}
.privacyList {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.privacyList li a {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  color: var(--white);
  font-weight: 400;
}

.privacyList li a:hover {
  color: var(--theme-color);
}
