@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://unpkg.com/tailwindcss@3.4.1/src/css/preflight.css");
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #002f35;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 0.25rem 0;
}
.skip-link:focus {
  top: 0;
}

#main-content {
  outline: none;
}

.body-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}
.body-container p,
.body-container label {
  color: #001d25;
}

.header-container {
  color: #002f35;
  background-color: #f5f5f5;
}
.header-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  padding: 1rem 2rem;
}
.header-container__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.header-container__nav ul {
  display: flex;
}
.header-container__nav ul li a {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  margin-left: 30px;
  font-size: 1rem;
}
.header-container__nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #002f35;
  transition: width 0.3s ease;
}
.header-container__nav ul li a:hover::after {
  width: calc(100% - 30px);
}
.header-container__nav ul li a:focus {
  outline: 2px solid #cc992b;
  outline-offset: 2px;
}
.header-container__nav ul li a[aria-current=page] {
  font-weight: 600;
  color: #cc992b;
}
.header-container__nav ul li a[aria-current=page]::after {
  width: calc(100% - 30px);
}
.header-container__nav button {
  margin-left: auto;
  display: none;
}
.header-container__nav button:focus {
  outline: 2px solid #cc992b;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .header-container__nav {
    flex-direction: column;
    align-items: stretch;
  }
  .header-container__nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-container__nav ul.active {
    display: flex;
  }
  .header-container__nav ul li a {
    margin-left: 0;
  }
  .header-container__nav ul li a:hover {
    margin-left: 0;
  }
  .header-container__nav ul li a::after {
    width: 0;
  }
  .header-container__nav ul li a:hover::after {
    width: 10%;
  }
  .header-container__nav button {
    display: block;
  }
}
.header-container__brand {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.hero-container {
  color: #f5f5f5;
  background-color: #002f35;
}
.hero-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}
.hero-container__info h1 {
  font-size: 2.5rem;
  font-weight: 350;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #f5f5f5;
}
@media (max-width: 320px) {
  .hero-container__info h1 {
    font-size: 2rem;
  }
}
.hero-container__info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}
.hero-container img {
  justify-self: center;
}

.offer-container {
  background-color: #ffffff;
}
.offer-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.offer-container__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
  margin-bottom: 7rem;
}
@media (max-width: 320px) {
  .offer-container__content h2 {
    font-size: 2rem;
  }
}
.offer-container__content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(80%, 250px), 1fr));
  column-gap: 4rem;
  row-gap: 6rem;
  counter-reset: li-counter;
}
@media (max-width: 1024px) {
  .offer-container__content ul {
    row-gap: 7rem;
  }
}
.offer-container__content ul li {
  counter-increment: li-counter;
  position: relative;
  z-index: 1;
  border-radius: 1.4rem;
  padding: 1.4rem;
}
.offer-container__content ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 155, 160, 0.14);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: 1.4rem;
}
.offer-container__content ul li::after {
  content: counter(li-counter);
  position: absolute;
  z-index: -2;
  top: -8.5rem;
  left: -2.4rem;
  font-size: 12rem;
  color: #809ba0;
}
@media (max-width: 1024px) {
  .offer-container__content ul li::after {
    top: -9.5rem;
    left: 0;
  }
}
.offer-container__content ul li .service-heading {
  display: flex;
  margin-bottom: 1rem;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
  gap: 0.75rem;
}
.offer-container__content ul li .service-heading h3 {
  color: #002f35;
  font-size: 1.5rem;
  align-self: center;
}
.offer-container__content ul li .service-heading svg {
  align-self: center;
  width: 45px;
  height: 45px;
  stroke: #002f35;
  stroke-width: 1.5px;
}

.numbers-container {
  background-color: #002f35;
}
.numbers-container ul {
  width: 100%;
  margin: 0 auto;
  padding: 3rem;
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}
.numbers-container ul li {
  display: flex;
  align-items: center;
}
.numbers-container ul li svg {
  height: 60px;
  width: 60px;
  stroke: #b3bfc4;
  stroke-width: 1.5px;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  .numbers-container ul li svg {
    display: none;
  }
}
.numbers-container ul li h2 {
  font-size: 1.3rem;
  color: #f5f5f5;
  font-weight: 200;
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .numbers-container ul li h2 {
    font-size: 1rem;
  }
}
.numbers-container ul li p {
  font-size: 2.3rem;
  color: #f5f5f5;
  font-weight: 200;
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .numbers-container ul li p {
    font-size: 2rem;
  }
}
.numbers-container ul li .value-key {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.careers-container {
  background-color: #f5f5f5;
}
.careers-container__content {
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 1rem;
  gap: 2rem;
}
.careers-container__content a {
  width: auto;
  max-width: 600px;
  justify-self: center;
  padding: 0 2rem;
}

.team-container {
  background-color: #ffffff;
  overflow: hidden;
  padding: 2rem 0;
}
.team-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  padding: 0 2rem;
}
.team-container__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  .team-container__content h2 {
    font-size: 2rem;
  }
}
.team-container .splide .splide__track .splide__list .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
.team-container .splide .splide__track .splide__list .splide__slide img {
  display: block;
  width: 250px;
}

.affiliations-container {
  background-color: #ffffff;
}
.affiliations-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.affiliations-container__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  .affiliations-container__content h2 {
    font-size: 2rem;
  }
}
.affiliations-container__content-items {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 3rem;
}
.affiliations-container__text h3 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #001d25;
  margin-bottom: 0.5rem;
}
@media (max-width: 320px) {
  .affiliations-container__text h3 {
    font-size: 1.5rem;
  }
}
.affiliations-container__text p {
  font-size: 1.2rem;
}
@media (max-width: 320px) {
  .affiliations-container__text p {
    font-size: 1rem;
  }
}
.affiliations-container__logos {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
}
.affiliations-container__logos img {
  width: auto;
  max-height: 200px;
  object-fit: contain;
}
@media (max-width: 320px) {
  .affiliations-container__logos img {
    max-height: 100px;
  }
}

.footer-container {
  margin-top: auto;
  background-color: #002f35;
  color: #f5f5f5;
}
.footer-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  column-gap: 1rem;
  row-gap: 2rem;
}
.footer-container__column h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.footer-container__column ul li {
  display: flex;
  gap: 0.5rem;
}
.footer-container__column a {
  color: #b3bfc4;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}
.footer-container__column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #b3bfc4;
  transition: width 0.3s ease-out;
}
.footer-container__column a:hover::after {
  width: 100%;
}
.footer-container__social {
  margin-top: 0.5rem;
}
.footer-container__social svg {
  width: 40px;
  height: 40px;
}

.btn-primary, .btn-primary-icon {
  background-color: #cc992b;
  color: #f5f5f5;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, outline 0.2s ease;
}
.btn-primary:hover, .btn-primary-icon:hover {
  background-color: #a27922;
  color: #f5f5f5;
}
.btn-primary:focus, .btn-primary-icon:focus {
  background-color: #a27922;
  color: #f5f5f5;
  outline: 3px solid #002f35;
  outline-offset: 2px;
}
.btn-primary:focus-visible, .btn-primary-icon:focus-visible {
  outline: 3px solid #002f35;
  outline-offset: 2px;
}

.btn-primary-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.careers-page {
  background-color: #ffffff;
}
.careers-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 2rem;
}
.careers-page__info h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  text-align: left;
}
@media (max-width: 320px) {
  .careers-page__info h1 {
    font-size: 1.7rem;
  }
}
.careers-page__info h2 {
  font-size: 1.25rem;
  color: #002f35;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.careers-page__info p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.careers-page img {
  justify-self: center;
  max-width: 100%;
}
.careers-page__highlight {
  color: #cc992b;
  font-weight: 600;
}

.career-opportunities__hint {
  color: #809ba0 !important;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.career-opportunities__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.career-opportunities__content p {
  color: #001d25;
}
.career-opportunities__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  .career-opportunities__content h2 {
    font-size: 2rem;
  }
}
.career-opportunities__content .accordion .accordion-item {
  margin-bottom: 0.5rem;
}
.career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.4rem;
  color: #002f35;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 320px) {
  .career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1.2rem;
  }
}
.career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button svg {
  margin-left: auto;
  transition: transform 0.4s ease, scale 0.3s ease;
  width: 25px !important;
  min-width: 25px !important;
  height: 25px !important;
  min-height: 25px !important;
  transform-origin: center;
}
.career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button:hover svg {
  transform: scale(1.2);
}
.career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button .accordion-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.career-opportunities__content .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] .accordion-icon {
  transform: rotate(180deg);
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse {
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse a {
  color: #cc992b;
  transition: color 0.3s ease;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse a:hover {
  color: #a27922;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse ul {
  list-style-type: disc;
  padding-left: 40px;
  color: #001d25;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse li {
  margin-bottom: 0.5rem;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse p {
  margin-top: 1rem;
}
.career-opportunities__content .accordion .accordion-item .accordion-collapse.collapse {
  max-height: 0;
}
.career-opportunities__content .accordion hr {
  border: 0.05rem solid #b3bfc4;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.career-opportunities__empty {
  font-size: 1.25rem;
  color: #002f35;
}

.projects-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.projects-page__content h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 320px) {
  .projects-page__content h1 {
    font-size: 1.7rem;
  }
}
.projects-page__content ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-around;
  gap: 3rem;
  margin-top: 4rem;
}
.projects-page__content ul li {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.projects-page__content ul li:hover {
  cursor: pointer;
}
.projects-page__project {
  position: relative;
}
.projects-page__project:hover img {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.projects-page__project img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.projects-page__project h3 {
  font-size: 1.5rem;
  color: #002f35;
  font-weight: 450;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}
.projects-page__project h4 {
  color: #647b80;
}
.projects-page__empty {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #002f35;
}

.project-page {
  background-color: #ffffff;
}
.project-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 2rem;
}
.project-page__description p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.project-page__description ul {
  list-style-type: disc;
  padding-left: 2rem;
  color: #001d25;
}
.project-page__description ol {
  color: #001d25;
  list-style-type: decimal;
  padding-left: 2rem;
}
.project-page__description li {
  margin-bottom: 0.3rem;
}
.project-page__description h1 {
  font-size: 1.5rem;
  color: #002f35;
  font-weight: 500;
  margin-bottom: 1rem;
}
.project-page__description h2 {
  font-size: 1.3rem;
  color: #002f35;
  font-weight: 500;
  margin-bottom: 1rem;
}
.project-page__title {
  margin-bottom: 1rem;
}
.project-page__title h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 320px) {
  .project-page__title h1 {
    font-size: 1.7rem;
  }
}
.project-page__title h4 {
  color: #647b80;
}
.project-page__budget p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.project-page__budget-highlight {
  font-weight: 600;
}
.project-page__url p {
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.project-page__url-highlight {
  font-weight: 600;
}
.project-page__url a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.project-page__url a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.project-page img {
  justify-self: center;
}
.project-page a {
  color: #cc992b;
  transition: color 0.3s ease;
}
.project-page a:hover {
  color: #a27922;
}

.privacy-page__content,
.terms-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.privacy-page h1,
.terms-page h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 320px) {
  .privacy-page h1,
  .terms-page h1 {
    font-size: 1.7rem;
  }
}
.privacy-page h2,
.terms-page h2 {
  font-size: 1.5rem;
  color: #002f35;
  font-weight: 500;
  margin-bottom: 1rem;
}
.privacy-page h4,
.terms-page h4 {
  font-weight: 500;
  color: #cc992b;
  margin-bottom: 0.5rem;
}
.privacy-page h5,
.terms-page h5 {
  color: #001d25;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.privacy-page p,
.terms-page p {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}
.privacy-page ol,
.terms-page ol {
  color: #001d25;
  font-size: 0.8rem;
  list-style-type: lower-alpha;
  padding-left: 1.5rem;
}
.privacy-page ol li,
.terms-page ol li {
  margin-bottom: 0.3rem;
}
.privacy-page .c,
.terms-page .c {
  list-style-type: decimal;
}
.privacy-page a,
.terms-page a {
  color: #cc992b;
  transition: color 0.3s ease-in-out;
}
.privacy-page a:hover,
.terms-page a:hover {
  color: #a27922;
}
.privacy-page strong,
.terms-page strong {
  font-weight: 500;
  color: #cc992b;
}

.contact-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.contact-page__content h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 320px) {
  .contact-page__content h1 {
    font-size: 1.7rem;
  }
}
.contact-page li {
  color: #001d25;
}
.contact-page__items {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-page__items {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  }
  .contact-page__items-find {
    order: 1;
  }
  .contact-page__items-location {
    order: 2;
  }
}
.contact-page__items-find hr {
  color: #b3bfc4;
}
.contact-page__items-find h3 {
  font-size: 1.2rem;
  color: #cc992b;
}
.contact-page__items-find ul li {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem auto;
  font-size: 0.95rem;
}
.contact-page__items-find ul li svg {
  stroke: #cc992b;
}
.contact-page__items-location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-page__items-location h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: #001d25;
}
.contact-page__contact-us, .contact-page__social-media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-page__social-media {
  margin-top: 1rem;
}
.contact-page__social-media svg {
  margin-right: 0.8rem;
  width: 40px;
  height: 40px;
  transition: stroke 0.3s ease-in-out;
}
.contact-page__social-media svg:hover {
  stroke: #a27922;
}
.contact-page iframe {
  width: 100%;
  height: 400px;
  margin: 0 0;
}

.about-us-container {
  background-color: #ffffff;
}
.about-us-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.about-us-container__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  .about-us-container__content h2 {
    font-size: 2rem;
  }
}
.about-us-container__content h3 {
  margin-top: 0;
  font-size: 2rem;
  color: #002f35;
  margin-bottom: 0.5rem;
}
@media (max-width: 320px) {
  .about-us-container__content h3 {
    font-size: 1.5rem;
  }
}
.about-us-container__content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #001d25;
}
.about-us-container__content .item__who-we-are {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.about-us-container__content .item__who-we-are__image {
  width: 450px;
  justify-self: center;
}
.about-us-container__content .item__our-story {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .about-us-container__content .item__our-story img {
    display: none;
  }
}
.about-us-container__content .item__our-story__content {
  align-self: start;
}
.about-us-container__content .item__our-story__image {
  align-self: start;
  justify-self: center;
  height: 80%;
}

.commitment-container {
  background-color: #f5f5f5;
}
@media (min-width: 1024px) {
  .commitment-container {
    background-color: rgba(245, 245, 245, 0.76);
  }
  .commitment-container::before {
    content: "";
    position: fixed;
    top: 0;
    right: 2rem;
    width: 50%;
    height: 100%;
    background: url("../images/logo.a0dc39ead762.png") no-repeat center right;
    background-size: contain;
    opacity: 0.4;
    z-index: -1;
  }
}
.commitment-container__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.commitment-container__content h2 {
  font-size: 3rem;
  color: #002f35;
  font-weight: 400;
  text-align: center;
  text-decoration-color: #b3bfc4;
  text-underline-offset: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  .commitment-container__content h2 {
    font-size: 2rem;
  }
}
.commitment-container__content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
}
.commitment-container__content ul h4 {
  font-size: 1.5rem;
  color: #001d25;
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .commitment-container__content ul h4 {
    font-size: 1rem;
  }
}
.commitment-container__content ul > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(245, 245, 245, 0.02);
  padding: 1.2rem;
  border-radius: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(10px);
}
.commitment-container__content ul li {
  display: flex;
  align-items: center;
}
.commitment-container__content ul li svg {
  height: 100px;
  width: 100px;
  stroke: #002f35;
  stroke-width: 1.5px;
}
@media (max-width: 768px) {
  .commitment-container__content ul li svg {
    height: 85px;
    width: 85px;
    stroke-width: 1.4px;
  }
}
@media (max-width: 320px) {
  .commitment-container__content ul li svg {
    height: 70px;
    width: 70px;
  }
}

.email-address {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-word;
}

.articles-page {
  background: #ffffff;
}
.articles-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.articles-page__content h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 320px) {
  .articles-page__content h1 {
    font-size: 1.7rem;
  }
}
.articles-page__content ul.articles li a {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  display: grid;
  justify-content: space-around;
  grid-template-columns: 30% 70%;
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 430px) {
  .articles-page__content ul.articles li a {
    grid-template-columns: 1fr;
  }
}
.articles-page__content ul.articles li a .featured_picture {
  width: 100%;
  height: 250px;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
.articles-page__content ul.articles li a .featured_picture img {
  object-fit: contain;
  width: 100%;
  height: 250px;
  transition: 0.5s all ease-in-out;
}
.articles-page__content ul.articles li a .content h2 {
  font-size: 1.3rem;
  color: #002f35;
  font-weight: 500;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}
.articles-page__content ul.articles li a .content h4 {
  color: #647b80;
}
.articles-page__content ul.articles li a .content p {
  margin: 5px 0;
}
.articles-page__content ul.articles li a .content .tags {
  margin-top: 5px;
  font-size: 0.7rem;
}
.articles-page__content ul.articles li a .content .tags__item {
  background-color: #cc992b;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.articles-page__content ul.articles li a:hover {
  cursor: pointer;
}
.articles-page__content ul.articles li a:hover img {
  transform: scale(1.1);
}
.articles-page__empty {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #002f35;
}

.article-page {
  background-color: #ffffff;
}
.article-page__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.article-page__content > img {
  width: 500px;
  max-height: 500px;
  object-fit: cover;
  margin: 0 2rem 2rem 0;
  border: 1px solid #647b80;
}
@media (min-width: 768px) {
  .article-page__content > img {
    float: left;
    max-width: 50%;
  }
}
.article-page__info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.article-page__title {
  margin-bottom: 1rem;
}
.article-page__title h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 320px) {
  .article-page__title h1 {
    font-size: 1.7rem;
  }
}
.article-page__description ul {
  list-style-type: disc;
  padding-left: 2rem;
  color: #001d25;
}
.article-page__description ol {
  color: #001d25;
  list-style-type: decimal;
  padding-left: 2rem;
}
.article-page__description li {
  margin-bottom: 0.3rem;
}
.article-page__description p {
  margin-top: 2rem;
}
.article-page__description a {
  color: #cc992b;
  transition: color 0.3s ease;
}
.article-page__description a:hover {
  color: #a27922;
}
.article-page__description h1 {
  font-size: 1.5rem;
  color: #002f35;
  font-weight: 500;
  margin-bottom: 1rem;
}
.article-page__description h2 {
  font-size: 1.3rem;
  color: #002f35;
  font-weight: 500;
  margin-bottom: 1rem;
}
.article-page__attachments {
  margin-bottom: 1rem;
}
.article-page__attachments ul.attachments li {
  word-break: break-word;
}
.article-page__attachments ul.attachments li a {
  display: inline-flex;
  align-items: center;
}
.article-page__attachments ul.attachments li a svg {
  margin-right: 0.5rem;
  height: 20px;
  width: 20px;
}
.article-page__tags ul.tags {
  display: flex;
}
.article-page__tags ul.tags li {
  background-color: #cc992b;
  font-size: 0.7rem;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 5px;
}
.article-page h4 {
  color: #647b80;
  margin-bottom: 0.5rem;
}
.article-page a {
  color: #cc992b;
  transition: color 0.3s ease;
}
.article-page a:hover {
  color: #a27922;
}

.article-images {
  background-color: #ffffff;
}
.article-images__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 3rem;
}
.article-images__content img {
  width: auto;
  max-height: 300px;
  object-fit: contain;
}
.article-images__content .article-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.article-images__content figcaption {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.related-articles {
  background-color: #ffffff;
}
.related-articles__content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.related-articles__content h1 {
  font-size: 2rem;
  color: #002f35;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 320px) {
  .related-articles__content h1 {
    font-size: 1.7rem;
  }
}
.related-articles__content ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-around;
  gap: 3rem;
}
.related-articles__content ul li .tags span {
  background-color: #cc992b;
  font-size: 0.7rem;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 5px;
}
.related-articles__content ul li h3 {
  color: #002f35;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.related-articles__content ul li h4 {
  color: #647b80;
  margin-bottom: 0.5rem;
}
.related-articles__content ul li .picture {
  width: 100%;
  height: 250px;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 320px) {
  .related-articles__content ul li .picture {
    height: 200px;
  }
}
.related-articles__content ul li .picture img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: 0.5s all ease-in-out;
}
@media (max-width: 320px) {
  .related-articles__content ul li .picture img {
    height: 200px;
  }
}
.related-articles__content ul li:hover img {
  transform: scale(0.9);
}

.pagination {
  text-align: center;
  margin-top: 20px;
}
.pagination .pagination-list {
  list-style: none;
  padding: 0;
  display: inline-block;
}
.pagination .pagination-list .page-item {
  display: inline;
}
.pagination .pagination-list .page-link {
  position: relative;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  color: #002f35;
  border-radius: 5px;
  transition: color 0.5s;
  border: none;
}
.pagination .pagination-list .page-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: #002f35;
  transition: width 0.5s;
  left: 0;
  bottom: 0;
}
.pagination .pagination-list .page-link:hover:after {
  width: 100%;
}
.pagination .pagination-list .page-link:hover {
  color: #002f35;
}
.pagination .pagination-list .page-item.active .page-link:after {
  width: 100%;
}
