@import url(https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap);
.NavBar,
.body {
  width: 100%;
  overflow: hidden;
}
.NavBar,
.NavBarNav {
  position: sticky;
  z-index: 10;
  display: flex;
}
.Nav-Link:active,
.Nav-Link:focus,
.Nav-Link:hover {
  color: var(--Yellow500);
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}
#close-sidebar-btn,
#open-sidebar-btn {
  background: var(--Purple900);
  padding: 1em;
  cursor: pointer;
}
#open-sidebar-btn,
#overlay {
  position: fixed;
  display: none;
}
.HeroTitle,
.Nav-Link {
  text-align: center;
  color: #fff;
}
.bodoni-moda,
.body,
body > p {
  font-style: normal;
}
.EmailLink,
.Home-Page-CTA-Button,
.Nav-Link,
.learn-more {
  text-decoration: none;
}
button,
label {
  font-size: 16px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.bodoni-moda {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
:root {
  --Purple500: #63378d;
  --Purple900: #1c0a43;
  --Yellow500: #ffd364;
  --Yellow900: #7a5113;
  --Teal500: #2f847d;
  --Teal900: #09303f;
  --Title-Font: "Bodoni Moda";
  --Body-Font: "Century Gothic";
}
.body {
  font-weight: 400;
  background-color: #63378d;
  color: #fff;
  height: 100vh;
}
.HeroTitle > p,
.Nav-Link {
  font-weight: 500;
  font-family: var(--Body-Font);
}
.Nav-Link,
.NavBar,
.NavBarNav,
.logo {
  background-color: var(--Purple900);
}
body::-webkit-scrollbar {
  width: 1rem;
}
body::-webkit-scrollbar-track {
  background: #ff0;
  width: 1rem;
}
body::-webkit-scrollbar-thumb {
  background: var(--Purple900);
}
.NavBar {
  top: 0;
  height: 5rem;
  font-size: 2rem;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin: 0;
}
.SCM-FullLogo-Header,
.logo {
  width: 11.25rem;
  padding-top: 0.5rem;
}
.logo {
  padding-left: 3rem;
  height: fit-content;
  overflow: visible;
}
.SCM-FullLogo-Header {
  overflow: hidden;
  height: 6.25rem;
}
.NavBarNav {
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 100%;
  gap: 1rem;
  overflow: hidden;
}
.NavItem {
  border-radius: 0.5rem;
  list-style: none;
}
.Nav-Link {
  display: block;
  padding: 0.625rem;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.Nav-Link:hover {
  background-color: var(--Teal500);
  transform: translateY(-0.125rem) scale(1.05);
}
.Nav-Link:active,
.Nav-Link:focus {
  background-color: var(--Teal900);
  outline: 0;
  transform: translateY(0.0625rem) scale(0.98);
}
#Contact-CTA-Hero:hover,
.Home-Page-CTA-Button:hover {
  background-color: var(--Yellow500);
  color: var(--Purple900);
}
.Nav-Link:focus-visible {
  outline: white solid 0.125rem;
  outline-offset: 0.25rem;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.Nav-Link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 0.125rem;
  background-color: var(--Yellow500);
  transition: 0.3s;
  opacity: 0;
}
.Nav-Link:hover::after {
  width: 80%;
  left: 10%;
  opacity: 1;
}
#Contact-CTA-Hero {
  box-shadow: 0 0 0 rgba(255, 211, 100, 0);
  transition: 0.3s, box-shadow 0.5s;
  border-bottom: var(--Yellow500) 2px;
}
#Contact-CTA-Hero:hover {
  box-shadow: 0 0 0.5rem 0.125rem rgba(255, 211, 100, 0.3);
  text-shadow: none;
  overflow: hidden;
}
#Contact-CTA-Hero:active,
#Contact-CTA-Hero:focus {
  background-color: var(--Yellow900);
  color: var(--Purple900);
  outline: 0;
  text-shadow: none;
}
#open-sidebar-btn {
  border: none;
  margin-left: auto;
  top: 1rem;
  right: 1rem;
  z-index: 8;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}
#close-sidebar-btn {
  display: none;
  border: none;
  align-self: flex-end;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  overflow: visible;
}
#close-sidebar-btn svg path,
#open-sidebar-btn svg line {
  stroke: white;
}
#overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  backdrop-filter: blur(0.25rem);
  transition: opacity 0.3s;
  opacity: 0;
}
#overlay.show {
  display: block;
  opacity: 1;
}
@media (max-width: 1000px) {
  .NavBar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 20rem;
    height: 100vh;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background-color: var(--Purple900);
    box-shadow: none;
    padding: 1rem;
    overflow-y: auto;
  }
  .NavBar.show {
    right: 0;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.3);
  }
  .NavBarNav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 1rem 0 0;
    gap: 0.5rem;
  }
  .NavItem {
    width: 100%;
    margin: 0;
  }
  .Nav-Link {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.75rem;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
  .Nav-Link::after {
    bottom: 0.125rem;
    height: 0.0625rem;
  }
  .Nav-Link:hover {
    transform: translateY(-0.0625rem) scale(1.02);
  }
  .Nav-Link:active,
  .Nav-Link:focus {
    transform: translateY(0.0625rem) scale(0.98);
  }
  #close-sidebar-btn,
  #open-sidebar-btn {
    display: flex;
  }
  .logo {
    display: none;
  }
}
@media (max-height: 600px) {
  .NavBarNav {
    gap: 0.25rem;
  }
  .Nav-Link {
    padding: 0.375rem 0.5rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
  }
  #close-sidebar-btn {
    margin-bottom: 0.25rem;
  }
}
.HeroContent,
.Home-Page-CTAs {
  padding-bottom: 1rem;
}
.PageWrapper {
  background-color: #63378d;
  background-image: url(../Assets/BackgroundGradientLRG.jpg);
  background-repeat: repeat-y;
  display: flex;
  flex-direction: column;
}
.HeroContent,
.HeroSection {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.HeroTitle {
  margin: 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: var(--Title-Font);
  font-weight: 100;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative;
}
.Sec2Text,
.Section2Title {
  margin-right: 3rem;
  display: flex;
}
.BannerContainer,
.Home-Page-CTAs,
.InnerHeading,
.OuterHeading {
  font-family: "Century Gothic";
}
.HeroTitle > p {
  max-width: 30rem;
  margin-top: 2rem;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 2rem);
}
body > p {
  font-family: var(--Body-Font);
  font-size: 1rem;
  font-variant: normal;
  font-weight: 400;
}
.Home-Page-CTAs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2rem;
  gap: 1rem;
}
.Home-Page-CTA-Button {
  border-radius: 2rem;
  background-color: var(--Teal500);
  padding: 1em;
  color: #fff;
  transition-duration: 0.5s;
}
.Home-Page-CTA-Button:hover {
  font-weight: 700;
  transform: scale(1.1);
  overflow-y: visible;
}
.OuterHeading {
  color: #fff;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-right: 30rem;
  font-weight: 400;
}
.InnerHeading {
  border: 0 solid #ddd;
  height: 50px;
  line-height: 50px;
  font-size: 45px;
  text-transform: uppercase;
  overflow: hidden;
}
.ProjectCardContainer,
.service-box {
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.InnerHeading span {
  position: relative;
  color: #ffd364;
  overflow: hidden;
  animation: 15s ease-in infinite animation;
}
@keyframes animation {
  0%,
  100% {
    top: 0;
  }
  12% {
    top: -50px;
  }
  24% {
    top: -100px;
  }
  36% {
    top: -150px;
  }
  48% {
    top: -200px;
  }
  60% {
    top: -250px;
  }
  72% {
    top: -300px;
  }
  84% {
    top: -350px;
  }
  96% {
    top: -400px;
  }
}
.BannerContainer {
  margin-top: 10rem;
  height: 10rem;
  overflow-y: hidden;
  width: 100%;
  position: relative;
}
.BannerText h2,
.Section2Title {
  font-family: var(--Title-Font);
}
.slides-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40rem;
  animation: 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite banner-slide;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.Slide1,
.Slide2,
.Slide3,
.Slide4 {
  padding: 3rem;
  width: 100%;
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2f847d;
  color: #85dac3;
  position: absolute;
  left: 0;
  overflow: visible;
}
.Slide1 {
  top: 0;
}
.Slide2 {
  top: 10rem;
}
.Slide3 {
  top: 20rem;
}
.Slide4 {
  top: 30rem;
}
.BannerText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 0 1rem;
  text-align: center;
}
.card,
.sr-only {
  overflow: hidden;
}
.BannerText h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.BannerText > h3 {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
  font-family: var(--Body-Font);
}
@keyframes banner-slide {
  0%,
  100%,
  17%,
  92% {
    transform: translateY(0);
  }
  17%,
  25%,
  42% {
    transform: translateY(-10rem);
  }
  42%,
  50%,
  67% {
    transform: translateY(-20rem);
  }
  67%,
  75%,
  92% {
    transform: translateY(-30rem);
  }
}
.Section-2-HomePage {
  color: #fff;
}
.Section2Title {
  justify-content: flex-end;
  font-weight: 900;
}
.Sec2Text {
  flex-direction: row;
  justify-content: flex-end;
  gap: 1.5rem;
  max-width: inherit;
}
.Section2-Text-Container {
  display: flex;
  flex-direction: column;
  max-width: 30rem;
  justify-content: center;
  padding-top: 1rem;
  gap: 1rem;
  font-family: var(--Body-Font);
}
.services h2,
.services-title {
  font-family: var(--Title-Font);
}
.TextBoxRow2 {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.LineItem1,
.LineItem2 {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.LineItem-Text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.services-title {
  display: flex;
  justify-content: center;
  color: #fff;
  margin-top: 3rem;
  text-align: center;
  padding: 0 1rem;
}
.services {
  text-align: center;
  padding: 50px 20px;
}
.services h2 {
  font-size: 28px;
  margin-bottom: 40px;
}
.services-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  color: #fff;
  width: 100%;
}
.services-row-1,
.services-row-2 {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}
.service-box {
  font-family: var(--Body-Font);
  background-color: transparent;
  padding: 20px;
  max-width: 280px;
  text-align: center;
  background: rgba(99, 55, 141, 0.08);
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
  border: 1px solid #63378d;
  width: 100%;
}
.ProjectCardContainer:hover,
.card:hover,
.service-box:hover {
  transform: translateY(-5px);
}
.service-box img {
  width: 40px;
  margin-bottom: 15px;
}
.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-box p {
  font-size: 14px;
  line-height: 1.6;
}
.RecentProjectsSectionTitle {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  color: #fff;
  letter-spacing: 10px;
  text-transform: capitalize;
  font-family: var(--Title-Font);
  font-weight: 900;
  text-align: center;
  padding: 0 1rem;
}
.CardSubtitleText,
.CardText,
.CardTextTitle,
.Home-to-Project-Card-Link,
.ProjectCardContainer {
  font-family: var(--Body-Font);
}
.RecentProjectsSection {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  gap: 3rem;
  flex-wrap: wrap;
}
.Project-Column-1,
.Project-Column-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  font-family: var(--Body-Font);
}
.Home-to-Project-Card-Link {
  text-decoration: none;
  display: block;
  width: fit-content;
}
.ProjectCardContainer {
  padding: 1rem;
  width: 30rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(133, 218, 195, 0.27);
  backdrop-filter: blur(11.4px);
  -webkit-backdrop-filter: blur(11.4px);
  border: 1px solid #85dac3;
}
.CardImg,
.CardImg > img {
  max-width: 22.5rem;
  height: auto;
  width: 100%;
}
.CardImg > img {
  border-radius: 2rem;
  box-shadow: var(--Yellow500);
  object-fit: cover;
}
.CardText {
  margin-top: 1rem;
  color: #fff;
  width: 100%;
}
.card,
.service-cards-title {
  color: #fff;
  text-align: center;
}
.CardTextTitle {
  text-align: center;
}
.CardSubtitleText {
  font-style: italic;
  padding-top: 0.5rem;
  opacity: 0.75;
  text-align: center;
}
.service-cards-title {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  letter-spacing: 5px;
  text-transform: capitalize;
  font-family: "Bodoni Moda";
  font-weight: 500;
  padding: 0 1rem;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 50px 20px;
}
.card {
  font-family: var(--Body-Font);
  background-color: var(--Purple900);
  flex: 1 1 calc(33.333% - 20px);
  max-width: 350px;
  min-width: 250px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.ContactFor,
.ContactText {
  max-width: 30rem;
  width: 100%;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #ccc;
}
.card-content {
  padding: 20px;
}
.card-content h3 {
  font-family: "Bodoni Mooda";
  font-weight: 700;
  margin-bottom: 1rem;
}
.card-content p {
  font-size: 14px;
  margin-bottom: 2rem;
  font-family: var(--Body-Font);
}
.learn-more {
  font-size: 14px;
  color: var(--Yellow500);
  font-weight: 700;
}
.learn-more:hover {
  text-decoration: underline;
}
.EmailLink {
  color: #fff;
}
.ContactSection {
  font-family: "Century Gothic";
  width: 100%;
}
.ContactSectiontitle {
  display: flex;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: xx-large;
  font-family: "Bodoni Moda";
}
.ContactContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Century Gothic";
  width: 100%;
}
.ContactText {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding-top: 0.25rem;
}
.CFormText {
  display: flex;
  justify-content: center;
  text-align: center;
}
.CformLinks {
  color: #fff;
  display: flex;
  gap: 0.5em;
}
.ContactFor {
  padding: 0 1rem;
}
.ContactForm,
.ContactForm input,
.ContactForm textarea {
  width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.contact-form {
  background: rgba(30, 10, 60, 0.6);
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-form h3,
.form-group {
  margin-bottom: 20px;
}
.contact-form h3 {
  font-size: 24px;
  color: #fff;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group.full-width {
  grid-column: span 2;
}
label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.15);
}
textarea {
  resize: vertical;
  min-height: 150px;
}
button {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  grid-column: 2;
  justify-self: end;
}
button:hover {
  background: var(--Teal500);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 183, 169, 0.3);
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  overflow: visible;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  overflow: visible;
  animation-delay: 0.2s;
}

.delay-2 {
  overflow: visible;
  animation-delay: 0.4s;
}

.delay-3 {
  overflow: visible;
  animation-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 1200px) {
  .OuterHeading {
    padding-right: 0;
    text-align: center;
  }
  .RecentProjectsSection {
    gap: 2rem;
  }
  .ProjectCardContainer {
    width: 25rem;
  }
  .CardImg,
  .CardImg > img {
    max-width: 20rem;
  }
  .HeroTitle > p {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .RecentProjectsSection {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .Project-Column-1,
  .Project-Column-2 {
    width: 100%;
  }
  .ProjectCardContainer {
    width: 90%;
    max-width: 30rem;
  }
  .card {
    flex: 1 1 calc(50% - 20px);
    max-width: 300px;
  }
  .BannerContainer {
    height: 8rem;
    margin-top: 5rem;
  }
  .Slide1,
  .Slide2,
  .Slide3,
  .Slide4 {
    height: 8rem;
    padding: 1.5rem 1rem;
  }
  .Slide2 {
    top: 8rem;
  }
  .Slide3 {
    top: 16rem;
  }
  .Slide4 {
    top: 24rem;
  }
  .BannerText h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .BannerText h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  @keyframes banner-slide {
    0%,
    100%,
    17%,
    92% {
      transform: translateY(0);
    }
    17%,
    25%,
    42% {
      transform: translateY(-8rem);
    }
    42%,
    50%,
    67% {
      transform: translateY(-16rem);
    }
    67%,
    75%,
    92% {
      transform: translateY(-24rem);
    }
  }
  .Home-Page-CTAs {
    padding-left: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .Section2Title {
    justify-content: center;
    margin-right: 0;
    text-align: center;
  }
  .Sec2Text {
    justify-content: center;
    margin-right: 0;
    flex-direction: column;
    align-items: center;
  }
  .TextBoxRow2 {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .HeroTitle,
  .HeroTitle > p,
  .LineItem1,
  .LineItem2 {
    text-align: center;
  }
  .RecentProjectsSectionTitle h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
  }
  .RecentProjectsSection {
    flex-direction: column;
    align-items: center;
  }
  .ProjectCardContainer {
    width: 90%;
    padding: 0.75rem;
  }
  .CardImg,
  .CardImg > img {
    max-width: 100%;
  }
  .CardTextTitle h3 {
    font-size: 1.2rem;
  }
  .CardSubtitleText h4 {
    font-size: 0.9rem;
  }
  .service-cards-title h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  .cards-container {
    padding: 30px 15px;
  }
  .card {
    min-width: 220px;
  }
  .BannerContainer {
    height: 7rem;
    margin-top: 3rem;
  }
  .Slide1,
  .Slide2,
  .Slide3,
  .Slide4 {
    height: 7rem;
    padding: 1rem 0.5rem;
  }
  .Slide2 {
    top: 7rem;
  }
  .Slide3 {
    top: 14rem;
  }
  .Slide4 {
    top: 21rem;
  }
  .BannerText h2 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .BannerText h3 {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  @keyframes banner-slide {
    0%,
    100%,
    17%,
    92% {
      transform: translateY(0);
    }
    17%,
    25%,
    42% {
      transform: translateY(-7rem);
    }
    42%,
    50%,
    67% {
      transform: translateY(-14rem);
    }
    67%,
    75%,
    92% {
      transform: translateY(-21rem);
    }
  }
  .HeroTitle {
    margin: 1.5rem 1rem;
    align-items: center;
  }
  .InnerHeading {
    height: 40px;
    line-height: 40px;
    font-size: 35px;
  }
  .services-row-1,
  .services-row-2 {
    gap: 2rem;
  }
  .service-box {
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .RecentProjectsSection {
    padding-top: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .Project-Column-1,
  .Project-Column-2 {
    gap: 2rem;
    width: 100%;
  }
  .ProjectCardContainer {
    width: 95%;
    border-radius: 1.5rem;
    margin: 0 auto;
  }
  .CardImg > img {
    border-radius: 1.5rem;
  }
  .card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .card-content h3 {
    font-size: 1.2rem;
  }
  .Home-Page-CTAs {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .Home-Page-CTA-Button {
    width: 80%;
    text-align: center;
  }
  .TextBoxRow2 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .services-row-1,
  .services-row-2 {
    flex-direction: column;
    align-items: center;
  }
  .service-box {
    max-width: 90%;
  }
  .InnerHeading {
    height: 35px;
    line-height: 35px;
    font-size: 30px;
  }
  @keyframes animation {
    0%,
    100% {
      top: 0;
    }
    12% {
      top: -35px;
    }
    24% {
      top: -70px;
    }
    36% {
      top: -105px;
    }
    48% {
      top: -140px;
    }
    60% {
      top: -175px;
    }
    72% {
      top: -210px;
    }
    84% {
      top: -245px;
    }
    96% {
      top: -280px;
    }
  }
}
@media (max-width: 360px) {
  .RecentProjectsSectionTitle {
    letter-spacing: 3px;
  }
  .RecentProjectsSectionTitle h2 {
    font-size: 1.2rem;
  }
  .ProjectCardContainer {
    padding: 0.5rem;
  }
  .CardTextTitle h3 {
    font-size: 1rem;
  }
  .CardSubtitleText h4 {
    font-size: 0.8rem;
  }
  .service-cards-title h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .card-content {
    padding: 15px;
  }
  .card-content p {
    font-size: 12px;
    margin-bottom: 1.5rem;
  }
  .BannerContainer {
    height: 6rem;
    margin-top: 2rem;
  }
  .Slide1,
  .Slide2,
  .Slide3,
  .Slide4 {
    height: 6rem;
    padding: 0.75rem 0.5rem;
  }
  .Slide2 {
    top: 6rem;
  }
  .Slide3 {
    top: 12rem;
  }
  .Slide4 {
    top: 18rem;
  }
  .BannerText h2 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
  }
  .BannerText h3 {
    font-size: 0.75rem;
    line-height: 1.1;
  }
  @keyframes banner-slide {
    0%,
    100%,
    17%,
    92% {
      transform: translateY(0);
    }
    17%,
    25%,
    42% {
      transform: translateY(-6rem);
    }
    42%,
    50%,
    67% {
      transform: translateY(-12rem);
    }
    67%,
    75%,
    92% {
      transform: translateY(-18rem);
    }
  }
  .HeroTitle {
    margin: 1rem;
  }
  .HeroTitle > p {
    font-size: 0.9rem;
  }
  .InnerHeading {
    height: 30px;
    line-height: 30px;
    font-size: 25px;
  }
  @keyframes animation {
    0%,
    100% {
      top: 0;
    }
    12% {
      top: -30px;
    }
    24% {
      top: -60px;
    }
    36% {
      top: -90px;
    }
    48% {
      top: -120px;
    }
    60% {
      top: -150px;
    }
    72% {
      top: -180px;
    }
    84% {
      top: -210px;
    }
    96% {
      top: -240px;
    }
  }
}
