/* THIS CSS FILL IS FOR ALL PAGES */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat;
}

p {
  font-family: "Open Sans";
}

a {
  text-decoration: none;
  color: none;
}

img {
  max-width: 100%;
}

#anchor {
  scroll-margin-top: 80px;
}

.primary-button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--msl-button-primary-bg, #007461);
  color: var(--msl-button-primary-text, #fff);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--msl-button-primary-bg, #075144);
}

.primary-button:focus {
  outline: 2px solid #3292a7;
  outline-offset: 2px;
}

.container {
  display: flex;
  width: 100%;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

/* Hero */

.container .hero {
  display: flex;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  border-radius: 8px;
  background: #d8ead7;
  box-shadow: 0 4px 16px 0 rgba(193, 201, 217, 0.35);
  margin-bottom: 40px;
}

.container .hero .left-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.container .hero .left-section h1 {
  color: var(--Greyscale-Grey-900, #000);
  font-size: 34px;
  font-style: normal;
  hyphens: auto;
  font-weight: 700;
  line-height: 48px;
}

.container .hero .right-section {
  align-self: stretch;
}

.container .hero .right-section img {
  display: flex;
  width: 100%;
  height: 203px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

/* Cards */

.container .navigation-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.container .navigation-cards h2 {
  color: #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}

.container .cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.container .cards .card {
  display: flex;
  position: relative;
  width: 100%;
  padding: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: rgba(216, 234, 215, 0.3);
}

.container .cards .card .hover {
  position: absolute;
  border-radius: 16px;
  inset: 0;
  z-index: 2;
  text-decoration: none;
  outline: none;
}

.container .cards .card .hover:focus {
  outline: 2px solid #3292a7;
  outline-offset: 2px;
}

.container .cards .card .left-section {
  display: none;
}

.container .cards .card .right-section,
.container .cards .card .right-section .text {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.container .cards .card .right-section h3 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.container .cards .card .right-section p {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.container .cards .card .right-section .cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
}

.container .cards .card .right-section .cta .button-cta {
  display: flex;
  width: 35px;
  height: 35px;
  padding: 12px 0;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #007461;
}

.container .cards .card .right-section .cta .button-cta img {
  width: 20px;
  height: 20px;
}

/* Contact */

.container .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.container .contact h3 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.container .contact p {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 740px) {
  .primary-button {
    width: fit-content;
  }

  .container .hero {
    flex-direction: row;
  }

  .container .hero .left-section {
    width: 50%;
  }

  .container .hero .right-section {
    width: 50%;
  }

  .container .hero .right-section img {
    height: 100%;
    object-position: 70% 50%;
  }

  .container .cards {
    width: 100%;
    flex-direction: row;
    flex-flow: row wrap;
  }

  .container .cards .card {
    flex: 0 1 calc(33.333% - 16px);
    align-self: stretch;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 1120px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    max-width: 1109px;
    width: 100%;
  }

  .container .hero .left-section .primary-button {
    margin: 10px 0;
  }

  .container .hero .right-section img {
    aspect-ratio: 16;
  }

  .container .cards .card {
    flex-direction: row;
    min-height: 190px;
  }

  .container .cards .card .left-section {
    display: flex;
    width: 80px;
    padding: 0 28px 0 28px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 8px;
    background: var(--Secondary-Secondary-4, #d8ead7);
  }

  .container .cards .card .left-section img {
    width: 24px !important;
    height: 40px !important;
  }
}
