html {
  font-size: 15px;
}

@font-face {
  font-family: PlusJakartaSans-Regular;
  src: url(../assets/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Regular.ttf);
}
@font-face {
  font-family: PlusJakartaSans-Bold;
  src: url(../assets/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Bold.ttf);
}
body {
  font-family: PlusJakartaSans-Regular;
  line-height: 1.5;
  letter-spacing: 1px;
}

h1,
h3,
h4 {
  font-family: PlusJakartaSans-Bold;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

a {
  font-family: PlusJakartaSans-Bold;
  font-weight: 500;
}

/* --------------- Colors --------------- */
:root {
  --primaryColor: #9ef9ff;
  --secondaryColor: #fabdae;
  --backgroundColor: #ffffff;
  --headerColor: #ffffff;
  --textColor: black;
  --containerColoredTextColor: black;
  --swiperTextColor: white;
  --footerTextColor: white;
  --horizontalruleColor: orangered;
  --serviceBoxColor: white;
  --serviceBoxTextColor: #000;
  --socialsBorderColor: black;
}

body {
  background-color: var(--backgroundColor);
}

h1,
h2,
h3,
h4,
p,
label {
  color: var(--textColor);
}

/* Text color for containers that have a gradient background */
.container-color h2,
.container-color h3,
.container-color h4,
.container-color p {
  color: var(--containerColoredTextColor) !important;
}

/* Header Navigation Color */
nav a {
  color: #1a1a1a;
}

/* --------------- Mobile Nav Buttons --------------- */
#hamburger,
#close {
  /* Dark Buttons */
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7435%) hue-rotate(261deg) brightness(113%) contrast(98%);
          filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7435%) hue-rotate(261deg) brightness(113%) contrast(98%);
  /* White Buttons */
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7496%)
    hue-rotate(231deg) brightness(116%) contrast(91%); */
}

/* Swiper text color */
.swiper h1,
.swiper p {
  color: var(--swiperTextColor);
}

/* Button Text Color */
.button {
  color: black !important;
}

/* Footer Colors */
footer h3,
footer h4,
footer p,
footer a {
  color: var(--footerTextColor);
}
footer .copyright {
  background-color: var(--backgroundColor);
}
footer .copyright p,
footer .copyright a {
  color: var(--textColor);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  scroll-margin-top: 85px;
  scroll-behavior: smooth;
}

/* --------------- Containers --------------- */
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  max-width: 1440px;
  padding: 50px;
  gap: 40px;
}

.container-color {
  background: linear-gradient(-25deg, var(--primaryColor), var(--secondaryColor));
}
.container-color.inverted {
  background: linear-gradient(-25deg, var(--secondaryColor), var(--primaryColor));
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  text-align: center;
}
.heading p {
  max-width: 900px;
}

hr {
  max-width: 100px;
  border: 0;
  background-color: var(--horizontalruleColor);
  height: 3px;
  width: 100%;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

/* ---------------  Buttons ---------------  */
.button {
  padding: 14px;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.button.btn-color-1 {
  background-color: var(--secondaryColor);
}
.button.btn-color-2 {
  background-color: var(--primaryColor);
}

/* --------------- Header  --------------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--headerColor);
  -webkit-box-shadow: 0px 0px 5px rgba(126, 126, 126, 0.534);
          box-shadow: 0px 0px 5px rgba(126, 126, 126, 0.534);
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: 90px;
  padding: 1.5rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-content .header-logo {
  display: block;
  font-size: 0;
}
header .header-content .header-logo img {
  max-width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  text-align: center;
}
header .header-content nav a {
  text-decoration: none;
}

/* ---------------  Socials --------------- */
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  border-left: 2px solid var(--socialsBorderColor);
  padding-left: 30px;
}
.socials a {
  font-size: 17px;
}

/* --------------- Mobile Nav Buttons --------------- */
#hamburger,
#close {
  display: none;
  width: 30px;
  cursor: pointer;
}

/* --------------- Swiper --------------- */
.swiper {
  height: 80vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.swiper .swiper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 55px;
  -webkit-transition: none !important;
  transition: none !important;
}
.swiper .swiper-content h1 {
  max-width: 600px;
}
.swiper .swiper-content p {
  max-width: 600px;
}

/* Introduction & About Us */
.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.grid-col-2 .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.grid-col-2 .grid-item img {
  width: 100%;
}

/* --------------- Services --------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-grid .service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  background-color: var(--serviceBoxColor);
  padding: 25px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s -webkit-transform;
  transition: 0.6s -webkit-transform;
  transition: 0.6s transform;
  transition: 0.6s transform, 0.6s -webkit-transform;
  aspect-ratio: 1/1;
  align-items: center;
  border-radius: 5px;
}
.service-grid .service-box i {
  font-size: 90px;
  color: var(--secondaryColor);
}
.service-grid .service-box:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.service-grid .service-box p,
.service-grid .service-box h3 {
  color: var(--serviceBoxTextColor) !important;
}

/* --------------- Team Section --------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.team-grid .team-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: center;
}
.team-grid .team-member img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  max-width: 250px;
  width: 100%;
}

/* --------------- Contact --------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  max-width: 900px;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
}
.contact-grid .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.contact-grid .contact-details .contact-detail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-grid .contact-details .contact-detail i {
  font-size: 27px;
  color: var(--secondaryColor);
}
.contact-grid .contact-details .contact-detail .contact-detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* --------------- Contact Form  --------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
form label {
  margin-bottom: 5px;
  font-weight: bold;
}
form input,
form textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: none;
  background-color: rgb(241, 241, 241);
  border-radius: 5px;
  font-weight: bold;
}
form textarea {
  resize: vertical;
  min-height: 150px;
}
form button {
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* --------------- Leaflet map --------------- */
#map {
  height: 450px;
  z-index: 1;
}

.leaflet-right {
  display: none;
}

/* --------------- Footer --------------- */
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  min-height: 450px;
}
footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -webkit-filter: brightness(0.4);
          filter: brightness(0.4);
}
footer .footer-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5rem 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}
footer .footer-content .footer-logo {
  max-width: 150px;
}
footer .footer-content .socials {
  border: none;
  padding: 0;
}
footer .footer-content .footer-content-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
footer .footer-content .footer-content-col .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
footer .footer-content .footer-content-col .footer-info a {
  text-decoration: none;
  font-weight: 200;
  font-family: PlusJakartaSans-Regular;
}
footer .copyright {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: bold;
}

/* --------------- Success Page --------------- */
#success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 400px;
  height: calc(100svh - 90px);
}
#success h2 {
  font-size: 4rem;
}

@media only screen and (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-col-2 {
    gap: 25px;
  }
}
@media only screen and (max-width: 992px) {
  header .header-content nav {
    gap: 20px;
  }
  header .header-content nav a {
    font-size: 0.9rem;
  }
  header .header-content nav .socials {
    padding-left: 20px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  header .header-content nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
  .swiper {
    height: auto;
  }
  .swiper .swiper-content {
    padding: 40px;
    height: 100%;
    min-height: 400px;
  }
  .swiper img {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 15px !important;
  }
  .grid-col-2,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid .service-box {
    aspect-ratio: unset;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  header .header-content nav {
    display: none;
    background: var(--backgroundColor);
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    gap: 15px;
  }
  header .header-content nav a {
    font-size: 1.2rem;
  }
  header .header-content nav .socials {
    border: none;
    padding: 0;
    gap: 20px;
    margin: 10px 0;
  }
  header .header-content nav .socials i {
    font-size: 24px;
  }
  #hamburger,
  #close {
    display: block;
  }
  #close {
    position: absolute;
    top: 30px;
    right: 20px;
  }
  h1 {
    font-size: 1.9rem;
  }
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media only screen and (max-width: 600px) {
  * {
    scroll-margin-top: 70px;
  }
  header .header-content {
    height: 70px;
  }
  #close {
    top: 20px;
  }
  .container {
    padding: 20px;
  }
  .grid-col-2 {
    gap: 20px;
  }
  .grid-col-2 .grid-item {
    padding: 0;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  #success {
    height: calc(100svh - 70px);
  }
  #success h2 {
    font-size: 3rem;
  }
}/*# sourceMappingURL=style.css.map */