@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #777777;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 1px solid #E9E9E9;
  transition: 0.5s all ease;
}
header .navBtn {
  display: none;
}
header .logo {
  display: inline-block;
}
header .logo img {
  max-width: 150%;
  height: auto;
  width: 100%;
}
header .language {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  align-items: center;
  gap: 5px;
}
header .language a {
  color: #353535;
  text-decoration: none;
}
header .socialList {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
header .socialList a {
  color: #353535;
}
header .topNav {
  padding-top: 10px;
  transition: 0.5s all ease;
}
header .topNav .socialList {
  justify-content: flex-end;
}
header .bottomNav {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0;
  visibility: visible;
  opacity: 1;
  transition: 0.5s all ease;
}
header .bottomNav .navList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}
header .bottomNav .navList a {
  color: #353535;
  text-decoration: none;
}
header .bottomNav .navList a.active {
  color: #810C0C;
  font-weight: 600;
}
header.scrolled {
  background-color: #fff;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.15);
}
header.scrolled .bottomNav {
  margin-top: -44px;
  visibility: hidden;
  opacity: 0;
}
header.scrolled .topNav {
  padding-bottom: 10px;
}
header:hover .bottomNav, header.scrolled:hover .bottomNav {
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}
header:hover .topNav, header.scrolled:hover .topNav {
  padding-bottom: 0px;
}

.outlineLogo {
  position: fixed;
  right: 150px;
  top: 0;
  height: 70vh;
  width: 70vh;
  opacity: 6%;
  z-index: -1;
  animation: rotation 100s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main {
  margin-top: 117px;
}
main section {
  scroll-margin-top: 80px;
}
main #home {
  position: relative;
  overflow: hidden;
}
main #home img {
  width: 100%;
  height: calc(100vh - 117px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main #home .textContent {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
}
main #home .textContent h1 {
  text-transform: uppercase;
  text-shadow: 0 2px 20px #000;
  font-size: 4rem;
}
main #home .textContent h5 {
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 20px #000;
  font-size: 1.5rem;
}
main #home .downArrow {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
main #home .downArrow span {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 15px;
  top: 15px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  animation-name: anim;
  animation-duration: 2.1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
main #home .downArrow span:first-child {
  animation-delay: -0.7s;
}
main #home .downArrow span:last-child {
  animation-delay: -1.4s;
}
main #stats {
  padding-top: 80px;
}
main #stats .div20 {
  padding-left: 0;
  padding-right: 0;
}
main #stats .div20:not(:last-child) {
  border-right: 1px solid #ccc;
}
main #stats .numcard {
  padding: 40px;
  text-align: center;
  color: #aaaaaa;
}
main #stats .numcard .counter-value {
  font-family: "Libre Bodoni", serif;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #322929;
}
main #stats .numcard .counter-value.subText::after {
  content: attr(data-after);
  font-size: 1.5rem;
}
main #stats .numcard .text-counter {
  font-weight: 400;
  color: #322929;
}
main #history {
  background-color: #f5f5f5;
}
main #process {
  background-color: #ECE1E1;
  text-align: center;
}
main #process .div20 {
  position: relative;
}
main #process .div20:not(:last-child)::before {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: #000;
  position: absolute;
  right: 0;
  top: 70px;
  transform: translate(50%, -50%);
}
main #process .icon {
  display: grid;
  width: 100%;
  max-width: 140px;
  padding: 45px;
  background-color: #E6CECE;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
}
main #process .icon lord-icon {
  width: 50px;
  height: 50px;
}
main #process p {
  margin-bottom: 0;
  margin-top: 25px;
  color: #322929;
}
main #destinations .mapList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
main #destinations .mapList .maps {
  position: relative;
  text-align: center;
  flex: 0 0 100%;
  order: -1;
  max-width: 100%;
}
main #destinations .mapList .maps img {
  transition: 0.3s all ease;
  max-width: 100%;
  height: auto;
}
main #destinations .mapList .maps img:not(.default) {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
main #destinations .mapList .mapBtn {
  padding: 15px 25px;
  background-color: #E1E1E1;
  color: #810C0C;
}
main #destinations .mapList .mapBtn:hover {
  background-color: #810C0C;
  color: #fff;
}
main #destinations .mapList .mapBtn.china:hover ~ .maps img.china {
  opacity: 1;
}
main #destinations .mapList .mapBtn.italy:hover ~ .maps img.italy {
  opacity: 1;
}
main #destinations .mapList .mapBtn.turkey:hover ~ .maps img.turkey {
  opacity: 1;
}
main #destinations .mapList .mapBtn.malaysia:hover ~ .maps img.malaysia {
  opacity: 1;
}
main #destinations .mapList .mapBtn.indonesia:hover ~ .maps img.indonesia {
  opacity: 1;
}
main #destinations .mapList .mapBtn.india:hover ~ .maps img.india {
  opacity: 1;
}
main #products {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
main #products::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ECE1E1;
}
main #products .owl-carousel .owl-stage-outer {
  overflow: unset;
}
main #projects {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
main #projects::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #ECE1E1;
}
main #projects .owl-carousel .owl-stage-outer {
  overflow: unset;
}
main #projects .nav-underline {
  border-bottom: 1px solid #DEBEBE;
}
main #projects .nav-underline .nav-link {
  color: #000;
  font-weight: 200;
}
main #projects .nav-underline .nav-link:hover {
  color: #610909;
  border-color: #610909;
}
main #projects .nav-underline .nav-link.active, main #projects .nav-underline .show > .nav-link {
  font-weight: 600;
  color: #810C0C;
  border-color: #810C0C;
}
main #clients {
  overflow: hidden;
}
main #clients .owl-carousel .owl-stage-outer {
  overflow: unset;
}
main #clients .owl-carousel .owl-stage-outer .owl-item:not(.active) {
  opacity: 0;
}
main #clients .owl-carousel .owl-stage-outer .owl-item.active ~ .owl-item {
  opacity: 1;
}
main #awards {
  background-color: #ECE1E1;
}
main #awards #award {
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap: 24px;
  -moz-column-count: 4;
  -moz-column-gap: 24px;
  column-count: 4;
  column-gap: 24px;
  position: relative;
  transition: 0.3s all ease;
  height: 100%;
}
main #awards #award::before {
  content: "";
  position: absolute;
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(0deg, #ECE1E1, transparent);
  transition: 0.3s all ease;
}
main #awards #award img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 24px;
  transition: 0.3s all ease;
}
main #awards #award.disabled {
  height: 350px;
  overflow: hidden;
  pointer-events: none;
}
main #awards #award.disabled::before {
  height: 100%;
}
main #awards #awardToggle::after {
  content: " More";
}
main #awards #awardToggle.less::after {
  content: " Less";
}
main #awards .img-grid-c {
  cursor: pointer;
  transition: 0.3s all ease;
}
main #awards .img-grid-c:hover {
  opacity: 0.8;
}
main #blogs {
  position: relative;
}
main #blogs::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-color: #ECE1E1;
  bottom: 0;
  left: 0;
}
main #blogs .blogCard {
  position: relative;
}
main #blogs .blogCard .imgWrapper {
  padding-top: 75%;
  width: 100%;
  position: relative;
  z-index: 1;
}
main #blogs .blogCard .imgWrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main #blogs .blogCard .textSide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  z-index: 2;
  color: #fff;
  display: grid;
  align-content: flex-end;
}
main #blogs .blogCard .textSide h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  -webkit-box-orient: vertical;
  font-weight: 600;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}
main #blogs .blogCard .textSide p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
main #testimonials {
  background-color: #ECE1E1;
}
main #testimonials .testimonialCard p {
  color: #8D7575;
}
main #testimonials .testimonialCard h6 {
  color: #810C0C;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
main #contact {
  background-color: #E6CECE;
  color: #322929;
  padding-top: 80px;
  padding-bottom: 80px;
}
main #contact h4 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
main #contact .form-control {
  border-radius: 0;
  background-color: transparent;
  border-width: 0 0 1px 0;
  border-color: #322929;
  padding-left: 0;
  padding-right: 0;
}
main #contact .form-control:focus {
  box-shadow: none;
}
main #contact .form-floating > label {
  padding-left: 0;
  padding-right: 0;
}
main #contact .form-floating > label::after {
  display: none;
}
main #contact .form-floating > .form-control, main #contact .form-floating > .form-control-plaintext {
  padding-left: 0;
  padding-right: 0;
}
main #contact .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  opacity: 1;
  color: #322929;
}
main #contact .form-floating > .form-control-plaintext ~ label,
main #contact .form-floating > .form-control:focus ~ label,
main #contact .form-floating > .form-control:not(:placeholder-shown) ~ label,
main #contact .form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  opacity: 1;
  color: #322929;
}
main #services {
  counter-set: service;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
main #services::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ECE1E1;
}
main #services .serviceCard {
  position: relative;
  color: #000;
  counter-increment: service;
  overflow: hidden;
}
main #services .serviceCard::before {
  content: "0" counter(service);
  font-size: 4rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  z-index: 1;
  left: -11px;
  top: -14px;
}
main #services .serviceCard .imgWrapper {
  position: relative;
  padding-top: 75%;
  width: 100%;
  background-color: #000;
  margin-bottom: 15px;
}
main #services .serviceCard .imgWrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.85;
}
main #services .serviceCard ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
main #contactDetails .mapSide {
  display: grid;
}
main #contactDetails .mapSide iframe {
  width: 100%;
  height: 100%;
}
main .projectPage::before {
  display: none;
}

.bigText {
  font-size: 20px;
}

.capitalLink {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  color: #810C0C;
  text-decoration: none;
  transition: 0.3s all ease;
}
.capitalLink:hover {
  letter-spacing: 2px;
}

.imageCard {
  display: block;
  color: #322929;
  text-decoration: none;
}
.imageCard:hover {
  color: #810C0C;
}
.imageCard:hover img {
  transform: scale(1.1);
}
.imageCard .imgWrapper {
  padding-top: 75%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.imageCard .imgWrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s all ease;
}

.projectCard {
  position: relative;
  display: block;
  text-decoration: none;
}
.projectCard .imgWrapper {
  padding-top: 75%;
  position: relative;
  width: 100%;
}
.projectCard .imgWrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.projectCard .text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  display: grid;
  align-content: flex-end;
  padding: 20px;
  transition: 0.3s all ease;
}
.projectCard .text h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
}
.projectCard .text p {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}
.projectCard:hover .text {
  background-color: rgba(129, 12, 12, 0.2);
}

.siteBtn {
  min-width: 200px;
  padding: 15px 25px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  background-color: transparent;
  display: inline-block;
  transition: 0.3s all ease;
  text-align: center;
}
.siteBtn.outline {
  border: 1px solid;
  background-color: transparent;
}
.siteBtn.white {
  background-color: #fff;
  color: #322929;
}
.siteBtn.white:hover {
  background-color: #ddd;
  color: #322929;
}
.siteBtn.black {
  background-color: #322929;
  color: #fff;
}
.siteBtn.black:hover {
  background-color: #4a4a4a;
  color: #fff;
}
.siteBtn.black.outline {
  background-color: transparent;
  border-color: #322929;
  color: #322929;
}
.siteBtn.black.outline:hover {
  background-color: #322929;
  color: #fff;
}

.breadcrumb-item a {
  color: #810C0C;
  text-decoration: none;
}

@keyframes anim {
  0% {
    transform: rotate(-45deg) translate(15px, -15px);
    opacity: 0;
  }
  50% {
    transform: rotate(-45deg) translate(3px, -3px);
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-8px, 8px);
    opacity: 0;
  }
}
.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.para {
  line-height: 2;
}

.arrowBtn {
  color: #810C0C;
  background-color: transparent;
  border: none;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 20px;
  transition: 0.3s all ease;
  line-height: 1;
}
.arrowBtn:hover {
  background-color: #810C0C;
  color: #fff;
}

.mainTitle {
  margin-bottom: 20px;
}
.mainTitle h3 {
  color: #322929;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 0;
}

.link {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.link::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  right: 0;
  left: auto;
  transition: 0.3s width ease;
}
.link:hover {
  text-decoration: none;
  color: #fff;
}
.link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.link.dark {
  color: #777777;
}
.link.dark::before {
  background-color: #777777;
}
.link.dark:hover {
  color: #777777;
}

.addressCard {
  background-color: #E6CECE;
  box-shadow: 0 10px 50px rgba(141, 117, 117, 0.15);
  padding: 40px;
}
.addressCard h4 {
  color: #810C0C;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.addressCard .iconDiv {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #775d5d;
}
.addressCard .iconDiv .icon {
  width: 32px;
  height: 32px;
  color: #fff;
  background-color: #810C0C;
  display: grid;
  place-content: center;
  border-radius: 10px;
}
.addressCard .iconDiv p {
  margin-bottom: 0;
}
.addressCard .iconDiv .link.dark {
  color: #775d5d;
}
.addressCard .iconDiv .link.dark::before {
  background-color: #775d5d;
}
.addressCard .iconDiv .link.dark:hover {
  color: #775d5d;
}

footer {
  background-color: #322929;
  color: #fff;
}
footer .topNav {
  padding-top: 80px;
  padding-bottom: 50px;
}
footer .topNav .logo {
  max-width: 233px;
  height: auto;
  margin-bottom: 20px;
}
footer .topNav .linkList {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
footer .topNav .linkList li {
  margin-bottom: 15px;
}
footer .topNav .socialList {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
footer .topNav .socialList a {
  color: #ffffff;
}
footer .topNav .topPad {
  padding-top: 39px;
}
footer .topNav .topPad h4 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
footer .copy {
  border-top: 1px solid #595252;
  padding: 20px;
  text-align: center;
}

@media (min-width: 992px) {
  .div20 {
    flex: 0 0 auto;
    width: 20%;
    display: grid;
  }
}
.floatingBtns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 2;
  transform: translateY(calc(100% + 20px));
  transition: 0.5s all ease;
}
.floatingBtns.active {
  transform: translateY(0);
}
.floatingBtns div:hover {
  transform: translateY(-3px);
}

.whatsappBtn {
  background: linear-gradient(#34b77d, #5bbd7c);
  display: inline-grid;
  place-content: center;
  z-index: 20;
  width: 60px;
  height: 60px;
  padding: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
  border-radius: 30px;
  transition: 0.5s all ease;
}
.whatsappBtn i {
  color: #fff;
}
.whatsappBtn span {
  display: none;
}
.whatsappBtn:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  bottom: 21px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}
.whatsappBtn:active {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.callBtn {
  background: linear-gradient(#588cfe, #0058cc);
  display: inline-grid;
  place-content: center;
  z-index: 20;
  width: 60px;
  height: 60px;
  padding: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
  border-radius: 30px;
  transition: 0.5s all ease;
}
.callBtn i {
  color: #fff;
  font-size: 24px;
}
.callBtn span {
  display: none;
}
.callBtn:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  bottom: 21px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}
.callBtn:active {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

#blogDetails .blogImgWrapper {
  position: relative;
  height: 70svh;
  width: 100%;
}
#blogDetails .blogImgWrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 991px) {
  main #history #stats .div20,
  main #about #stats .div20 {
    flex: 1 0 50%;
    border: solid #ccc;
  }
  main #history #stats .div20:nth-child(1),
  main #about #stats .div20:nth-child(1) {
    border-width: 1px 1px 1px 1px;
  }
  main #history #stats .div20:nth-child(2),
  main #about #stats .div20:nth-child(2) {
    border-width: 1px 1px 1px 0;
  }
  main #history #stats .div20:nth-child(3),
  main #about #stats .div20:nth-child(3) {
    border-width: 0 1px 1px 1px;
  }
  main #history #stats .div20:nth-child(4),
  main #about #stats .div20:nth-child(4) {
    border-width: 0 1px 1px 0;
  }
  main #history #stats .div20:nth-child(5),
  main #about #stats .div20:nth-child(5) {
    border-width: 0 1px 1px 1px;
  }
  main #process .row {
    row-gap: 24px;
    justify-content: center;
  }
  main #process .div20 {
    flex: 0 0 33.333333%;
  }
  main #process .div20:not(:last-child)::before {
    display: none;
  }
  main #services::before {
    height: 65%;
  }
  main #services .div20 {
    flex: 0 0 33.333333%;
  }
  main #contactDetails .mapSide iframe {
    height: 50vw;
  }
}
@media (max-width: 767px) {
  header:hover .bottomNav, header.scrolled:hover .bottomNav {
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
  }
  header:hover .topNav, header.scrolled:hover .topNav {
    padding-bottom: 10px;
  }
  header .logo img {
    max-width: 100px;
    height: auto;
  }
  header .topNav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .topNav .col-md-4:first-child {
    display: none;
  }
  header .topNav .col-md-4.col-6.text-md-center {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
  }
  header .topNav .col-md-4:last-child {
    flex: 0 0 auto;
  }
  header .topNav .socialList {
    margin-top: 10px;
  }
  header .bottomNav {
    position: fixed;
    display: grid;
    place-content: center;
    width: 100%;
    height: calc(100% - 63px);
    background-color: rgba(255, 255, 255, 0.79);
    left: 0;
    top: 63px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transform: translateX(-100%);
    transition: 0.5s all ease;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
  header .bottomNav.active {
    transform: translateX(0);
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
  header .bottomNav .navList {
    flex-direction: column;
    font-size: 2rem;
    align-items: center;
  }
  header .navBtn {
    display: block;
    width: 42px;
    height: 42px;
    border: none;
    background-color: transparent;
    padding: 0;
  }
  header .navBtn span {
    width: 30px;
    margin: 6px auto;
    height: 2px;
    background-color: #000;
    display: block;
    transition: 0.3s all ease;
  }
  header .navBtn span:nth-child(1) {
    width: 15px;
    margin-left: 6px;
  }
  header .navBtn span:nth-child(3) {
    width: 15px;
    margin-right: 6px;
  }
  header .navBtn.active span:nth-child(1), header .navBtn.active span:nth-child(3), header .navBtn:active span:nth-child(1), header .navBtn:active span:nth-child(3) {
    width: 30px;
  }
  main {
    margin-top: 63px;
  }
  main #home img {
    height: calc(100vh - 63px);
  }
  main #home .textContent h1 {
    font-size: 3rem;
  }
  main #home .textContent h5 {
    font-size: 1.2rem;
  }
  main #about .row.align-items-center {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  main #awards #award {
    -moz-column-count: 3;
         column-count: 3;
  }
  main #services::before {
    height: 75%;
  }
  main #services .div20 {
    flex: 0 0 50%;
  }
}
@media (max-width: 576px) {
  .mainTitle h3 {
    font-size: 2rem;
  }
  .mainTitle.d-flex {
    row-gap: 0 !important;
  }
  .mainTitle.d-flex h3 {
    flex: 0 0 100%;
  }
  main #home .textContent h1 {
    font-size: 11vw;
  }
  main #home .textContent h5 {
    font-size: 5vw;
  }
  main #blogs .blogCard .textSide h4 {
    font-size: 1.2rem;
  }
  main #process .div20 {
    flex: 0 0 100%;
  }
  main #awards #award {
    -moz-column-count: 2;
         column-count: 2;
  }
  main #services::before {
    height: 85%;
  }
  main #services .div20 {
    flex: 0 0 100%;
  }
  main .breadcrumb {
    font-size: 12px;
  }
  main .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 3px;
  }
  main .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 3px;
  }
  .projectCard .text {
    padding: 10px;
  }
  .projectCard .text h5 {
    font-size: 1rem;
  }
  .sectionPad {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .floatingBtns {
    width: 100%;
    bottom: 0;
    right: 0;
    background-color: #fff;
    gap: 0;
    border-top: 1px solid #ccc;
  }
  .floatingBtns .whatsappBtn {
    width: 50%;
    height: auto;
    border-radius: 0;
    font-size: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    background: #fff;
    border-right: 1px solid #ccc;
  }
  .floatingBtns .whatsappBtn span {
    display: inline-block;
    font-size: 0.875rem;
    color: #610909;
  }
  .floatingBtns .whatsappBtn i {
    color: #610909;
  }
  .floatingBtns .callBtn {
    width: 50%;
    height: auto;
    border-radius: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    background: #fff;
  }
  .floatingBtns .callBtn span {
    display: inline-block;
    font-size: 0.875rem;
    color: #610909;
  }
  .floatingBtns .callBtn i {
    font-size: 20px;
    color: #610909;
  }
  footer {
    padding-bottom: 50px;
  }
}/*# sourceMappingURL=main.css.map */