@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --main-color: white;
  --accent-color: #2d4d67;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  background: linear-gradient(-45deg, #e5e5e5, #fff);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.button {
  padding: 10px;
  outline: none;
  width: 8.75rem;
  color: #fff;
  display: block;
  background: #06c16f;
  border: none;
  border-radius: 10px;
  letter-spacing: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.button:active {
  background: #007a63;
}

.button__text {
  font-weight: 500;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.button--loading .button__text {
  visibility: hidden;
  opacity: 0;
}

.button--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: button-loading-spinner 1s ease infinite;
          animation: button-loading-spinner 1s ease infinite;
}

@-webkit-keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
button {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

button a {
  display: block;
  width: 100%;
  height: 100%;
}

section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section .map {
  width: 100%;
  height: 100%;
  padding: 50px;
}

p {
  line-height: 1.5;
}

a {
  color: #fff;
  text-decoration: none;
  scroll-behavior: smooth;
}

.nav-logo {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.nav-logo img {
  width: 40%;
  height: auto;
  margin-left: 24px;
}

nav {
  position: fixed;
  width: 100vw;
  height: 80px;
  background-color: #27445c;
  z-index: 999;
  /* overflow-x: hidden; */
}
nav .nav-container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .nav-container .mobile {
  display: none;
}
nav .nav-container .nav-menu {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* margin-right: 200px; */
}
nav .nav-container .nav-menu .nav-items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 24px;
}
nav .nav-container .nav-menu .nav-items .nav-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  list-style: none;
  padding: 12.5px;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
nav .nav-container .nav-menu .nav-items .nav-item .dropdown {
  display: none;
}
nav .nav-container .nav-menu .nav-items .nav-item:hover .dropdown {
  display: block;
  position: absolute;
  background-color: #27445c;
  margin-top: 15px;
  margin-left: -15px;
  padding: 20px;
  z-index: 999;
}
nav .nav-container .nav-menu .nav-items .nav-item:hover .dropdown ul {
  display: block;
  margin: 10px;
  list-style: none;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
nav .nav-container .nav-menu .nav-items .nav-item:hover .dropdown ul li {
  width: 200px;
  padding: 15px;
  border-bottom: 1px solid #06c16f;
}
nav .nav-container .nav-menu .nav-items .nav-item a {
  text-decoration: none;
  color: white;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
nav .nav-container .nav-menu .nav-items .nav-item a:hover {
  color: #06c16f;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav .nav-container .bar-menu {
  display: none;
  cursor: pointer;
}
nav .nav-container .bar-menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #06c16f;
  border-radius: 20px;
}

footer {
  background: #27445c;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
}
footer .footer-wrapper {
  padding: 40px 24px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
footer .footer-wrapper .footer-links-container {
  display: block;
}
footer .footer-wrapper .footer-links-container .footer-links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-wrapper .footer-links-container .footer-links-wrapper .footer-link-items {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer-wrapper .footer-links-container .footer-links-wrapper .footer-link-items .footer-link-title {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
footer .footer-wrapper .footer-links-container .footer-links-wrapper .footer-link-items .footer-link {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 14px;
}
footer .footer-wrapper .footer-links-container .footer-links-wrapper .footer-link-items .footer-link:hover {
  color: #06c16f;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
footer .footer-wrapper .social-media {
  width: 100%;
}
footer .footer-wrapper .social-media .social-media-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px auto 0 auto;
}
footer .footer-wrapper .social-media .social-media-wrapper .social-logo {
  color: #fff;
  justify-self: start;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  font-weight: bold;
}
footer .footer-wrapper .social-media .social-media-wrapper .social-logo:hover {
  color: #81f7b6;
}
footer .footer-wrapper .social-media .social-media-wrapper .website-rights {
  color: #fff;
  margin-bottom: 16px;
}
footer .footer-wrapper .social-media .social-media-wrapper .social-icons {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
}
footer .footer-wrapper .social-media .social-media-wrapper .social-icons .social-icon-link {
  color: #fff;
  text-decoration: none !important;
  font-size: 24px;
  padding: 10px;
}
footer .footer-wrapper .social-media .social-media-wrapper .social-icons .social-icon-link:hover {
  color: #81f7b6;
}

#pms {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide {
  height: 100vh;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.swiper .swiper-pagination {
  position: absolute;
  z-index: 999;
  /* width: auto !important;
  height: auto !important; */
  /* bottom: 50px; */
}
.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #06c16f;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #497da7;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.section-img {
  height: 100vh;
  width: 100%;
}
.section-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(transparent));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  z-index: 1;
}

.service-section {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.service-section .left-section,
.service-section .middle-section,
.service-section .right-section {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 150px 0px 150px;
}
.service-section .left-section {
  grid-column: span 3;
  grid-row: 1;
}
.service-section .left-section .content {
  width: 100%;
  height: 100%;
  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;
}
.service-section .left-section .content h2 {
  width: 600px;
  text-align: center;
  text-transform: uppercase;
}
.service-section .middle-section {
  grid-column: span 3;
  grid-row: 2;
  padding: 0px;
}
.service-section .middle-section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-section .middle-section .content ul {
  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;
  margin: 10px;
  list-style: none;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  text-align: center;
}
.service-section .middle-section .content ul li {
  width: 200px;
  padding: 15px;
  border-bottom: 1px solid #06c16f;
  text-transform: capitalize;
}
.service-section .middle-section .content .services-cards {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0px 150px;
}
.service-section .middle-section .content .services-cards .row {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
}
.service-section .middle-section .content .services-cards .row .section-heading {
  grid-column: span 4;
}
.service-section .middle-section .content .services-cards .row p {
  grid-column: span 3;
}
.service-section .middle-section .content .services-cards .column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.service-section .middle-section .content .services-cards .column .card {
  width: 100%;
  height: 250px;
  min-width: 210px;
  max-height: 300px;
  padding: 2em 1.5em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), color-stop(50%, #27445c));
  background: linear-gradient(#ffffff 50%, #27445c 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: hidden;
}
.service-section .middle-section .content .services-cards .column .card .icon-wrapper {
  background-color: #06c16f;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.service-section .middle-section .content .services-cards .column .card .icon-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.service-section .middle-section .content .services-cards .column .card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #06c16f;
  margin: 1em 0;
  width: 100%;
  text-align: center;
}
.service-section .middle-section .content .services-cards .column .card p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
.service-section .middle-section .content .services-cards .column .card:hover {
  background-position: 0 100%;
  overflow-y: scroll;
}
.service-section .middle-section .content .services-cards .column .card:hover .icon-wrapper {
  background-color: #27445c;
  color: #06c16f;
}
.service-section .middle-section .content .services-cards .column .card:hover h3 {
  color: #fff;
}
.service-section .middle-section .content .services-cards .column .card:hover p {
  color: #fff;
  display: block;
}
.service-section .right-section {
  grid-column: span 3;
  grid-row: 3;
  padding: 20px 150px;
}
.service-section .right-section .content {
  width: 100%;
  height: 100%;
  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;
  gap: 30px;
}
.service-section .right-section .content h2 {
  width: 600px;
  text-align: center;
  text-transform: uppercase;
}
.service-section .right-section .service-img {
  width: 400px;
  height: 100%;
}

.content {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 100%;
}

.service-img {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
}
.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.left-section,
h2,
p {
  color: #27445c;
  margin-bottom: 15px;
}

.hero-content {
  position: absolute;
  max-width: 800px;
  z-index: 888;
}
.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content p {
  font-style: 1rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-us-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.hero-content button,
.to-button {
  width: 200px;
  height: 40px;
  padding: 10px;
  border: none;
  text-decoration: none;
  background-color: #06c16f;
  border-radius: 5px;
  cursor: pointer;
}
.hero-content button i,
.to-button i {
  color: #fff;
  font-size: 1rem;
}

.content-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  padding: 40px;
  overflow: hidden;
}
.content-box h1 {
  width: 100%;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
}
.content-box h2 {
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.content-box p {
  font-style: 1rem;
  margin-bottom: 20px;
}

.content-right,
.content-left {
  padding: 20px;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* border-bottom: 1px solid #000; */
}

.content-img {
  height: 100%;
  width: 100%;
  /* flex: 33%; */
}
.content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.content-right,
.content-left,
.hero-content,
h1 {
  color: #27445c;
}

.floating-box {
  width: 280px;
  height: 350px;
  position: absolute;
  left: 380px;
  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-shadow: rgba(100, 111, 100, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 111, 100, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}
.floating-box h3 {
  font-size: 1rem;
  margin-top: 20px;
  color: #06c16f;
}
.floating-box p {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
  font-size: 0.8rem;
  padding: 0 40px;
}

.profile-img {
  width: 100px;
  height: 100px;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  margin-top: 50px;
}
.profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.mission {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* align-items: center; */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 300px;
}
.mission h1 {
  font-size: 3rem;
}

.contact-info {
  /* height: 100vh; */
  /* width: 100vw; */
  padding: 50px;
}
.contact-info h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: left;
}
.contact-info h5 {
  font-size: 1.5rem;
  color: #27445c;
  font-weight: 300;
  margin-bottom: 20px;
  border-bottom: 1px solid #27445c;
}
.contact-info p {
  font-weight: 300;
  font-style: normal;
  font-size: 1.2rem;
  text-align: left;
}

.reveal {
  position: relative;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.reveal.active {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.hero-reveal {
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.hero-reveal.active {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .service-section {
    grid-template-columns: 1fr 1fr;
  }
  .service-section .left-section,
.service-section .middle-section,
.service-section .right-section {
    padding: 0;
  }
  .service-section .left-section {
    grid-column: span 2;
    grid-row: 1;
    padding: 50px 50px 0 50px;
  }
  .service-section .middle-section {
    grid-column: span 2;
    grid-row: 2;
    padding: 0 40px;
  }
  .service-section .middle-section .content .services-cards {
    padding: 0 40px;
  }
  .service-section .middle-section .content .services-cards .row {
    grid-template-columns: 1fr 1fr;
  }
  .service-section .middle-section .content .services-cards .row .section-heading {
    grid-column: span 2;
  }
  .service-section .right-section {
    grid-column: span 2;
    grid-row: 3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px 20px 40px;
  }
  .service-section .right-section .service-img {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .hero-content {
    padding: 50px;
  }
  .floating-box {
    left: 150px;
  }
  .service-section {
    grid-template-columns: 1fr 1fr;
  }
  .service-section .left-section,
.service-section .middle-section,
.service-section .right-section {
    padding: 0;
  }
  .service-section .left-section {
    grid-column: span 2;
    grid-row: 1;
    padding: 50px 50px 0 50px;
  }
  .service-section .middle-section {
    grid-column: span 2;
    grid-row: 2;
    padding: 0 40px;
  }
  .service-section .middle-section .content .services-cards {
    padding: 0 40px;
  }
  .service-section .middle-section .content .services-cards .row {
    grid-template-columns: 1fr 1fr;
  }
  .service-section .middle-section .content .services-cards .row .section-heading {
    grid-column: span 2;
  }
  .service-section .right-section {
    grid-column: span 2;
    grid-row: 3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px 20px 40px;
  }
  .service-section .right-section .service-img {
    width: 100%;
    height: 200px;
  }
  header footer .footer-wrapper .social-media .social-media-wrapper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto 0 auto;
  }
  header footer .footer-wrapper .social-media .social-media-wrapper .website-rights {
    color: #fff;
    margin-bottom: 16px;
  }
  header footer .footer-wrapper .social-media .social-media-wrapper .nav-logo {
    width: 40%;
  }
  header footer .footer-wrapper .social-media .social-media-wrapper .nav-logo img {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  section .map {
    padding: 20px;
  }
  section .contentBx {
    padding: 20px 50px;
  }
  section .contentBx h2 {
    font-size: 2.5rem;
  }
  section .contentBx p {
    font-size: 1rem;
  }
  section .contentBx .countdown .time {
    font-size: 2rem;
    min-width: 4rem;
    margin-right: 5px;
  }
  section .contentBx .countdown .time span {
    font-size: 0.8rem;
  }
  section .contentBx a {
    position: relative;
    margin-top: 10px;
    display: inline-block;
    background: #81f7b6;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 40px;
  }
  section .imgBx {
    padding-left: 0px;
  }
  section .sci {
    left: 3.5rem;
  }
  section .floating-box {
    left: 130px;
  }
}
@media (max-width: 767px) {
  header .nav-container {
    padding-right: 20px;
  }
  header .nav-container .nav-menu .nav-items {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: #27445c;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header .nav-container .nav-menu .nav-items .nav-item {
    margin: 16px;
  }
  header .nav-container .nav-menu .nav-items .mobile {
    display: block;
  }
  header .nav-container .nav-menu .nav-items #dropdown {
    display: none;
  }
  header .nav-container .nav-menu .nav-items .dropdown {
    display: none;
  }
  header .nav-container .nav-menu .nav-items.active {
    left: 0;
  }
  header .nav-container .bar-menu {
    display: block;
  }
  header .nav-container .bar-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .nav-container .bar-menu.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  header .nav-container .bar-menu.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  header .nav-container .nav-social-icons {
    display: none;
  }
  .nav-logo {
    width: 100%;
    height: auto;
  }
  .nav-logo img {
    width: 80%;
    height: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .hero-content p {
    font-size: smaller;
    margin-bottom: 10px;
  }
  .hero-content .about-us-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1rem;
    gap: 0;
  }
  .floating-box {
    display: none;
  }
  .content-right .contact-info {
    padding-bottom: 0px;
  }
  .content-left,
.content-right {
    grid-template-columns: 1fr;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .content-left .content-img {
    grid-row: 1;
  }
  .service-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service-section .right-section {
    padding: 0 40px;
  }
  .service-section .right-section .service-img {
    width: 0% !important;
  }
  .service-section .left-section {
    padding: 40px 40px 0 40px;
  }
  .footer-container .footer-wrapper .footer-links-container .footer-link-items {
    width: 100px !important;
  }
  .footer-container .footer-wrapper .social-media .social-media-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 600px) {
  #pms {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .content-left .content-box h1,
.content-right .content-box h1 {
    font-size: 2rem;
  }
  #phindile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
  }
  #phindile .contact-info {
    padding: 0 40px 40px 40px;
  }
  .service-section {
    grid-template-columns: 1fr;
  }
  .service-section .left-section .content h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .service-section .middle-section .content #labour {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .service-section .middle-section .content .services-cards {
    padding: 0 2px;
    height: 100vh;
    margin: 20px 0;
    overflow: scroll;
  }
  .service-section .middle-section .content .services-cards .row {
    grid-template-columns: 1fr;
  }
  .service-section .middle-section .content .services-cards .row p {
    grid-column: 1;
  }
  .service-section .middle-section .content .services-cards .row .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 50%;
            flex: 0 50%;
  }
  .right-section .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cta-container > #singular-form button {
    /* width: 4rem; */
    padding: 0 0px;
    border: none;
    outline: none;
    border-radius: 3rem;
    cursor: pointer;
    /* font-size: 2rem; */
  }
}