/* BREAKPOINTS */
*,
*::before,
*::after {
  /* Forces padding and border to be inside the element's defined width/height. */
  box-sizing: border-box;
}

/* Optional additions for clean text rendering */
body {
  padding: 0;
  margin: 0;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
}

/* Remove default margin from headings, paragraphs, and lists */
h1, h2, p, ul, ol {
  margin: 0;
}

.o-flex {
  display: flex;
}

.c-page {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 0 1rem;
}
@media screen and (min-width: 1200px) {
  .c-page {
    padding: 0;
  }
}
.c-page__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #090909;
  margin: 1rem 0 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-page__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-page__title {
    font-size: 3rem;
  }
}
.c-page__title::first-letter {
  color: #00838F;
  border-bottom: 4px solid #00838F;
}
.c-page__title-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  color: #090909;
  text-align: center;
}
.c-page__title-description::first-letter {
  color: #00838F;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-page__title-description {
    font-size: 1.25rem;
  }
}
.c-page__subtitle {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: #090909;
  margin: 0 0 1.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-page__subtitle {
    font-size: 1.5rem;
  }
}
.c-page__subtitle::first-letter {
  color: #00838F;
  border-bottom: 3px solid #00838F;
}

.c-navigation {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (min-width: 992px) {
  .c-navigation {
    padding: 1rem 0;
    border: unset;
  }
}
.c-navigation__logo {
  padding: 0.25rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .c-navigation__logo {
    padding: 0.25rem 0;
  }
}
.c-navigation__logo svg {
  width: 100%;
  height: 40px;
  transition: 0.3s all ease-in-out;
}
.c-navigation__logo svg:hover {
  transform: rotate(360deg);
}
.c-navigation__menu {
  display: grid;
}
.c-navigation__menuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 100px;
  border: unset;
  background-color: transparent;
}
.c-navigation__menuButton svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: black;
}
@media screen and (min-width: 992px) {
  .c-navigation__menuButton {
    display: none;
  }
}
.c-navigation__menuItemsWrap {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-navigation__menuItemsWrap {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
}
.c-navigation__menuItemsWrap--open {
  display: grid;
  gap: 0.75rem;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .c-navigation__menuItemsWrap--open {
    position: unset;
    box-shadow: unset;
    padding: unset;
    background-color: transparent;
    display: flex;
    gap: 1.5rem;
  }
}
.c-navigation__menuItem {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 1rem;
  transition: 0.3s all ease-in-out;
}
.c-navigation__menuItem:hover {
  text-decoration: underline;
}
.c-navigation__menuItem--login {
  padding: 0.25rem 0.75rem;
  background-color: #00838F;
  color: #FFFFFF;
  border-radius: 0.25rem;
}
.c-navigation__menuItem--login:hover {
  background-color: #090909;
  text-decoration: none;
}
.c-navigation__menuItem--lang {
  display: inline-block;
  transition: 0.3s all ease-in-out;
  padding-right: 0.25rem;
}
.c-navigation__menuItem--lang:hover {
  text-decoration: none;
  color: #00838F;
}
.c-navigation__menuItem--lang:hover::first-letter {
  color: #00838F;
  border-bottom: 2px solid #00838F;
}
.c-navigation__menuItem--lang--active::first-letter {
  color: #00838F;
  border-bottom: 2px solid #00838F;
}

.c-blog-item {
  position: relative;
  width: 100%;
  padding-top: 50%;
  background-color: #090909;
}
.c-blog-item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  padding: 1rem;
  box-sizing: border-box;
}
.c-blog-item__content--blog-link {
  color: #FFFFFF;
  background-color: #00838F;
  transition: 0.3s all ease-in-out;
  text-decoration: none;
}
.c-blog-item__content--blog-link svg {
  width: 8rem;
  height: 8rem;
  fill: #FFFFFF;
  transition: 0.3s all ease-in-out;
}
.c-blog-item__content--blog-link:hover {
  background-color: #090909;
}
.c-blog-item__content--blog-link:hover svg {
  fill: #FFFFFF;
}
.c-blog-item__title {
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.c-blog-item__date {
  font-size: 0.875rem;
  font-weight: 400;
}
.c-blog-item__read-more {
  color: #FFFFFF;
  text-decoration: underline;
}
.c-blog-item__read-more:hover {
  text-decoration: none;
  opacity: 0.8;
}
.c-blog-item__next-page-title {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
.c-blog-item__text-wrapper {
  padding: 0.5rem;
  display: grid;
  align-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
}
.c-blog-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}

.c-partners {
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-partners {
    width: 90%;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .c-partners {
    width: 100%;
    justify-content: space-between;
  }
}
.c-partners__logo {
  width: 100px;
  height: auto;
  transition: 0.3s all ease-in-out;
  /* &:hover {
      filter: grayscale(0%);
      opacity: 1;
  } */
}
.c-partners__logo img {
  width: 100%;
  height: auto;
}

.c-footer {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #090909;
  color: #FFFFFF;
  border-top: 8px solid #00838F;
}
@media screen and (min-width: 1200px) {
  .c-footer {
    padding: 2rem 0;
  }
}
.c-footer__wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.c-footer__contact {
  padding: 0 0 1rem 0;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  text-align: left;
}
.c-footer__contact a {
  color: #FFFFFF;
  text-decoration: none;
}
.c-footer__contact a:hover {
  text-decoration: underline;
}
.c-footer__disclaimer {
  padding: 1rem 0 1rem;
  border-top: 1px solid #FFFFFF;
  font-size: 0.875rem;
  color: #FFFFFF;
  text-align: left;
  opacity: 0.7;
}
.c-footer__disclaimer p {
  margin: 0;
  font-size: 1rem;
}