
  /* CTA */

.cta {
  height: 100vh;
  background: #6c2f16;
  position: relative;
}

.inner-cta {
  padding: 92px 0;
}

.inner-cta .cta-content {
  width: 100%;
  background: red;
  position: relative;
  overflow: hidden;
  max-height: 640px;
}

.cta-bg {
  background: #6c2f16;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-content {
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.cta-slogan {
  color: #fff;
  font-size: 76px;
  line-height: 1;
  max-width: 1000px;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}

.cta-btn {
  background-color: transparent;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  z-index: 3;
}

@media (max-width: 1024px) {
  .cta {
    height: 50vh;
  }

  .cta-slogan {
    font-size: 64px;
  }

  .inner-cta {
    padding: 64px 0;
  }
  
  .cta-content {
      max-height: 50vh;
  }
}

@media (max-width: 820px) {
  .cta-slogan {
    font-size: 54px;
  }

  .inner-cta .cta-content {
    max-height: 480px;
  }
}

@media (max-width: 767px) {
  .cta-slogan {
    font-size: 44px;
  }

  .cta-btn {
    font-size: 12px;
    padding: 20px;
  }

  .inner-cta {
    padding: 44px 0;
  }

  .inner-cta .cta-content {
    max-height: 300px;
  }
  
  .cta-content {
      max-height: 50vh;
  }

  .inner-cta .cta-slogan {
    font-size: 32px;
    max-width: 90%;
  }
}

/* --- CTA --- */

/* news PAGE */

/* news-title-area */

.news-title-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  gap: 0;
  background: #acdcd2;
}

.news-title-area-breadcrumbs {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}

.news-title-area-breadcrumbs .breadcrumbs-list {
  padding-left: 0;
}

.news-title-area-content {
  display: flex;
  height: 500px;
  align-items: flex-end;
}

.news-title-text {
  padding: 67px 53px 92px;
  background: #16342d;
  position: relative;
  color: #fff;
  width: 100%;
}

.news-title-text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: -100%;
  background: inherit;
}

.news-title-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  right: -100%;
  background: inherit;
}

.news-title {
  font-size: 164px;
  font-weight: 500;
  line-height: 1;
  transform: translateX(-10px);
}

.news-text {
  padding-top: 6px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.4;
  width: 80%;
}

@media (max-width: 1024px) {
  .news-title-area-content {
    height: 425px;
  }

  .news-title-text {
    padding: 26px 26px 60px;
  }

  .news-title {
    font-size: 104px;
  }

  .news-text {
    font-size: 18px;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .news-title-area-content {
    height: 340px;
  }

  .news-title-text {
    padding: 33px 16px 43px;
  }

  .news-title {
    font-size: 64px;
    transform: translateX(-5px);
  }

  .news-text {
    font-size: 16px;
    width: 100%;
  }
}

.news-filters {
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  padding: 6px;
  border-radius: 40px;
  background: #f0f0f0;
  display: flex;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.news-filters-item {
  border-radius: 44px;
  background-color: #fff;
  color: #0b2923;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
}

.news-filters-item.is-active,
.news-filters-item:hover {
  background-color: #010109;
  color: #fff;
}

/* blog-listing */

.blog-listing {
  padding: 74px 0 0;
}

.blog-listing-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-listing-filters-area {
  display: flex;
  gap: 8px;
}

.blog-listing-filters {
  display: flex;
  gap: 6px;
  background: #f0f0f0;
  padding: 6px;
  border-radius: 40px;
}

.blog-listing-filters .news-filters-item {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

.search-field {
  flex: 1;
  position: relative;
}

.search-field-input {
  width: 100%;
  padding: 26px 80px;
  background: #f0f0f0;
  border-radius: 40px;
  color: #000;
  font-weight: 600;
  font-size: 16px;
}

.search-button {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* blog-items */

.blog-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.blog-item-link {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-decoration: none;
}

.blog-item-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-item-excerpt {
  font-size: 18px;
}

.blog-item-meta {
  display: flex;
  gap: 18px;
  opacity: 0.5;
  color: #000;
  font-size: 18px;
  align-items: center;
}

.blog-item-tag {
  border: 1px solid #000;
  border-radius: 47px;
  padding: 4px 10px;
}

.blog-item.is-short {
  grid-row: span 1;
}

.blog-item.is-short .blog-item-excerpt {
  display: none;
}

.blog-item.is-tall {
  grid-row: span 2;
  gap: 140px;
}

.blog-item.is-wide {
  grid-row: span 2;
  grid-column: span 2;
  padding: 0;
}

.blog-item .inner-cta {
  padding: 0;
  height: 100%;
}

.blue {
  background: #9fcffa;
}

.green {
  background: #acdcd2;
}

.purple {
  background: #c9b6f4;
}

.yellow {
  background: #f8ffaf;
}

.pink {
  background: #ffc3b2;
}

.close-icon {
  display: none;
}

@media (max-width: 1024px) {
  .blog-listing {
    padding: 54px 0 114px;
  }

  .blog-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .blog-item.is-tall {
    gap: 60px;
  }

  .blog-item.is-wide {
    display: none;
  }

  .blog-item:first-child {
    grid-row: span 2;
  }

  .blog-item:nth-child(2) {
    grid-row: span 1;
  }

  .blog-item:nth-child(3) {
    grid-row: span 1;
    gap: 0;
  }

  .blog-item:nth-child(3) .blog-item-excerpt {
    display: none;
  }

  .blog-item:nth-child(4) {
    grid-row: span 1;
  }

  .blog-item:nth-child(5) {
    grid-row: span 2;
  }

  .blog-item:nth-child(6) {
    grid-row: span 1;
    gap: 0;
  }

  .blog-item:nth-child(6) .blog-item-excerpt {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-listing {
    padding: 48px 0;
  }

  .blog-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .blog-item {
    width: 100%;
    gap: 20px;
  }

  .blog-item.is-tall {
    gap: 20px;
  }

  .blog-item-link {
    font-size: 24px;
  }

  .blog-listing-filters-area.search-open {
    gap: 0;
  }

  .blog-listing-filters .news-filters-item {
    font-size: 12px;
    padding: 12px 0;
    width: calc(33% - 3px);
  }

  .blog-listing-filters {
    width: 75%;
    transition: width 0.3s ease, padding 0.2s ease, opacity 0.3s ease;
  }

  .search-open .blog-listing-filters {
    width: 0;
    padding: 0;
    opacity: 0;
  }

  .search-field-input {
    padding: 16px 24px;
    padding-left: 60px;
  }

  .search-field-input::placeholder {
    color: #f0f0f0;
  }

  .search-open .search-field-input::placeholder {
    color: #000;
  }

  .search-button {
    left: 0;
    width: 100%;
    height: 100%;
  }

  .search-button .close-icon {
    display: none;
  }

  .search-open .search-button {
    left: 20px;
    width: auto;
    height: auto;
  }

  .search-open .search-icon {
    display: none;
  }

  .search-open .close-icon {
    display: block;
  }
}

.blog-loadmore {
    display: flex;
    justify-content: center;
}
