:root {
  --primary-bg-color: #ffffff;
  --secondary-bg-color: #31aee4;
  --accent-bg-color: #021325;

  --primary-text-color: #1e3853;
  --secondary-text-color: #021325;

  --link-hover-bg-color: rgb(255, 255, 255);
  --link-selected-color: #305982;

  --footer-bg-color: #021325;
}

html {
  scroll-behavior: smooth;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Kumbh Sans", Times, sans-serif !important;
  font-optical-sizing: auto;
  font-size: 15px !important;
  font-display: fallback;

  color: #1e3853 !important;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* header area classes */
.headerPanel {
  /* background-color: #cccccc !important; */
  background-color: #ffffff !important;
  /* color: #ffffff !important; */
  color: var(--secondary-text-color) !important;
}

.bookNowBtnHdr {
  background: linear-gradient(to left, #305982 50%, #021325 50%) right;
  background-size: 200%;
  transition: 0.3s ease-out;
}

.bookNowBtnHdr:hover {
  background-position: left;

  border-color: #ffffff;
  color: #ffffff;
}

#nav-right-items {
  margin-right: 97px;
  /* right side button margin */
}

/* spacing between menu items */
.navbar-nav .nav-item {
  margin-left: 38px;
}

/* Navigation menu */
.navbar-brand {
  margin-left: 40px;
  /* left side logo margin */
}

@media screen and (max-width: 480px) {
  .navbar-brand {
    margin-left: 5px;
    /* left side logo margin */
  }

  .navbar-collapse {
    text-align: center;
    /* margin-top: 20px; */
  }
}

#nav-right-items {
  margin-right: 50px;
  /* right side button margin */
}

@media screen and (max-width: 480px) {
  #nav-right-items {
    margin-right: 0;
    /* right side button margin */
  }
}

/* spacing between menu items */
.navbar-nav .nav-item {
  margin-left: 38px;
}

@media screen and (max-width: 480px) {
  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 12px;
  }
}

.navbar-toggler {
  width: 47px;
  height: 34px;
  border: 0 !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .line {
  float: left;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-bottom: 5px;
}

/* open and close icon : interchange */
.navbar-close-icon {
  display: inline-block;
  /* width: 30px;
    height: 34px;
    line-height: 34px; */
  /* color: #ffffff; */
  color: red;
  font-size: 30px;
  font-weight: 400;
}

.navbar-toggler:not(.collapsed) .navbar-open-icon {
  display: none;
}

.navbar-toggler:not(.collapsed) .navbar-close-icon {
  display: block;
}

.navbar-toggler.collapsed .navbar-open-icon {
  display: block;
}

.navbar-toggler.collapsed .navbar-close-icon {
  display: none;
}
/* open and close icon : interchange */

.navbar-nav .nav-item:hover {
  /* background-color: var(--link-hover-bg-color) !important; */
}

.navbar-nav > .active > a {
  color: var(--link-selected-color) !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--link-selected-color);
}

@media only screen and (max-width: 992px) {
  .navbar-nav > .active > a {
    border-bottom: 0 !important;
  }
}

@media only screen and (max-width: 600px) {
  .navbar-nav > .active > a {
    border-bottom: 0 !important;
  }
}

.navbar-nav .nav-item > a:hover {
  color: var(--link-selected-color) !important;
}

/* underline animation for menu links */
.navbar-nav .nav-item .nav-link {
  position: relative;
  text-decoration: none;

  padding-left: 0;
  padding-right: 0;
  margin: 0 8px;

  color: BLACK;
  font-size: 18px;
  /* font-weight: bold; */
}

.navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  /* display: block; */
  display: none;
  width: 100%;
  height: 1px;

  bottom: 0;
  left: auto;

  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;

  background-color: var(--link-selected-color) !important;
}

@media only screen and (max-width: 992px) {
  .navbar-nav .nav-item .nav-link::before {
    /* width: 0; */
  }
}

@media only screen and (max-width: 600px) {
  .navbar-nav .nav-item .nav-link::before {
    /* width: 0; */
  }
}

.navbar-nav .nav-item .nav-link:hover::before {
  transform: scaleX(1);
}
/* underline animation for menu links */

/* ############################ Footer ############################ */
footer {
  margin-top: auto;
}

.footerAreaWhatsapp {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footerArea {
  width: 100%;
  bottom: 0;
  box-sizing: border-box;
}

.footerBackground {
  background-color: var(--footer-bg-color) !important;
  background-repeat: repeat;
  background-position: center center;

  display: flex;
  flex-wrap: wrap;
  padding: 30px 30px 40px 30px;
}

.companyDescFooter {
  padding: 2px 10px 0 8px;
}

/* .copyrightBackground {
    background-color: #080c10;
} */

.telephoneLink a {
  /* color: #ffffff; */
  text-decoration: none;
}

.telephoneLink a:hover {
  color: var(--link-selected-color);
}

.thumbnail {
  list-style: none;
  margin: 20px 0;
  padding: 3px 0;

  display: flex;
  align-items: center;

  /* border: 1px solid blue; */
}

.thumbnail:hover {
  opacity: 0.5;
}

.svgContainer {
  /* height: 18px; */
  margin-right: 10px;
  /* vertical-align: top; */
  /* vertical-align: middle; */
}

.footerItem {
  padding-left: 0 !important;
  /* margin-left: 0 !important; */
}

.footerLink {
  text-decoration: none;
  color: #ffffff !important;
}

/* 
.footerLink::before  {
    content: "";
    position: absolute;
    display: block;

    width: 100%;
    height: 1px;

    bottom: 0;
    left: auto;

    transform: scaleX(0);
    transform-origin: top center;
    transition: transform 0.4s ease;

    background-color: var(--link-selected-color) !important;
} */

.footerLink:hover {
  color: var(--link-selected-color) !important;
}

.footerLink:hover::before {
  transform: scaleX(1);
}

/* Floating Icon */
.whatsappFloatIcon {
  position: fixed;

  width: 52px;
  height: 52px;

  bottom: 20px;
  right: 20px;

  background-color: #25d366;
  color: #fff;
  font-size: 30px;

  border-radius: 50px;
  text-align: center;

  transition: 0.5s;
}

.whatsappFloatIcon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  border-radius: 50%;

  background-color: #25d366;
  transition: 0.5s;
}

.whatsappFloatIcon:hover::before {
  transform: scale(1.05);
  box-shadow: 0 0 10px #1cc058;
}

.whatsappFloatIcon:hover {
  box-shadow: 0 0 5px #1cc058;
}

.floatIconWA {
  position: relative;
  margin-top: 12px;
}
/* ############################ Footer ############################ */

/* To override the bootstrap input field - focus border style */
.form-control {
  /* border-color: #444946 !important; */
  /* box-shadow: 0 0 0 0.3rem rgba(9, 230, 60, 0.25); */
  outline: 0 none !important;
}

.form-control:focus {
  border-color: #1a7efb !important;
  border-width: 1px !important;
  box-shadow: 0 0 0 0 rgba(9, 230, 60, 0.25) !important;
  outline: 0 none !important;
}
/* To override the bootstrap input field - focus border style */

.input-area,
.search-area,
.form-group {
  margin-top: 10px;
  margin-bottom: 10px;
  /* border: 1px solid red; */
}

/* ######################## HOME ######################## */
.homePageMain {
  /* background: url(../images/home/hand_glouse.png) no-repeat center center; */
  /* background-color: #B4CFEA; */
  background-image: url(../images/home/home-main.svg);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainHeadingArea {
  text-align: center;
}

.homeMainHeading {
  font-family: "Jacques Francois", serif;
  font-size: 110px;
  font-weight: 400;
}

.homeMainHeading2 {
  font-family: "Kumbh Sans", serif;
  font-size: 40px;
  font-weight: 800;

  color: #b4cfea;
}

.homeMainHeading3 {
  font-family: "Kumbh Sans", serif;
  font-size: 25px;
  font-weight: 600;
}

@media only screen and (max-width: 480px) {
  .homeMainHeading {
    font-size: 100px;
  }

  .homeMainHeading2 {
    font-size: 31px;
    margin-bottom: 10px;
  }

  .homeMainHeading3 {
    font-size: 22px;
  }
}

.homePageAboutUs {
  /* background-color: #1E3853B2; */
  background-color: rgba(30, 56, 83, 0.7);
  background-image: url(../images/home/AboutUsPicture.svg);
  /* background-image: linear-gradient(rgba(30, 56, 83, 0.7), rgba(30, 56, 83, 0.7)), url(../images/home/AboutUsPicture.svg); */
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.aboutDesc {
  padding: 117px 10px;
  color: #ffffff;

  font-size: 20px;
  font-weight: 400;
}

.readMoreContainer {
  margin-top: 25px;
}

.readMoreBtn {
  background: #305982;
  color: #ffffff;

  font-size: 20px;
  font-weight: 600;
  /* border-radius: 10px; */
}

.readMoreBtn:hover {
  border: 1px solid red;
  background: #ffffff;
  color: #305982;
}

.readMoreBtnThin {
  background: #305982;
  color: #ffffff;

  font-size: 18px;
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 0;
}

.readMoreBtnThin:hover {
  border: 1px solid red;
  background: #ffffff;
  color: #305982;
}

.aboutTitleArea {
  padding-left: 0 !important;
}

.aboutTitle {
  /* border: 1px solid red; */
  background: #96b4d366;

  width: 100%;
  height: 85%;
}

@media screen and (max-width: 600px) {
  .aboutTitle {
    height: 100%;
    padding-top: 30px;
  }
}

.subHeading {
  font-size: 38px;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .subHeading {
    font-size: 32px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 600px) {
  .subHeading {
    font-size: 27px;
    font-weight: 600;
  }
}

.styledStripShort {
  width: 200px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  margin: 4px 0;
  border: 0;

  left: 50px;
}

.styledStripLong {
  width: 256px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  margin: 4px 0;
  border: 0;
}

.styledStripColor2 {
  background: #1e3853;
}

.sectionTitleServices {
  min-height: 400px;
}

@media only screen and (max-width: 600px) {
  .sectionTitleServices {
    min-height: 100px;
  }
}

@media only screen and (max-width: 480px) {
  .sectionTitleServices {
    min-height: 100px;
  }
}

.cardCustom {
  width: 18rem;
  border: 0 !important;

  border-radius: 10px;
}

.cardCustom.electrical {
  background: #1e3853;
  color: #ffffff;
}

.cardCustom.construction {
  background: #b4cfea;
  color: #1e3853;
}

.cardCustom .cardBody {
  border-radius: 10px;
  position: relative;
  width: 100%;
  min-height: 268px;

  padding: 16px 10px;
  /* padding-top: 20px; */
}

@media screen and (max-width: 992px) {
  .cardCustom .cardBody {
    min-height: 315px;
  }
}

.cardCustom .cardBody .card-title {
  font-size: 22px;
  font-weight: bold;

  margin-left: 50px;
}

.cardCustom .cardBody .card-text {
  font-size: 16px;
  font-weight: 400;

  margin-left: 50px;
}

.cardCustom .cardBody .card-btn {
  /* font-size: 16px; */

  margin-left: 50px;
}

.iconSquare {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 10px;

  text-align: center;
  vertical-align: middle;

  /* font-size: 24px; */

  position: absolute;
  top: 20px;
  left: 5px;
  transform: translateX(-50%);
}

.iconSquare.electrical {
  background: #b4cfea;
  color: #1e3853;
}

.iconSquare.construction {
  background: #1e3853;
  color: #b4cfea;
}

.iconSquare img {
  width: 45%;
}

.pageTopMargin {
  margin-top: 110px;
}

@media screen and (max-width: 480px) {
  .pageTopMargin {
    margin-top: 111px;
  }
}

.captionColor {
  color: #fff;
}

@media screen and (max-width: 995px) {
  .captionColor {
    color: #000;
  }
}

.clientBox {
  min-height: 100px;
  margin: 7px 0;
}
/* ######################## HOME ######################## */

/* ######################## ABOUT US ######################## */
.aboutUsPageMain {
  /* background-color: #1E3853; */
  background-color: rgba(30, 56, 83, 0.7);
  background-image: url(../images/aboutus/MainPict.svg);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  min-height: 382px;
}

@media only screen and (min-width: 1367px) {
  .aboutUsPageMain {
    min-height: 485px;
  }
}

.aboutUsMainHeading {
  padding: 10px 10px;
  color: #ffffff;

  font-size: 40px;
  font-weight: 600;
}

.styledStripShortABT {
  width: 200px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  /* background: rgba(180, 207, 234, 1.5); */
  margin: 4px 0;
  border: 0;

  left: 50px;
}

.styledStripLongABT {
  width: 256px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  /* background: rgba(180, 207, 234, 1.5); */
  margin: 4px 0;
  border: 0;
}

.aboutUsPageDesc {
  padding: 10px 60px;
  color: #1e3853;

  font-size: 20px;
  font-weight: 400;

  text-align: justify;
}

@media screen and (max-width: 480px) {
  .aboutUsPageDesc {
    padding: 10px 10px;
  }
}

.whyChooseUsArea {
  /* background-color: #1E3853; */
  background-color: rgba(30, 56, 83, 0.9);
  background-image: url(../images/aboutus/WHY-CHOOSE-US-BG.svg);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* min-height: 660px; */
  color: #ffffff;

  font-size: 20px;
  font-weight: 400;
}

.styledStripShort2 {
  width: 250px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  margin: 4px 0;
  border: 0;

  left: 50px;
}

.styledStripLong2 {
  width: 306px;
  height: 5px;
  border-radius: 10px;
  background: #b4cfea;
  margin: 4px 0;
  border: 0;
}

.cardCustomChooseUs {
  width: 23rem;
  border: 0 !important;
  border-radius: 22px;

  background: #ffffff;
  color: #1e3853;
}

.cardCustomChooseUs .cardBody {
  position: relative;
  width: 100%;
  min-height: 268px;

  padding: 28px;
  padding-top: 55px;
}

.cardCustomChooseUs .cardBody .card-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.cardCustomChooseUs .cardBody .card-text {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}

.iconCircle {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 80px;

  text-align: center;
  vertical-align: middle;

  font-size: 24px;
  color: #ffffff;
  background: #b4cfea;

  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.iconCircle img {
  width: 60%;
}

.minRowHeight {
  min-height: 620px;
}

.subSectionContent {
  font-size: 18px;
  font-weight: 400;
  text-align: justify;

  padding: 0 20px;
}

.cardCustomMission {
  position: relative;
  width: 20rem;
  min-height: 370px;
  border: 0 !important;
  border-radius: 10px;

  background: #b4cfea;
  color: #1e3853;
}

.cardCustomMission .cardBody {
  width: 100%;
  min-height: 268px;

  padding: 28px;
  padding-top: 40px;
}

.cardCustomMission .cardBody .card-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.cardCustomMission .cardBody .card-text {
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
}

.cornerIcon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 80px;

  text-align: center;
  vertical-align: middle;

  position: absolute;
  top: -47px;
  left: 0px;
  transform: translateX(-50%);
}

.cornerIcon img {
  width: 75%;
}

.photoContainer {
  position: relative;
  /* transition: transform ease 700ms; */
  text-align: center;

  border: 0 !important;
  border-radius: 10px;

  /* border: 1px solid red; */
}

.teamMemberPhoto {
  /* max-height: 388px; */
  /* width: 92%; */

  border-radius: 10px;
}

.photoTextOverlay {
  position: absolute;
  top: 268px;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  transform: translateX(-50%);

  width: 65%;

  background-color: #122130;
  color: #fff;
  padding: 24px;
  border-radius: 10px;
  text-align: center;

  /* border: 1px solid green; */
}

@media screen and (max-width: 1024px) {
  .photoContainer {
    margin-bottom: 270px;
  }

  .photoTextOverlay {
    width: 90%;
    top: 225px;
  }
}

@media screen and (max-width: 820px) {
  .photoContainer {
    margin-bottom: 270px;
  }

  .photoTextOverlay {
    width: 90%;
    top: 180px;
  }
}

@media screen and (max-width: 768px) {
  .photoContainer {
    margin-bottom: 270px;
  }

  .photoTextOverlay {
    width: 90%;
    top: 180px;
  }
}

@media screen and (max-width: 540px) {
  .photoContainer {
    margin-bottom: 220px;
  }

  .photoTextOverlay {
    width: 60%;
    top: 240px;
  }
}

@media screen and (max-width: 480px) {
  .photoContainer {
    margin-bottom: 300px;
  }

  .photoTextOverlay {
    width: 80%;
    top: 220px;
  }
}

.photoTextOverlay .name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;

  text-align: left;
  margin-bottom: 0;
}

.photoTextOverlay .position {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;

  text-align: left;
  margin-bottom: 15px;
}

.photoTextOverlay .description {
  color: #b4cfea;
  font-size: 14px;
  font-weight: 400;

  text-align: justify;
  margin-bottom: 0;
}

.spacerRowPh {
  min-height: 370px;
}

.spacerRow {
  min-height: 200px;
}

@media only screen and (max-width: 480px) {
  .spacerRowPh {
    min-height: 20px;
  }

  .spacerRow {
    min-height: 50px;
  }
}

.card-header {
  border-bottom: none;
  background-color: unset;
}
/* ######################## ABOUT US ######################## */

/* ######################## SERVICES ######################## */
.servicePageMain {
  background-color: rgb(14, 37, 69);
  /* background-blend-mode: multiply; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;

  min-height: 250px;
}

.serviceItemList li {
  list-style-type: square;
}

.headingService {
  font-size: 44px;
  font-weight: 600;
}

@media only screen and (max-width: 480px) {
  .headingService {
    font-size: 38px;
  }
}

.subHeadingService {
  font-size: 26px;
  font-weight: 600;
}

@media only screen and (max-width: 480px) {
  .subHeadingService {
    font-size: 23px;
  }
}

.mainDescriptionService {
  font-size: 19px;
  font-weight: 200;
}

.descriptionService {
  font-size: 19px;
  font-weight: 400;
}

.serviceCardCustom {
  border: 0 !important;
  border-radius: 10px;

  margin-bottom: 30px;
  /* transition: 0.6s ease-in-out; */

  overflow: hidden;
}

.serviceCardHeader {
  cursor: pointer;
  overflow: hidden !important;

  /* display: inline-block; */

  min-width: 356px;
  min-height: 257px;
}

.serviceCardHeader img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;

  min-width: 356px;
  min-height: 257px;

  max-height: 257px;

  overflow: hidden !important;
}

@media only screen and (max-width: 600px) {
  .serviceCardHeader img {
    min-width: unset;
    min-height: unset;

    max-height: unset;
  }
}

.serviceCardHeader:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);

  overflow: hidden !important;
}

.serviceCardBody {
  background-color: #b4cfea;
  color: #1e3853;

  border: 0 !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  padding: 10px;
}

.serviceCardBody .card-title {
  font-size: 20px;
  font-weight: 600;

  /* display: flex;
    flex-direction: column;
    justify-content: flex-start; */
}

.serviceCardBody .card-text {
  font-size: 20px;
  font-weight: 400;

  padding-top: 4px;
}

/* ######################## SERVICES ######################## */

/* ######################## CONTACT US ######################## */
.contactPage {
  /* background-color: #6DB3F2; */
  /* background-image: url(../images/contactus/open_laptop.png); */
  /* background-blend-mode: multiply; */

  /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
  color: #2c2c2c;
  /* color: blue; */
}

.roundedCard {
  border-radius: 1.2rem !important;
  border: 0 !important;
  background-color: #fff !important;
  /* opacity: 0.8; */
}

.contactLine {
  /* background-color: var(--primary-bg-color);*/
  color: #ffffff;
  border-radius: 8px;

  /* min-width: 250px; */

  /* height: 20px;
    line-height: 20px; */
  padding: 8px 10px;
  margin-bottom: 8px;
}

.contactLine .contactLineIcon {
  margin-right: 15px;
}

.inputStyle {
  /* height: 45px; */
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;

  border: 1px solid #dddddd !important;
  border-radius: 5px !important;

  color: var(--secondary-text-color) !important;
  margin-top: 10px;
}

.inputStyle:hover {
  border: 1px solid var(--accent-bg-color) !important;
}

.inputStyle::placeholder {
  font-size: 17px;
  opacity: 0.9;
  color: #9594a8;
}

.textareaStyle {
  height: 140px;

  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;

  border-radius: 5px !important;
  color: var(--secondary-text-color) !important;
  margin-top: 10px;
}

.textareaStyle:hover {
  border: 1px solid var(--accent-bg-color) !important;
}

.textareaStyle::placeholder {
  font-size: 17px;
  opacity: 0.9;
  color: #9594a8;
}

.contactSendBtn {
  background: linear-gradient(to left, #305982 50%, #021325 50%) right;
  background-size: 200%;
  transition: 0.3s ease-out;

  font-size: 18px !important;
  font-weight: 400;

  padding: 7px 20px;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 5px !important;
}

.contactSendBtn:hover {
  background-position: left;
  color: #ffffff !important;
  border: 0 !important;
}

.alertDanger {
  font-size: 16px !important;
  font-weight: 400;

  color: #ca0808;
  background-color: #e99097;
  /* border-color: #5c030a; */
}

.alertSuccess {
  font-size: 16px !important;
  font-weight: 400;

  color: #04aa12;
  background-color: #b4e7c0;
  /* border-color: #023b07; */
}

.contactsHeading {
  font-size: 40px;
  font-weight: 600;
  color: #2c2c2c;
  /* text-align: center; */
}

.mapArea {
  position: relative;
  /* border: 2px solid orange; */
  /* overflow: auto; */
  /* margin: 0 !important; */
  padding: 0 !important;
}

.contactFormArea {
  position: absolute;
  top: 10%;
  left: 15%;

  z-index: 1000;

  background: #ffffff;
  padding: 30px;

  border-radius: 10px;
}

.contactInfoArea {
  position: absolute;
  top: calc(50%- (276 / 2));
  right: 15%;

  z-index: 1000;

  background: #1e3853;
  padding: 30px;

  border-radius: 10px;
}

@media only screen and (max-width: 992px) {
  .contactFormArea {
    padding: 8px;
  }

  .contactInfoArea {
    padding: 8px;
  }
}

@media only screen and (max-width: 480px) {
  .mapArea {
    position: absolute;
    top: 400px;
    left: 0;
  }

  .contactFormArea {
    position: absolute;

    top: 700px;
    left: 0;

    z-index: 0;
  }

  .contactInfoArea {
    position: absolute;

    top: 1380px;
    left: 0;
    right: 0;
    /* right: unset; */

    margin: 5px 2px;
    z-index: 0;
    padding: 8px;
  }

  footer.footerContact {
    position: relative;

    top: 2000px;
    bottom: 0 !important;
    /* margin-top: auto; */

    /* border: 1px solid green; */
  }
}
/* ######################## CONTACT US ######################## */

/* ######################## PRE FOOTER AREA ######################## */
.preFooterArea {
  background-image: linear-gradient(
      rgba(30, 56, 83, 0.5),
      rgba(30, 56, 83, 0.5)
    ),
    url(../images/group-of-engineers-standing.png);
  background-repeat: no-repeat;
  background-size: 100% 385px;
  background-position: 0% bottom;
}

@media only screen and (max-width: 1280px) {
  .preFooterArea {
    background-image: linear-gradient(
        rgba(30, 56, 83, 0.5),
        rgba(30, 56, 83, 0.5)
      ),
      url(../images/group-of-engineers-standing.png);
    background-repeat: no-repeat;
    background-size: 100% 526px;
    background-position: 0% bottom;
  }
}

@media only screen and (max-width: 1024px) {
  .preFooterArea {
    background-image: linear-gradient(
        rgba(30, 56, 83, 0.5),
        rgba(30, 56, 83, 0.5)
      ),
      url(../images/group-of-engineers-standing.png);
    background-repeat: no-repeat;
    background-size: 100% 400px;
    background-position: 0% bottom;
  }
}

@media only screen and (max-width: 480px) {
  .preFooterArea {
    background-image: linear-gradient(
        rgba(30, 56, 83, 0.5),
        rgba(30, 56, 83, 0.5)
      ),
      url(../images/group-of-engineers-standing.png);
    background-repeat: no-repeat;
    background-size: 100% 400px;
    background-position: 0% bottom;
  }
}

@media only screen and (min-width: 1367px) {
  .preFooterArea {
    background-image: linear-gradient(
        rgba(30, 56, 83, 0.5),
        rgba(30, 56, 83, 0.5)
      ),
      url(../images/group-of-engineers-standing.png);
    background-repeat: no-repeat;
    background-size: 100% 526px;
    background-position: 0% bottom;
  }
}

.preFooterSpacer2 {
  height: 526px;
}

@media only screen and (max-width: 1280px) {
  .preFooterSpacer2 {
    height: 526px;
  }
}

@media only screen and (max-width: 1024px) {
  .preFooterSpacer2 {
    height: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .preFooterSpacer2 {
    height: unset;
  }
}

@media only screen and (min-width: 1367px) {
  .preFooterSpacer2 {
    height: 526px;
  }
}

.preFooterText {
  font-family: "Kumbh Sans", serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}

@media only screen and (max-width: 480px) {
  .preFooterText {
    font-family: "Kumbh Sans", serif;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 20px;

    text-shadow: 2px 4px 4px #000000;
  }
}

.contactUsBtnFooter {
  font-size: 22px;
  font-weight: 600;
  margin-top: 17px;
  padding: 2px 40px;

  border: 1px solid #305982 !important;
  color: #ffffff;

  background: linear-gradient(to left, #305982 50%, #021325 50%) right;
  background-size: 200%;
  transition: 0.3s ease-out;
}

@media only screen and (max-width: 480px) {
  .contactUsBtnFooter {
    font-size: 16px;
    padding: 2px 20px;
  }
}

.contactUsBtnFooter:hover {
  background-position: left;

  /* border-color: #FFFFFF; */
  border: 1px solid #ffffff !important;
  color: #ffffff;
}
/* ######################## PRE FOOTER AREA ######################## */

/* #################### carousel style #################### */
.carousel-caption {
  top: 595px;
  bottom: auto;
}

.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-bg-color);
}

.carousel-indicators {
  bottom: -65px;
}

#carouselContainer {
  /* width: 530px; */

  /* border: 3px solid green; */
}

/*
.carouselInnerContainer { 
    min-height: 341px !important;
    max-height: 355px !important;
}
*/

.carousel .carousel-item img {
  width: 100%;
}

.carousel-item {
  background-color: grey;
}

/* .carousel-control-prev {
    left: -90px;
}
.carousel-control-next {
    right: -90px;
} */

.carousel-control-prev-icon {
  color: red;
}
.carousel-control-next-icon {
  color: red;
}
/* #################### carousel style #################### */
