@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Poppins:wght@300;400;500;700&display=swap");
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}
@media (min-width: 2860px) {
  html {
    font-size: 200%;
  }
}
@media (min-width: 1900px) {
  html {
    font-size: 100%;
  }
}

::selection {
  background-color: #4c00b8;
  color: #f9f9fa;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  background-color: #dee1e3;
  width: 1rem;
  border-radius: 0.5rem;
}
body::-webkit-scrollbar-thumb {
  background-color: #864adb;
  border-radius: 0.5rem;
}

a {
  text-decoration: none;
  color: currentColor;
}
a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 0, 184, 0.7);
}

ul {
  list-style: none;
}

p,
article {
  word-break: break-word;
  hyphens: auto;
}

body {
  font-size: 1.6rem;
  color: #374047;
  font-weight: 400;
  font-family: "PT Sans", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.page-heading {
  font-size: 5rem;
}
@media (max-width: 680px) {
  .page-heading {
    font-size: 3.7rem;
    line-height: 1.3;
  }
}

.section-heading {
  font-size: 3.7rem;
  line-height: 1.4;
}

.headings {
  font-size: 2.8rem;
}

.scale-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mb-8 {
  margin-bottom: 0.8rem !important;
}

.mb-16 {
  margin-bottom: 1.6rem !important;
}

.mb-24 {
  margin-bottom: 2.4rem !important;
}

.mb-32 {
  margin-bottom: 3.2rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-48 {
  margin-bottom: 4.8rem !important;
}

.twoCol {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .twoCol {
    flex-direction: column;
  }
}
.twoCol > * {
  width: calc(50% - 2.5vw);
}
@media (max-width: 900px) {
  .twoCol > * {
    width: 100%;
    margin-bottom: 5vw;
  }
}

.navbar {
  width: 100vw;
  padding: 1.6rem 5vw;
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding-right: 5vw;
  align-items: center;
  z-index: 100;
  font-weight: 700;
  color: #f9f9fa;
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 5vw;
  }
}
.navbar-logo {
  width: 3.5rem;
}
.navbar-mobile {
  position: absolute;
  width: 60vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transform: translateX(-150%);
  transition: 400ms cubic-bezier(0.87, 0, 0.13, 1);
  align-items: center;
  flex-direction: column;
  z-index: 100;
  background-color: #f9f9fa;
}
@media (max-width: 900px) {
  .navbar-mobile {
    width: 100vw;
  }
}
.navbar-mobile li {
  font-size: 6.7rem;
  color: #2d8fd5;
  font-weight: 700;
}
.navbar-desktop {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .navbar-desktop {
    display: none;
  }
}
.navbar-desktop li a:not(.call-btn):hover {
  color: #4c00b8;
}
.navbar-menuIcon {
  display: none;
}
@media (max-width: 900px) {
  .navbar-menuIcon {
    display: block;
  }
}
.navbar-menuIcon button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  flex-direction: column;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
  z-index: 200;
}
.navbar-menuIcon button:focus {
  outline: none;
}
.navbar-menuIcon button:focus-visible {
  box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}
.navbar-menuIcon button span {
  display: inline-block;
  width: 70%;
  height: 3px;
  background-color: #2d8fd5;
  transition: 400ms cubic-bezier(0.87, 0, 0.13, 1);
}
.navbar-menuIcon button span:nth-child(1) {
  width: 50%;
}

.navbar-mobile.active {
  transform: translateX(0);
}

.menuBtn.active span:nth-child(1) {
  transform: translateX(100%);
}
.menuBtn.active span:nth-child(2) {
  transform: translateX(0) rotate(45deg);
}
.menuBtn.active span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}

.footer {
  width: 100vw;
  padding: 5vw;
  background-color: #b5d8f0;
}
.footer-para {
  width: 70%;
  margin: 0 auto;
  padding: 2.5vw;
  background-color: #f6fafd;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  margin-bottom: 5vw;
}
@media (max-width: 680px) {
  .footer-para {
    width: 100%;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: right;
}
@media (max-width: 680px) {
  .footer-content {
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .footer-content--logo {
    width: 100%;
    text-align: center;
    margin-bottom: 5vw;
  }
}
@media (max-width: 680px) {
  .footer-content--action {
    width: 100%;
    text-align: center;
  }
}
.footer-copy {
  font-size: 1.4rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.footer-links li a:hover {
  color: #006fbe;
}

.footer-socialLinks {
  display: flex;
  justify-content: space-between;
}
.footer-socialLinks a img {
  height: 3.2rem;
  display: block;
}

.hero {
  width: 100vw;
  padding: 5vw;
  position: relative;
  height: 100vh;
  color: #f9f9fa;
}
@media (max-width: 900px) {
  .hero {
    height: auto;
    padding-top: 6.4rem;
    color: #374047;
    display: flex;
    flex-direction: column-reverse;
  }
}
.hero-content {
  position: absolute;
  z-index: 10;
  width: 40%;
  top: 50%;
  transform: translateY(-50%);
}
.hero-content em {
  display: block;
  margin-bottom: 3.2rem;
}
@media (max-width: 900px) {
  .hero-content {
    position: relative;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 2.4rem;
  }
}
.hero-content a {
  width: 100%;
}
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.hero-images::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  opacity: 0.7;
  background-color: #5aa7de;
  mix-blend-mode: multiply;
}
@media (max-width: 900px) {
  .hero-images::after {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero-images {
    position: relative;
    top: 0;
    left: 0;
    height: 40rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 0.25rem;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
@media (max-width: 680px) {
  .hero-images {
    height: 25rem;
  }
}
.hero-images img {
  position: absolute;
  transform: translateX(100%);
  transition: 300ms ease;
  z-index: 3;
}

.hero-images img.wasActiveImage {
  transform: translateX(-100%);
}

.hero-images img.activeImage {
  transform: translateX(0);
  z-index: 5;
}

.about {
  width: 100vw;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .about {
    flex-direction: column-reverse;
  }
}
.about-image {
  width: 50%;
  height: 60rem;
  border: 1.6rem solid #f9f9fa;
  margin-top: -5vw;
  position: relative;
  z-index: 8;
}
@media (max-width: 900px) {
  .about-image {
    width: 100%;
    margin-top: 0;
    border: none;
  }
}
.about-image img {
  object-position: bottom;
}
.about-content {
  width: 50%;
}
@media (max-width: 900px) {
  .about-content {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.about-content > p {
  font-size: 2.1rem;
  padding: 5vw;
  position: relative;
}
@media (max-width: 900px) {
  .about-content > p {
    margin-bottom: 5vw;
  }
}
.about-content > p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5vw;
  transform: translateY(-50%);
  width: 0.4rem;
  height: calc(100% - 8vw);
  background-color: #4c00b8;
}
@media (max-width: 900px) {
  .about-content > p::after {
    left: 0;
  }
}
.about-content > article {
  font-size: 2.1rem;
  padding: 5vw;
  margin-left: -5vw;
  background-color: #e2eff9;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .about-content > article {
    margin-left: 0;
  }
}

.whyUs {
  width: 100vw;
  padding: 5vw;
}
.whyUs-content > article p {
  margin-bottom: 1.6rem;
}

.projects {
  width: 100vw;
  padding: 5vw;
}
.projects-heading > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .projects-heading > div {
    flex-direction: column;
    margin-bottom: 5vw;
  }
}
.projects-heading > div p {
  width: 60%;
}
@media (max-width: 900px) {
  .projects-heading > div p {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.projects-grid {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 35%;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  grid-auto-columns: 35%;
  align-items: stretch;
  gap: 5vw;
  overflow: scroll hidden;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: pointer;
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 60%;
    grid-auto-columns: 60%;
  }
}
@media (max-width: 680px) {
  .projects-grid {
    grid-template-columns: 80%;
    grid-auto-columns: 80%;
  }
}
.projects-grid img {
  width: 100%;
  object-fit: cover;
}
.projects-grid::-webkit-scrollbar {
  background-color: transparent;
  height: 1px;
}

.project-card {
  position: relative;
  margin-top: 2.5vw;
}
.project-card figcaption {
  position: absolute;
  padding: 2.5vw;
  width: calc(100% - 5vw);
  left: 50%;
  transform: translateX(-50%);
  background-color: #f6fafd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.project-card figcaption span.name {
  color: #4c00b8;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}
.project-card figcaption address {
  margin-bottom: 1.6rem;
  color: #864adb;
}
.project-card img {
  max-height: 50rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}

.project-card:nth-child(2n + 1) figcaption {
  top: 0;
}
.project-card:nth-child(2n + 1) img {
  margin-top: 5vw;
}

.project-card:nth-child(2n) figcaption {
  bottom: 0;
}
.testimonials {
  width: 100vw;
  padding: 5vw;
}
.testimonials-image {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .testimonials-image {
    display: none;
  }
}
.testimonials-image img {
  max-width: 35rem;
  display: block;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.testimonial-header h2 {
  width: 70%;
}
.testimonial-header button {
  background: none;
  border: none;
  display: block;
  position: relative;
  cursor: pointer;
  width: 3.6rem;
  height: 3.6rem;
}
.testimonial-header button:focus {
  outline: none;
}
.testimonial-header button:focus-visible {
  box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}
.testimonial-header button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0.8rem;
  background-color: #7dbae5;
  z-index: -1;
}
.testimonial-header button:hover::after {
  background-color: #5aa7de;
}
.testimonial-header button svg {
  display: block;
  transition: transform 100ms ease-in;
}
.testimonial-header button:hover svg {
  transform: translateX(-0.8rem);
}
.testimonial-header button:focus svg {
  transform: translateX(0);
}
.testimonial-header button:active svg {
  transform: translateX(0);
}

.testimonial-content {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.testimonial-card {
  position: relative;
  font-size: 2.1rem;
  transform: translateX(100%);
  transition: 300ms ease;
  background-color: #e2eff9;
  padding: 2.5vw;
  grid-row-start: 1;
  grid-column-start: 1;
}
.testimonial-card p {
  margin-bottom: 1.6rem;
}

.testimonial-card.prevTest {
  transform: translateX(-100%);
}

.testimonial-card.activeTest {
  transform: translateX(0);
  z-index: 5;
}

.contact {
  width: 100vw;
}
.contact-banner {
  height: 40rem;
}
@media (max-width: 900px) {
  .contact-banner {
    display: none;
  }
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 5vw 5vw 5vw;
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
  }
}
.contact-content--img {
  width: 50%;
  height: 60rem;
  position: relative;
  border: 1.6rem solid #f9f9fa;
  margin-top: -5vw;
  z-index: 8;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  .contact-content--img {
    width: 100%;
    margin-top: 5vw;
    border: none;
  }
}
.contact-content--desc {
  width: 50%;
  padding: 5vw;
}
@media (max-width: 900px) {
  .contact-content--desc {
    width: 100%;
  }
}

.homeGallery {
  width: 100vw;
}
.homeGallery h2 {
  padding: 5vw;
  padding-bottom: 0;
}
.homeGallery-swiper {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 20%;
  grid-auto-flow: column;
  grid-template-rows: 40rem;
  grid-auto-columns: 20%;
  align-items: stretch;
  gap: 2.5vw;
  overflow: scroll hidden;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: pointer;
}
@media (max-width: 900px) {
  .homeGallery-swiper {
    grid-template-columns: 45%;
    grid-auto-columns: 45%;
  }
}
@media (max-width: 680px) {
  .homeGallery-swiper {
    grid-template-columns: 80%;
    grid-auto-columns: 80%;
  }
}
.homeGallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeGallery-swiper::-webkit-scrollbar {
  background-color: transparent;
  height: 1px;
}

.aboutHero {
  width: 100vw;
  padding: 10vw;
  padding-bottom: 5vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 900px) {
  .aboutHero {
    padding: 6.4rem 5vw 5vw 5vw;
  }
}
.aboutHero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 10vw);
  height: 50%;
  background-color: #7dbae5;
  z-index: -1;
}
@media (max-width: 900px) {
  .aboutHero::after {
    display: none;
  }
}
.aboutHero-left {
  width: calc(35% - 2.5vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .aboutHero-left {
    width: 100%;
    flex-direction: column-reverse;
    margin-bottom: 5vw;
  }
}
.aboutHero-left--image {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  .aboutHero-left--image {
    margin-bottom: 5vw;
  }
}
.aboutHero-right {
  width: calc(65% - 2.5vw);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  .aboutHero-right {
    width: 100%;
  }
}
.aboutHero-bottom {
  width: 100%;
  margin-top: 5vw;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 680px) {
  .aboutHero-bottom {
    flex-direction: column;
  }
}
.aboutHero-bottom--image {
  width: calc(35% - 2.5vw);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 680px) {
  .aboutHero-bottom--image {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.aboutHero-bottom p {
  width: calc(65% - 2.5vw);
  font-size: 2.1rem;
}
@media (max-width: 680px) {
  .aboutHero-bottom p {
    width: 100%;
  }
}

.aboutPara {
  width: 100vw;
  padding: 5vw;
}
.aboutPara-content {
  background-color: #e2eff9;
  padding: 5vw;
}
.aboutPara-content > * {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .aboutPara-content > * {
    width: 100%;
  }
}

#aboutMisVis {
  width: 100vw;
  padding: 5vw;
  position: relative;
}
#aboutMisVis::after {
  content: "";
  background-color: #e2eff9;
  position: absolute;
  width: 60%;
  height: 100%;
  z-index: -1;
  top: 0;
  right: 0;
}
@media (max-width: 900px) {
  #aboutMisVis::after {
    display: none;
  }
}
#aboutMisVis .aboutMisVis {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 900px) {
  #aboutMisVis .aboutMisVis {
    flex-direction: column;
    align-items: flex-start;
  }
}
#aboutMisVis .aboutMisVis--title {
  width: 25%;
  position: relative;
}
@media (max-width: 900px) {
  #aboutMisVis .aboutMisVis--title {
    width: 100%;
    margin-bottom: 5vw;
  }
}
@media (max-width: 900px) {
  #aboutMisVis .aboutMisVis--title h2 {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
}
#aboutMisVis .aboutMisVis--image {
  width: 25%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  #aboutMisVis .aboutMisVis--image {
    width: 100%;
    margin: 0;
    margin-bottom: 5vw;
  }
}
#aboutMisVis .aboutMisVis--content {
  width: 40%;
}
@media (max-width: 900px) {
  #aboutMisVis .aboutMisVis--content {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
#aboutMisVis .aboutMisVis--content article h3 {
  color: #4c00b8;
  font-weight: 700;
  font-size: 2.1rem;
  text-transform: uppercase;
}

.aboutServices {
  width: 100vw;
  padding: 5vw;
}
.aboutServices-content--res {
  display: flex;
  justify-content: space-between;
}
.aboutServices-content--res img {
  width: 40%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
.aboutServices-content--res > div {
  width: 50%;
}
.aboutServices-content--com {
  display: flex;
  justify-content: space-between;
}
.aboutServices-content--com img {
  width: 40%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
.aboutServices-content--com > div {
  width: 50%;
}

.contactPage-hero {
  width: 100vw;
  padding: 10vw 5vw;
  align-items: stretch;
  background-image: url("images/contactpage-hero.jpg");
}
.contactPage-hero--content {
  padding-top: 5vw;
}
.contactPage-hero--content h2 {
  color: #f9f9fa;
}
.contactPage-hero--form {
  padding: 5vw;
  background-color: rgba(249, 249, 250, 0.86);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
.contactPage-hero--form form button {
  width: 100%;
  display: block;
}
.contactPage-hero--form form button:focus {
  outline: none;
}
.contactPage-hero--form form button:focus-visible {
  box-shadow: 0 0 0 3px rgba(76, 0, 184, 0.4);
}

.contact-phone,
.contact-email,
.contact-address {
  padding: 1.6rem;
  background-color: rgba(249, 249, 250, 0.86);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2.5vw;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
.contact-phone img,
.contact-email img,
.contact-address img {
  height: 2.8rem;
  display: inline-block;
  margin-right: 1.6rem;
}
.contact-phone > div h3,
.contact-email > div h3,
.contact-address > div h3 {
  font-size: 2.1rem;
}
.contact-phone > div a,
.contact-email > div a,
.contact-address > div a {
  color: #4c00b8;
}

.contact-icons {
  width: 2.1rem;
  display: block;
}

.formInput {
  display: block;
  width: 100%;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.formInput input,
.formInput textarea {
  display: block;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  font-weight: 400;
  padding: 0.8rem;
  margin-top: 0.8rem;
  border: 2px solid #4c00b8;
}
.formInput input:focus,
.formInput textarea:focus {
  outline: none;
}
.formInput input:focus-visible,
.formInput textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(76, 0, 184, 0.4);
}
.formInput textarea {
  height: 20rem;
}

.projectHero {
  width: 100vw;
}
.projectHero-banner {
  height: 40rem;
}
@media (max-width: 900px) {
  .projectHero-banner {
    height: auto;
  }
}
.projectHero-banner img {
  object-position: bottom;
}
.projectHero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 5vw 5vw 5vw;
}
@media (max-width: 900px) {
  .projectHero-content {
    flex-direction: column;
  }
}
.projectHero-content--img {
  width: 50%;
  height: auto;
  position: relative;
  border: 1.6rem solid #f9f9fa;
  margin-top: -5vw;
  z-index: 8;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  .projectHero-content--img {
    width: 100%;
    margin-top: 5vw;
    border: none;
  }
}
.projectHero-content--desc {
  width: 50%;
  padding: 5vw;
}
@media (max-width: 900px) {
  .projectHero-content--desc {
    width: 100%;
    padding: 5vw 0;
  }
}

.projectsContainer {
  width: 100vw;
  padding: 5vw;
}
.projectsContainer .projectCard-pp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5vw;
  padding: 5vw;
  background-color: #e2eff9;
  position: relative;
  flex-wrap: wrap;
}
.projectsContainer .projectCard-pp--image {
  width: 50%;
}
@media (max-width: 900px) {
  .projectsContainer .projectCard-pp--image {
    width: 100%;
  }
}
.projectsContainer .projectCard-pp--content {
  width: 50%;
  padding: 5vw;
}
@media (max-width: 900px) {
  .projectsContainer .projectCard-pp--content {
    width: 100%;
    padding: 5vw 0;
  }
}
.projectsContainer .projectCard-pp--content h4.projectStatus {
  padding: 0.8rem;
  background-color: #7dbae5;
  display: inline-block;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
.projectsContainer .projectCard-pp--content ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2.4rem;
}
.projectsContainer .projectCard-pp--content ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("images/icons/arrow.svg");
}

.projectCard-pp:nth-child(2n + 1) {
  flex-direction: row;
}
@media (max-width: 900px) {
  .projectCard-pp:nth-child(2n + 1) {
    flex-direction: column;
  }
}

.projectCard-pp:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .projectCard-pp:nth-child(2n) {
    flex-direction: column;
  }
}

.projectCard-pp--image {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 90%;
  grid-auto-flow: column;
  grid-template-rows: 100%;
  grid-auto-columns: 90%;
  align-items: stretch;
  gap: 2.5vw;
  overflow: scroll hidden;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: pointer;
}
.projectCard-pp--image img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  display: inline-block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.25rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 900px) {
  .projectCard-pp--image img {
    height: auto;
  }
}
.projectCard-pp--image::-webkit-scrollbar {
  background-color: transparent;
  height: 0.4rem;
}
.projectCard-pp--image::-webkit-scrollbar-thumb {
  background-color: #864adb;
  border-radius: 0.2rem;
}

.primary-link {
  padding: 1.6rem 2.4rem;
  background-color: #4c00b8;
  border: 2px solid #4c00b8;
  color: #f9f9fa;
  border-radius: 0.25rem;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.primary-link:hover {
  color: #dee1e3;
  background-color: #864adb;
}

.primary-link-small {
  padding: 0.8rem 1.6rem;
  background-color: #4c00b8;
  color: #f9f9fa;
  border: 2px solid #4c00b8;
  border-radius: 0.25rem;
  display: inline-block;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.primary-link-small:hover {
  color: #dee1e3;
  background-color: #864adb;
}

.secondary-link {
  padding: 0.8rem 1.6rem;
  background-color: transparent;
  border: 2px solid #4c00b8;
  color: #4c00b8;
  border-radius: 0.25rem;
  display: inline-block;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.secondary-link:hover {
  color: #dee1e3;
  background-color: #864adb;
}

/*# sourceMappingURL=style.css.map */
