:root {
  /* Website colors use hex codes: Six numbers or letters following a hashtag. Pick yours here: https://htmlcolorcodes.com/color-picker/ */

  /* !! Header Color !! */
  --dl-color-gray-black: #000000; /* <<<<< Hex code here! */
  /* ^^ Header Color ^^ */

  /* !! Paragraph/subheader Color !! */
  --dl-color-gray-500: #5e5e5eff; /* <<<<< Hex code here! */
  /* ^^ Paragraph/subheader Color ^^ */

  /* !! Button Text Color !! */
  --dl-color-gray-white: #FFFFFF; /* <<<<< Hex code here! */
  /* ^^ Button Text Color ^^ */

  /* !! Accent/Button Color !! */
  --dl-color-primary-100: #3a26efff; /* <<<<< Hex code here! */
  /* ^^ Accent/Button Color ^^ */

  /* !! Background Color !! */
  --dl-color-theme-neutral-light: #FBFAF9; /* <<<<< Hex code here! */
  /* ^^ Background Color ^^ */

  --dl-color-gray-700: #D9D9D9;
  --dl-color-gray-900: #eaeaeaff;

  --dl-color-primary-500: #8469deff;
  --dl-color-primary-700: #9a91e2ff;
  --dl-layout-space-unit: 8px;
  --dl-color-theme-accent1: #FFFFFF;
  --dl-color-theme-accent2: #F5D1B0;
  --dl-layout-radius-round: 50%;
  --dl-color-theme-primary1: #BF4408;
  --dl-color-theme-primary2: #E65103;
  --dl-layout-radius-radius2: 2px;
  --dl-layout-radius-radius4: 4px;
  --dl-layout-radius-radius8: 8px;
  --dl-layout-space-halfunit: 4px;
  --dl-layout-space-tenunits: 80px;
  --dl-color-theme-secondary1: #FFFFFF;
  --dl-color-theme-secondary2: #FBF1EB;
  --dl-layout-size-maxcontent: 1414px;
  --dl-layout-space-fiveunits: 40px;
  --dl-layout-space-fourunits: 32px;
  --dl-layout-space-doubleunit: 16px;
  --dl-layout-space-tripleunit: 24px;
  --dl-color-theme-neutral-dark: #191818;
  --dl-layout-radius-cardradius: 8px;

  --dl-layout-radius-imageradius: 8px;
  --dl-layout-radius-inputradius: 24px;
  --dl-layout-radius-buttonradius: 24px;
}

.navbar {
  width: 100%;
  display: flex;
  box-shadow: 5px 5px 10px 0px #d4d4d4;
  align-items: center;
  padding: 32px 48px; /* Consolidated padding */
  justify-content: space-between;
}

.navbar__menu{
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.navbar__menu__links {
  gap: 32px;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.navbar__menu__links--mobile {
  margin: 10%
}

/* Style the navigation menu */
.mobile-navbar {
  display: none;
  width: 100%;
  overflow: hidden;
  background-color: var(--dl-color-gray-white);
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.mobile-navbar #myLinks {
  display: none;
}

/* Style navigation menu links */
.mobile-navbar a {
  color: var(--dl-color-gray-black);
  padding: 14px 16px;
  font-family: Open Sans;
  text-decoration: none;
  font-size: 24px;
  display: block;
}

/* Style the hamburger menu */
.mobile-navbar a.icon {
  background: var(--dl-color-gray-white);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.mobile-navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: var(--dl-color-gray-white);
  color: white;
}

.container {
  width: 100%;
  height: auto;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
}

.separator {
  width: 100%;
  height: 1px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background-color: var(--dl-color-gray-700);
}

.header {
  margin-bottom: var(--dl-layout-space-tripleunit);
  color: var(--dl-color-gray-black);
  font-size: 48px;
  font-family: Open Sans;
  font-weight: 700;
  line-height: 1.22;
  text-transform: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  margin-bottom: var(--dl-layout-space-doubleunit);
  font-family: Open Sans;
  color: var(--dl-color-gray-black);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: var(--dl-layout-space-tripleunit);
  font-family: Open Sans;
  color: var(--dl-color-gray-500);
}

.image--big {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.icon--card {
  width: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}

a {
  font-family: Open Sans;
  font-weight: 700;
}


.button {
  color: var(--dl-color-gray-white);
  width: 40%;
  align-self: flex-start;
  text-align: center;
  
  padding: var(--dl-layout-space-doubleunit);
  border-radius: 34px;
  background-color: var(--dl-color-primary-100);
  margin-bottom: var(--dl-layout-space-tripleunit);
  text-transform: capitalize;
  line-height: 1.55;
}

.button--centered {
  align-self: center;
}

.button--small {
  width: 20%;
}

.iframe--map {
  width: 638px; 
  height: 401px;
}

.hero {
  width: 100%;
  display: flex;
  max-width: var(--dl-layout-size-maxcontent);
  margin-top: var(--dl-layout-space-fiveunits);
  align-items: center;
  padding: var(--dl-layout-space-fiveunits) var(--dl-layout-space-tripleunit);
  flex-direction: row;
  padding-bottom: var(--dl-layout-space-fiveunits);
  justify-content: center;
}

.hero__container {
  display: flex;
  width: 45%;
  margin: 0% 2%;
  flex-direction: column;
  margin-bottom: var(--dl-layout-space-tripleunit);
}

.content {
  width: 100%;
  display: flex;
  max-width: var(--dl-layout-size-maxcontent);
  align-items: flex-start;
  padding: var(--dl-layout-space-tenunits) var(--dl-layout-space-tripleunit) var(--dl-layout-space-fiveunits);
  flex-direction: row;
  justify-content: center;
}

.content--centered {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.content__heading {
  display: flex;
  width: 35%;
  margin-right: var(--dl-layout-space-fiveunits);
  flex-direction: column;
}

.content__heading--centered {
  display: flex;
  width: 45%;
  align-items: center;
  margin-bottom: var(--dl-layout-space-fiveunits);
  margin-right: 0px;
}

.content__text {
  width: 45%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}



.content__cards-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
}

.content__card {
  width: 30%;
  display: flex;
  position: relative;
  align-self: flex-start;
  align-items: center;
  padding: var(--dl-layout-space-doubleunit);
  flex-direction: column;
}

/* Consolidated Media Queries */
@media (max-width: 991px) {
  .hero {
    flex-direction: column-reverse;
  }
  .hero__container {
    width: 80%;
    margin-left: 0px;
  }
  .content {
    flex-direction: column;
  }
  .content__heading {
    width: 100%;
    margin-right: 0px;
    margin-bottom: var(--dl-layout-space-tripleunit);
  }
  .content__text {
    width: 100%;
  }
  .content__card {
    align-self: center;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding-left: 32px;
    padding-right: 32px;
  }
  .navbar__menu {
    display: none;
  }
  .home-heading-elm1 {
    text-align: center;
  }
  .content {
    align-items: center;
  }
  .content__heading {
    align-items: flex-start;
  }
  .content__cards-container {
    align-items: center;
    flex-direction: column;
  }
  .content__card {
    width: 70%;
    margin-bottom: var(--dl-layout-space-tripleunit);
  }
}

@media (max-width: 479px) {
  .button {
    width: 100%;
    align-self: center;
  }
  .navbar {
    padding: var(--dl-layout-space-unit) 16px;
  }
  .hero__container {
    width: 100%;
  }
  .iframe--map {
    width: 100%;
  }
  .content__card {
    width: 100%;
  }
  .home-feature-card-elm2 {
    width: 100%;
  }
  .image--big {
    width: 100%;
    height: 400px;
  }
  .navbar {
    display: none;
  }
  .mobile-navbar {
    display: block;
  }
}