@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #18181b;
  overflow-x: hidden;
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100vw;
}

h1,
h2,
h3 {
  font-weight: 300;
}
h1 b,
h2 b,
h3 b {
  font-weight: bold;
}

.divider {
  margin: auto;
  width: 80vw;
  padding: 10px;
  border-bottom: 0.7px solid rgba(24, 24, 27, 0.19);
}
@media (width >= 1440px) {
  .divider {
    padding: 40px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.swiper-scrollbar {
  height: 1px !important;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  height: 1.5px;
  background-color: #18181b;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1rem;
}
.btn--contact {
  background-color: #18181b;
  color: #fff;
  margin: 40px 0;
}
.btn--border {
  position: relative;
  background: none;
  overflow: hidden;
  color: #18181b;
  border: 1px solid #18181b;
  padding: 6px 15px;
  transition: all 0.3s ease;
}
.btn--border:hover {
  background-color: #18181b;
  color: #fff;
}
.btn--submit {
  width: 150px;
  background-color: #18181b;
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 10px;
  border: none;
  cursor: pointer;
}

.header {
  grid-area: header;
}

.nav {
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(24, 24, 27, 0.19);
  transition: all 0.5s ease;
  z-index: 90;
  background-color: transparent;
}
.nav--scrolled {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
}
@media (width >= 768px) {
  .nav .nav__toggle {
    color: #18181b;
  }
}
@media (width >= 1024px) {
  .nav {
    padding: 1rem 5rem;
  }
}
@media (width >= 1440px) {
  .nav {
    padding: 1.1rem 6.25rem;
  }
}
.nav__logo {
  width: 130px;
  transition: all 0.3s ease-in-out;
}
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #18181b;
  font-size: 2rem;
  transition: all 0.5s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px;
  transition: all 0.5s ease, opacity 0.5s ease;
  z-index: 900;
}
@media (width >= 1440px) {
  .sidebar {
    width: 400px;
  }
}
.sidebar--active {
  right: 0;
  z-index: 1000;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.7);
}
.sidebar__language {
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.25rem;
  color: #fff;
}
.sidebar__menu {
  list-style: none;
  padding: 0;
}
.sidebar__item {
  margin-bottom: 20px;
}
.sidebar__link {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

main {
  grid-area: main;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  height: 30dvh;
  padding: 1rem 2rem;
}
@media (width >= 768px) {
  .hero {
    padding: 1rem 4rem;
  }
}
@media (width >= 1024px) {
  .hero {
    padding: 1rem 2rem;
  }
}
.hero__title {
  width: 100%;
  font-size: 4rem;
  font-weight: 600;
  color: #18181b;
  z-index: 10;
  margin: 0;
}
@media (width >= 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (width >= 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__scroll-link {
  z-index: 10;
}
.hero__scroll-indicator {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  z-index: 10;
}

.blog-content {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (width >= 768px) {
  .blog-content {
    padding: 3rem 4rem;
  }
}
@media (width >= 1024px) {
  .blog-content {
    padding: 1rem 2rem 4rem;
  }
}
.blog-content__title {
  font-size: 1rem;
  color: rgba(24, 24, 27, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.blog-search {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (width >= 768px) {
  .blog-search {
    flex-direction: row;
  }
}
.blog-search__input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(24, 24, 27, 0.3);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  flex-grow: 1;
  background: #fff;
}
.blog-search__input-wrapper i {
  color: rgba(24, 24, 27, 0.5);
  margin-right: 0.8rem;
}
.blog-search__input {
  border: none;
  outline: none;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #18181b;
}
.blog-search__input::placeholder {
  color: rgba(24, 24, 27, 0.4);
}
.blog-search__btn {
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #18181b;
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .blog-search__btn {
    width: auto;
    padding: 0.8rem 3rem;
  }
}
.blog-search__btn:hover {
  background-color: #fff;
  color: #18181b;
}

.blog-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.blog-filters__btn {
  background: rgba(24, 24, 27, 0.03);
  border: 1px solid rgba(24, 24, 27, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(24, 24, 27, 0.6);
}
.blog-filters__btn--active, .blog-filters__btn:hover {
  background: rgba(24, 24, 27, 0.08);
  color: #18181b;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width >= 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (width >= 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.158);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(24, 24, 27, 0.05);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.blog-card__image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
}
.blog-card__category {
  background: rgba(4, 255, 255, 0.1);
  color: #009999;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #18181b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.blog-card__link {
  text-decoration: none;
  color: #18181b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}
.blog-card__link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease-in-out;
}
.blog-card__link:hover {
  color: #003737;
}
.blog-card__link:hover i {
  transform: translateX(4px);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.blog-pagination__btn {
  background: #fff;
  border: 1px solid rgba(24, 24, 27, 0.2);
  color: #18181b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-pagination__btn:hover {
  background: rgba(24, 24, 27, 0.05);
}
.blog-pagination__btn--active {
  background: #18181b;
  color: #fff;
  border-color: #18181b;
  pointer-events: none;
}

.footer {
  grid-area: footer;
  background-color: #18181b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
}
@media (width >= 768px) {
  .footer {
    padding: 2.5rem 4rem;
  }
}
@media (width >= 1440px) {
  .footer {
    padding: 3rem 7.5rem;
  }
}
.footer__scroll-top {
  font-size: 1.7rem;
  color: #fff;
}
.footer__brand-info {
  display: flex;
  max-width: 1440px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media (width >= 768px) {
  .footer__brand-info {
    gap: 0.6rem;
    font-size: 1.2rem;
  }
}
@media (width >= 1024px) {
  .footer__brand-info {
    font-size: 1.5rem;
    gap: 3rem;
    flex-direction: row;
  }
}
.footer__tagline {
  width: fit-content;
  margin: 0;
  text-align: center;
  padding: 0 2rem;
  letter-spacing: 0.3rem;
}
@media (width >= 768px) {
  .footer__tagline {
    padding: 0;
  }
}
.footer__main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1440px;
  width: 100%;
}
@media (width >= 1024px) {
  .footer__main-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (width >= 768px) {
  .footer__socials {
    width: 250px;
    order: 1;
  }
}
.footer__social-link {
  color: #fff;
  text-decoration: none;
}
.footer__social-link i {
  font-size: 1.8rem;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (width >= 1024px) {
  .footer__contact-info {
    flex-direction: row;
    gap: 8rem;
  }
}
@media (width >= 1440px) {
  .footer__contact-info {
    gap: 22rem;
  }
}
.footer__regional-presence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (width >= 1024px) {
  .footer__regional-presence {
    width: fit-content;
    align-items: flex-start;
    text-align: start;
  }
}
.footer__presence-title {
  font-size: 0.81rem;
}
.footer__countries-list {
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (width >= 1024px) {
  .footer__countries-list {
    text-align: start;
  }
}
.footer__mail-link {
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
}
@media (width >= 1024px) {
  .footer__mail-link {
    width: fit-content;
  }
}
.footer__legacy {
  font-size: 0.65rem;
}

/*# sourceMappingURL=blog.css.map */
