:root {
  --primary-font: "Aeonik", serif;
  --secondary-font: "Inter", sans-serif;
  --max-container: 1260px;
  --black-color: #222;
  --highlight-color: #C84F41; /* APAGAR NO FIM DO DEV */
  --secondary-color: #06291C; /* APAGAR NO FIM DO DEV */
  --third-color: #DF9C2A; /* APAGAR NO FIM DO DEV */
  --fourth-color: #EDE8D5; /* APAGAR NO FIM DO DEV */
}

* {
  -webkit-tap-highlight-color: transparent;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none !important;
}

.no-scroll {
  overflow: hidden !important;
}

/* --- TYPOGRAPHY --- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
}

.text-5xl {
  font-size: 47.78px !important;
  line-height: 1.2 !important;
}

.text-4xl {
  font-size: 39.8px !important;
  line-height: 1.2 !important;
}

.text-3xl {
  font-size: 33.2px !important;
  line-height: 1.2 !important;
}

.text-2xl {
  font-size: 27.6px !important;
  line-height: 1.2 !important;
}

.text-xl {
  font-size: 23px !important;
  line-height: 1.3 !important;
}

.text-lg {
  font-size: 19.2px !important;
  line-height: 1.3 !important;
}

.text-base {
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.text-sm {
  font-size: 13.3px !important;
  line-height: 1.3 !important;
}

.text-xs {
  font-size: 11.1px;
  line-height: 1.3;
}

.text-button {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
  .text-5xl {
    font-size: 38px !important;
  }

  .text-4xl {
    font-size: 34px !important;
  }

  .text-3xl {
    font-size: 27px !important;
  }

  .text-2xl {
    font-size: 23px !important;
  }

  .text-xl {
    font-size: 20px !important;
  }

  .text-lg {
    font-size: 18px !important;
  }

  .text-button {
    font-size: 16px;
  }
}

/* --- TAGS COMPONENT --- */

.tag-component {
  padding: 2px 8px;
  border: 1px solid var(--black-color);
  border-radius: 4px;
  font-size: 16px;
  line-height: 22px;
}

.tag-component-secondary {
  font-size: 16px;
  line-height: 22px;
}

/* --- QUICK LINK --- */

.quick-link {
  margin-bottom: 0 !important;
  display: flex;
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.quick-link.has-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.quick-link img {
  width: 100% !important;
  height: 100%;
  margin-bottom: 0 !important;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}

.quick-link h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.quick-link .arrow {
  overflow: hidden;
  width: 32px;
  height: 32px;
}

.quick-link .arrow .wrapper {
  width: 64px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-32px);
  transition: all 0.2s ease-in-out;
}

.quick-link:hover .arrow .wrapper {
  transform: translateX(0);
}

@media only screen and (max-width: 690px) {
  .quick-link {
    height: 380px;
  }
}

/* --- CONTAINER --- */

@media only screen and (min-width: 1000px) {
  .container, body[data-header-format="left-header"] .container,
  .woocommerce-tabs .full-width-content .tab-container,
  .nectar-recent-posts-slider .flickity-page-dots,
  .post-area.standard-minimal.full-width-content .post .inner-wrap,
  .material #search-outer #search {
    padding: 0;
  }
}

@media only screen and (min-width: 320px) {
  .container,
  body[data-header-format="left-header"] .container,
  .woocommerce-tabs .full-width-content .tab-container,
  .nectar-recent-posts-slider .flickity-page-dots,
  .post-area.standard-minimal.full-width-content .post .inner-wrap,
  .material #search-outer #search {
    max-width: var(--max-container) !important;
  }

  .stretch-content {
    max-width: var(--max-container) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1300px) {
  .container, body[data-header-format="left-header"] .container,
  .woocommerce-tabs .full-width-content .tab-container,
  .nectar-recent-posts-slider .flickity-page-dots,
  .post-area.standard-minimal.full-width-content .post .inner-wrap,
  .material #search-outer #search {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* --- SEARCH HEADER --- */

body.material #search-outer #search #close {
  right: 0 !important;
}

body.material #search-outer #search #search-box input[type="text"] {
  border-bottom-width: 1px;
}

body[data-header-color="custom"] #search-outer #search .span_12 span {
  font-size: 16px;
  line-height: 24px;
  opacity: 1;
  color: var(--third-color);
}

@media only screen and (max-width: 690px) {
  body.material #search-outer #search #search-box input[type="text"] {
    font-size: 22px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 1000px) {
  body.material #search-outer #search #close {
    right: 15px !important;
  }
}

/* --- BUTTONS --- */

.primary-bt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid;
  border-radius: 50px;
  width: max-content;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  transition: all 0.2s ease-in-out;
}

.primary-bt.reverse {
  flex-direction: row-reverse;
}

.primary-bt.reverse svg {
  transform: rotateZ(180deg);
}

.light-bt {
  color: var(--secondary-color);
  border-color: var(--third-color);
  background-color: var(--third-color);
}

.light-bt:hover {
  color: var(--secondary-color);
  border-color: var(--fourth-color);
  background-color: var(--fourth-color);
}

.dark-bt {
  color: var(--fourth-color);
  border-color: var(--highlight-color);
  background-color: var(--highlight-color);
}

.dark-bt:hover {
  color: var(--fourth-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.secondary-bt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid;
  width: max-content;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  padding: 4px 0px;
  transition: all 0.2s ease-in-out;
}

.secondary-bt:hover {
  gap: 15px;
  border-bottom-color: transparent;
}

.secondary-bt.light-bt {
  color: var(--fourth-color);
  border-color: var(--fourth-color);
  background-color: transparent;
}

.secondary-bt.light-bt:hover {
  color: var(--fourth-color);
  background-color: transparent;
}

.secondary-bt.dark-bt {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  background-color: transparent;
}

.secondary-bt.dark-bt:hover {
  color: var(--highlight-color);
  background-color: transparent;
  border-color: transparent;
}

@media only screen and (max-width: 768px) {
  .secondary-bt {
    font-size: 16px;
  }
}

/* --- CLOUDS --- */

.clouds {
  display: grid;
  pointer-events: none;
}

.clouds::before,
.clouds::after {
  content: '';
  grid-row: 1;
  grid-column: 1;
  width: auto;
  height: 225px;
  background-image: url('../img/divider.webp');
}

.clouds.inverted::before,
.clouds.inverted::after {
  transform: scaleY(-1);
}

.clouds::before {
  animation: x-clouds 190s linear infinite;
}

.clouds::after {
  animation: x-clouds 240s linear infinite;
}

@keyframes x-clouds {
  0% {
    background-position-x: 25%;
  }
  50% {
    background-position-x: 75%;
  }
  100% {
    background-position-x: 25%;
  }
}

/* --- SLIDER HIGHLIGHT SHORTCODE --- */

.slider-highlights {
  margin-bottom: 0 !important;
  position: relative;
}

.slider-highlights .clouds {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.slider-highlights .swiper {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
}

.slider-highlights .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 700px;
  height: 90dvh;
}

.slider-highlights .swiper-slide::before,
.slider-highlights .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.slider-highlights .swiper-slide::before {
  top: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 100%);
}

.slider-highlights .swiper-slide::after {
  bottom: 0;
  min-height: 780px;
  height: 90dvh;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0.9) 20%, rgba(34, 34, 34, 0) 100%);
}

.slider-highlights .swiper-slide img {
  display: block;
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.slider-highlights .container {
  pointer-events: none;
}

.slider-highlights .swiper-pagination {
  bottom: 0 !important;
  left: inherit !important;
  right: 0 !important;
  width: auto !important;
  text-align: right;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-highlights .swiper-pagination-bullet {
  width: 2px;
  height: 20px;
  background-color: var(--fourth-color);
  opacity: 1;
  pointer-events: all;
  border-radius: 0;
}

.slider-highlights .swiper-pagination-bullet-active {
  background-color: var(--third-color);
  opacity: 1;
}

.slider-highlights .text-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--max-container);
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 30dvh;
}

.slider-highlights .text-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  opacity: 0;
}

.slider-highlights .text-wrapper .tags span {
  border: 1px solid var(--fourth-color);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--fourth-color);
}

.slider-highlights .text-wrapper h2 {
  color: var(--third-color);
  max-width: 680px;
  margin-top: 15px;
  opacity: 0;
}

.slider-highlights .text-wrapper .desc {
  max-width: 500px;
  color: var(--fourth-color);
  margin-top: 15px;
  opacity: 0;
}

.slider-highlights .text-wrapper .desc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-highlights .text-wrapper a {
  margin-top: 35px;
  opacity: 0;
}

.slider-highlights .swiper-slide-active .text-wrapper .tags {
  animation: slider-fade-in 0.6s 0.8s ease-in-out forwards;
}

.slider-highlights .swiper-slide-active .text-wrapper h2 {
  animation: slider-transition-y 0.6s 0.6s ease-in-out forwards;
}

.slider-highlights .swiper-slide-active .text-wrapper .desc {
  animation: slider-transition-x 0.6s 0.8s ease-in-out forwards;
}

.slider-highlights .swiper-slide-active .text-wrapper a {
  animation: slider-fade-in 0.6s 1s ease-in-out forwards;
}

@media only screen and (max-width: 1299px) {
  .slider-highlights .text-wrapper,
  .slider-highlights .swiper-pagination {
    padding-inline: 20px;
  }

  .slider-highlights .swiper-pagination {
    transform: translateY(-45dvh);
  }
}

@media only screen and (max-width: 1200px) {
  .slider-highlights .swiper-slide {
    height: 680px;
  }
}

@media only screen and (max-width: 1000px) {
  .slider-highlights .text-wrapper h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .slider-highlights .text-wrapper .desc {
    max-width: 80vw;
  }
}

@media only screen and (max-width: 768px) {
  .slider-highlights .swiper-slide {
    height: 100dvh;
    min-height: 580px;
  }
}

@media only screen and (max-width: 690px) {
  .slider-highlights .swiper-pagination {
    text-align: left;
    transform: translateY(-45dvh);
  }

  .slider-highlights .text-wrapper {
    padding-bottom: 180px;
  }

  .slider-highlights .text-wrapper .tags span {
    font-size: 14px;
    line-height: 22px;
    padding: 1px 6px;
  }

  .slider-highlights .text-wrapper .desc {
    margin-top: 8px;
  }

  .slider-highlights .text-wrapper .desc p {
    font-size: 16px;
    line-height: 24px;
  }

  .slider-highlights .text-wrapper a {
    font-size: 16px;
    margin-top: 20px;
  }
}

@keyframes slider-transition-y {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slider-transition-x {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slider-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* --- FOOTER --- */

#mainFooter .footer-menu .widgettitle {
  font-family: var(--primary-font);
  font-size: 19.2px;
  font-weight: 500;
  line-height: 1.3em;
  color: var(--third-color);
}

#mainFooter .footer-menu .menu {
  margin: 13px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px 15px;
}

#mainFooter .footer-menu li {
  list-style: none;
  line-height: 1;
  margin: 0;
}

#mainFooter .footer-menu li a {
  font-size: 13.3px;
  line-height: 1.2em;
}

#mainFooter .footer-menu li a:hover {
  color: var(--highlight-color);
}

#copyFooter a {
  color: var(--third-color);
}

#copyFooter a:hover {
  color: var(--fourth-color);
}

/* --- SOCIAL NETWORKS SHORTCODE --- */

.footer-social-networks .inner {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-networks a {
  color: var(--fourth-color);
}

.footer-social-networks a:hover {
  color: var(--third-color);
}

/* --- BREADCRUMBS --- */

.custom-breadcrumbs .wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 6px;
}

.custom-breadcrumbs a,
.custom-breadcrumbs .current {
  font-size: 16px;
  line-height: 22px;
}

.custom-breadcrumbs .current {
  max-width: 250px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-breadcrumbs a:hover {
  color: var(--secondary-color);
}

.custom-breadcrumbs .current {
  font-weight: 500;
  color: var(--secondary-color);
}

.custom-breadcrumbs .paged {
  font-size: 13.2px;
  line-height: 18px;
}

@media only screen and (max-width: 768px) {
  .custom-breadcrumbs a,
  .custom-breadcrumbs .current {
    font-size: 13.2px;
    line-height: 20px;
  }
}

/* --- TEMPLATE BREADCRUMB + TITLE --- */

.template-page-breadcrumb {
  padding-top: 25px;
}

.template-page-breadcrumb h1 {
  color: var(--third-color);
  margin-bottom: 15px;
}

/* --- TEMPLATE HERO WITH BREADCRUMB --- */

.hero-block,
.template-hero-breadcrumb .hero-block {
  display: grid;
  align-items: flex-end;
}

.hero-block .subheading {
  text-transform: uppercase;
  color: var(--fourth-color);
}

.hero-block .img-holder,
.hero-block .clouds,
.hero-block .container,
.template-hero-breadcrumb .hero-block .img-holder,
.template-hero-breadcrumb .hero-block .clouds,
.template-hero-breadcrumb .hero-block .container {
  grid-column: 1;
  grid-row: 1;
}

.hero-block .img-holder,
.template-hero-breadcrumb .hero-block .img-holder {
  width: 100vw;
  overflow: hidden;
  z-index: 0;
  min-height: 280px;
  max-height: 525px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-block .img-holder::before,
.hero-block .img-holder::after,
.template-hero-breadcrumb .hero-block .img-holder::before,
.template-hero-breadcrumb .hero-block .img-holder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-block .img-holder::before,
.template-hero-breadcrumb .hero-block .img-holder::before {
  top: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 100%);
}

.hero-block .img-holder::after,
.template-hero-breadcrumb .hero-block .img-holder::after {
  bottom: 0;
  top: 0;
  background: rgba(34, 34, 34, 0.8);
}

.hero-block .img-holder img,
.hero-block .img-holder::before,
.hero-block .img-holder::after,
.template-hero-breadcrumb .hero-block .img-holder img,
.template-hero-breadcrumb .hero-block .img-holder::before,
.template-hero-breadcrumb .hero-block .img-holder::after {
  grid-column: 1;
  grid-row: 1;
}

.hero-block .img-holder img,
.template-hero-breadcrumb .hero-block .img-holder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

.hero-block .clouds,
.template-hero-breadcrumb .hero-block .clouds {
  z-index: 1;
}

.hero-block .container,
.template-hero-breadcrumb .hero-block .container {
  z-index: 2;
  bottom: 250px;
}

.hero-block h1,
.template-hero-breadcrumb .hero-block h1 {
  color: var(--third-color);
  margin-bottom: 15px;
}

.hero-block .custom-breadcrumbs .wrapper,
.hero-block .custom-breadcrumbs a,
.hero-block .custom-breadcrumbs .current,
.template-hero-breadcrumb .hero-block .custom-breadcrumbs .wrapper,
.template-hero-breadcrumb .hero-block .custom-breadcrumbs a,
.template-hero-breadcrumb .hero-block .custom-breadcrumbs .current {
  color: var(--fourth-color);
}

@media only screen and (max-width: 1000px) {
  .hero-block .container,
  .template-hero-breadcrumb .hero-block .container {
    width: 100%;
    bottom: 180px;
  }
}

@media only screen and (max-width: 690px) {
  .hero-block .clouds,
  .template-hero-breadcrumb .hero-block .clouds {
    display: none;
  }

  .hero-block .container,
  .template-hero-breadcrumb .hero-block .container {
    bottom: 45px;
  }
}

/* --- DESTINATIONS GRID --- */

.grid-destinations {
  margin-bottom: 0 !important;
}

.grid-destinations .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-destinations .subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.grid-destinations .grid-container .subgrid > .column {
  grid-column: 1;
}

.grid-destinations .grid-container .subgrid > .column:first-child {
  grid-column: 1;
}

.grid-destinations .grid-container .subgrid > .column:nth-child(2) {
  grid-column: 2;
}

.grid-destinations .grid-container .subgrid > .column:last-child {
  grid-column: 1 / span 2;
}

.grid-destinations a.card-destination {
  height: 100%;
}

@media only screen and (max-width: 1000px) {
  .grid-destinations .subgrid {
    grid-template-columns: 1fr;
  }

  .grid-destinations .grid-container .subgrid > .column:first-child,
  .grid-destinations .grid-container .subgrid > .column:nth-child(2),
  .grid-destinations .grid-container .subgrid > .column:last-child {
    grid-column: auto;
  }
}

@media only screen and (max-width: 690px) {
  .grid-destinations .grid-container {
    grid-template-columns: 1fr;
  }
}

/* --- DESTINATIONS CARD --- */

a.card-destination {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 380px;
  color: var(--fourth-color);
}

.card-destination .wrapper {
  display: grid;
  grid-template: 1fr;
  position: relative;
  align-items: flex-end;
  height: 100%;
}

.card-destination .wrapper .img-holder,
.card-destination .wrapper .text-wrapper,
.card-destination .wrapper .img-holder img,
.card-destination .wrapper .img-holder::after {
  grid-column: 1;
  grid-row: 1;
}

.card-destination .wrapper .img-holder {
  display: grid;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
  position: relative;
}

.card-destination .wrapper .img-holder::after {
  content: "";
  background: rgba(34, 34, 34, 0.7);
  background: linear-gradient(0deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0) 100%);
  display: block;
  z-index: 2;
}

.card-destination .wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin-bottom: 0;
  transform-origin: center;
  transition: transform 0.2s ease-in-out;
}

.card-destination .icon-wrapper {
  position: absolute;
  top: 30px;
  left: 25px;
  z-index: 15;
  pointer-events: none;
}

.card-destination .text-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  padding: 35px 30px;
  z-index: 2;
  color: var(--fourth-color);
}

.card-destination .text-wrapper h4,
.card-destination .text-wrapper h6 {
  color: var(--fourth-color);
  margin: 0;
}

.card-destination .text-wrapper h6 {
  text-transform: uppercase;
}

a.card-destination:hover .wrapper img {
  transform: scale(1.1);
}

/* --- CAROUSEL NEWS --- */

.carousel-news {
  margin-bottom: 0 !important;
}

.carousel-news > .wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.carousel-news .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-news .container::before,
.carousel-news .container::after {
  display: none;
}

.carousel-news .container h2 {
  color: var(--black-color);
}

.carousel-news .navigation {
  display: flex;
  column-gap: 20px;
}

.carousel-news .navigation > div {
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
}

.carousel-news .navigation > div:hover {
  cursor: pointer;
  color: var(--highlight-color);
}

.carousel-news .navigation svg {
  width: 40px;
  height: 40px;
  line-height: 0;
}

.carousel-news .swiper {
  padding: 20px 0px;
  width: 100%;
  height: 100%;
}

.carousel-news .swiper-slide {
  width: 100% !important;
  max-width: calc(calc(var(--max-container) / 3) - 13.333px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: auto !important;
}

.carousel-news .swiper-slide .card-new {
  height: 100%;
}

@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .carousel-news .container {
    max-width: calc(100vw - 40px) !important;
  }
}

@media only screen and (max-width: 480px) {
  .carousel-news .swiper-slide {
    max-width: calc(100vw - 40px);
  }
}

/* --- CARD NEW --- */

.card-new {
  width: 100%;
  display: block;
  background-color: #fff;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 3px 1px rgba(34,34,34,0.15);
  -webkit-box-shadow: 0 0 3px 1px rgba(34,34,34,0.15);
  -moz-box-shadow: 0 0 3px 1px rgba(34,34,34,0.15);
}

.card-new .img-holder {
  overflow: hidden;
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-items: center;
}

.card-new .img-holder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin-bottom: 0;
  transition: transform 0.2s ease-in-out;
}

.card-new:hover .img-holder img {
  transform: scale(1.1);
}

.card-new .text-wrapper {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.card-new .text-wrapper .date {
  color: var(--highlight-color);
}

.card-new .text-wrapper h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--black-color);
  transition: color 0.2s ease-in-out;
}

.card-new:hover .text-wrapper h4 {
  color: var(--highlight-color);
}

.card-new .text-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-new .text-wrapper .tags span {
  display: inline-block;
  color: var(--third-color);
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

/* --- RELATED NEWS CARD --- */

.card-related-new {
  width: 100%;
  display: block;
}

.card-related-new > .wrapper {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.card-related-new .img-holder {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
}

.card-related-new .img-holder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin-bottom: 0;
}

.card-related-new .text-wrapper {
  flex: 1;
}

.card-related-new .text-wrapper h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  margin-bottom: 0;
  transition: color 0.2s ease-in-out;
}

.card-related-new .date,
.card-related-new:hover h4 {
  color: var(--highlight-color);
}

/* --- CAROUSEL GALLERY --- */

.carousel-gallery {
  margin-bottom: 0 !important;
}

.carousel-gallery > .wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.carousel-gallery .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-gallery .container::before,
.carousel-gallery .container::after {
  display: none;
}

.carousel-gallery .container h2 {
  color: var(--fourth-color);
}

.carousel-gallery .navigation {
  display: flex;
  column-gap: 20px;
}

.carousel-gallery .navigation > div {
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
  color: var(--fourth-color);
}

.carousel-gallery .navigation > div:hover {
  cursor: pointer;
  color: var(--highlight-color);
}

.carousel-gallery .navigation svg {
  width: 40px;
  height: 40px;
  line-height: 0;
}

.carousel-gallery .swiper {
  padding: 20px 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.carousel-gallery .swiper-slide {
  width: 100% !important;
  max-width: calc(calc(var(--max-container) / 2) - 10px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: auto !important;
}

.carousel-gallery .card-gallery {
  width: 100%;
  height: 100%;
  max-height: 450px;
}

@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .carousel-gallery .container {
    max-width: calc(100vw - 40px) !important;
  }
}

@media only screen and (max-width: 480px) {
  .carousel-gallery .swiper-slide {
    max-width: calc(100vw - 40px);
  }
}

/* --- GALLERY CARD --- */

.card-gallery {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.card-gallery .img-holder {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
}

.card-gallery .img-holder .text-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
  padding: 30px;
}

.card-gallery .text-wrapper h4 {
  color: var(--fourth-color);
}

.card-gallery .text-wrapper span {
  color: var(--highlight-color);
  text-transform: uppercase;
}

.card-gallery .img-holder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  transform-origin: center;
}

.card-gallery:hover .img-holder img {
  transform: scale(1.1);
}

.card-gallery .img-holder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
  background: linear-gradient(0deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0) 100%);
  display: block;
  z-index: 2;
}

.card-gallery .img-holder img {
  margin-bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.card-gallery .icon {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--fourth-color);
}

/* --- ARCHIVE NOT FOUND --- */

.archive-not-found {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.archive-not-found h3 {
  color: var(--third-color);
}

/* --- ARCHIVE FILTERS --- */

.archive-filters .filters-wrapper {
  overflow: hidden;
}

.archive-filters .filters-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.archive-filters .filter-item {
  color: var(--black-color);
  white-space: nowrap;
}

.archive-filters.tag .filter-item {
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  line-height: 0;
}

.archive-filters .filter-item.current,
.archive-filters .filter-item:hover {
  color: var(--highlight-color);
}

@media only screen and (max-width: 1000px) {
  .archive-filters .filters-wrapper {
    margin-inline: -20px;
  }

  .archive-filters .filters-stack {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px 20px;
    padding: 8px 20px;
  }

  .archive-filters .filters-stack::-webkit-scrollbar {
    display: none;
  }
}

/* --- ARCHIVE NAVIGATION --- */

.archive-navigation,
.archive-navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.archive-navigation .page-numbers {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--black-color);
}

.archive-navigation a.page-numbers:hover,
.archive-navigation .page-numbers.current {
  color: var(--highlight-color);
}

.archive-navigation .prev,
.archive-navigation .next {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  height: 24px;
}

/* --- SINGLE POST NAVIGATION --- */

.navigation-single-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  padding: 12px 0;
  border-top: 1px solid var(--third-color);
}

.navigation-single-post .prev,
.navigation-single-post .next {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: var(--black-color);
}

.navigation-single-post .prev:hover,
.navigation-single-post .next:hover {
  color: var(--highlight-color);
}

.navigation-single-post .prev {
  grid-column: 1;
}

.navigation-single-post .next {
  justify-content: flex-end;
  grid-column: 2;
}

.navigation-single-post .icon {
  line-height: 0;
}

.navigation-single-post .text {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.navigation-single-post .text span:first-child {
  color: var(--highlight-color);
  font-weight: 500;
}

.navigation-single-post .text span:last-child {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navigation-single-post .next .text {
  align-items: flex-end;
}

@media only screen and (max-width: 690px) {
  .navigation-single-post .text span:last-child {
    display: none;
  }
}

/* --- ARCHIVE PAGE --- */

.archive-page .wrapper > .container {
  padding-top: 65px;
  padding-bottom: 250px;
}

.archive-page .wrapper > .container h1 {
  color: var(--third-color);
  margin-bottom: 15px;
}

.archive-page .archive-filters {
  margin-top: 15px;
}

.archive-page .archive-filters:first-of-type {
  margin-top: 45px;
}

.archive-page .posts-grid {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.archive-page .posts-grid .card-new {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

.archive-page .posts-grid .archive-navigation {
  width: 100%;
  margin-top: 45px;
}

@media only screen and (max-width: 1000px) {
  .archive-page .posts-grid .card-new {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .archive-page .wrapper > .container {
    padding-top: 45px;
  }

  .archive-page .archive-filters,
  .archive-page .posts-grid {
    margin-top: 25px;
  }

  .archive-page .posts-grid .card-new .img-holder {
    height: 180px;
  }
}

@media only screen and (max-width: 690px) {
  .archive-page .posts-grid .card-new {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .archive-page .posts-grid .card-new .img-holder {
    height: 260px;
  }
}

@media only screen and (max-width: 480px) {
  .archive-page .posts-grid .card-new .img-holder {
    height: 200px;
  }
}

/* --- SINGLE POST --- */

.single-post > .container {
  padding-top: 65px;
}

.single-post:not(.have-other-posts) > .container {
  padding-bottom: 250px;
}

.single-post .single-content {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
}

.single-post .single-content h1 {
  color: var(--black-color);
}

.single-post .country {
  color: var(--third-color);
}

.single-post .single-content article {
  flex: 1 1 calc(66.666% - 30px);
  max-width: calc(66.666% - 30px);
}

.single-post .single-content aside.sidebar {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}

.single-post .single-content article .date {
  margin-top: 25px;
  color: var(--third-color);
  font-weight: 500;
  padding-bottom: 0;
}

.single-post .single-content article .slider-images-post {
  margin-top: 30px;
}

.single-post .single-content article .feature-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 30px;
  line-height: 0;
}

.single-post .single-content article .feature-image img {
  width: 100%;
  margin-bottom: 0 !important;
}

.single-post .single-content article .wpb_content_element {
  margin-top: 30px;
}

.single-post .single-content article .categories-wrapper {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.single-post .single-content article .categories-wrapper a {
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.single-post .single-content article .categories-wrapper a:hover {
  color: var(--black-color);
  border-color: var(--black-color);
}

.single-post .single-content article .tags-wrapper {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.single-post .single-content article .tags-wrapper a {
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.single-post .single-content article .tags-wrapper a:hover {
  color: var(--black-color);
  border-color: var(--black-color);
}

.single-post .single-content article .share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.single-post .single-content article .share a {
  line-height: 0;
  color: var(--black-color);
}

.single-post .single-content article .share a:hover {
  color: var(--highlight-color);
}

.single-post .single-content article .map-wrapper,
.single-post .single-content article .navigation-single-post {
  margin-top: 45px;
}

.single-post .single-content article .map-wrapper h3 {
  margin-bottom: 25px;
}

.single-post .sidebar {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.single-post .sidebar .lastest-news > h4,
.single-post .sidebar .related-news > h4 {
  color: var(--third-color);
}

.single-post .sidebar .lastest-news > .wrapper,
.single-post .sidebar .related-news > .wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-post .other-posts {
  margin-top: 65px;
  background-color: var(--third-color);
  padding-top: 85px;
  padding-bottom: 300px;
}

.single-post .other-posts h3 {
  color: var(--fourth-color);
}

.single-post .other-posts .post-grid {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.single-post .other-posts .post-grid .card-new {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

@media only screen and (max-width: 1000px) {
  .single-post .single-content article,
  .single-post .single-content aside.sidebar {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .single-post .sidebar .lastest-news > .wrapper,
  .single-post .sidebar .related-news > .wrapper {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .single-post .other-posts .post-grid .card-new {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .single-post > .container {
    padding-top: 45px;
  }

  .single-post:not(.have-other-posts) > .container {
    padding-bottom: 200px;
  }

  .single-post .other-posts .post-grid .card-new .img-holder {
    height: 180px;
  }
}

@media only screen and (max-width: 690px) {
  .single-post .other-posts .post-grid .card-new {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .single-post .other-posts {
    padding-top: 65px;
    padding-bottom: 200px;
  }

  .single-post .other-posts .post-grid .card-new .img-holder {
    height: 260px;
  }
}

@media only screen and (max-width: 480px) {
  .single-post .single-content article .share span {
    display: block;
    width: 100%;
  }

  .single-post .other-posts .post-grid .card-new .img-holder {
    height: 200px;
  }
}

/* --- SLIDER IMAGES POST --- */

.slider-images-post .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.slider-images-post .swiper-slide {
  height: 480px;
}

.slider-images-post .img-holder {
  width: 100% !important;
}

.slider-images-post .img-holder img {
    width: 100% !important;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
    object-position: center;
}

.slider-images-post .navigation {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9;
  display: flex;
  gap: 10px;
}

.slider-images-post .navigation .prev,
.slider-images-post .navigation .next {
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 35px;
  transition: background-color 0.2s ease-in-out;
}

.slider-images-post .navigation .prev:hover,
.slider-images-post .navigation .next:hover {
  color: var(--fourth-color);
  background-color: var(--highlight-color);
  cursor: pointer;
}

.glightbox-clean .gdesc-inner {
  padding: 25px 30px !important;
}

.glightbox-clean .gslide-description .gslide-title {
  font-size: 23px !important;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.glightbox-clean .gslide-description .gslide-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px !important;
}

@media only screen and (min-width: 769px) {
  .glightbox-container .ginner-container.desc-bottom {
    display: grid;
    align-items: flex-end;
    justify-content: center;
  }

  .desc-bottom .gslide-media {
    display: grid;
  }

  .desc-bottom .gslide-media::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
  }

  .desc-bottom .gslide-media img,
  .desc-bottom .gslide-media::after,
  .glightbox-clean .gslide-description,
  .glightbox-clean .gslide-media {
    grid-column: 1;
    grid-row: 1;
  }

  .glightbox-clean .gslide-description {
    background-color: transparent !important;
    z-index: 2;
  }
}


@media only screen and (max-width: 690px) {
  .slider-images-post .swiper-slide {
    height: 380px;
  }
}

@media only screen and (max-width: 480px) {
  .slider-images-post .swiper-slide {
    height: 320px;
  }
}

/* --- BLOCK CONTACTS --- */

.block-contacts {
  padding: 35px;
  background-color: var(--highlight-color);
  border-radius: 12px;
}

.block-contacts h5 {
  margin-bottom: 35px;
  color: var(--fourth-color);
}

.block-contacts ul.list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.block-contacts ul.list > li {
  list-style: none;
  display: flex;
  column-gap: 12px;
  align-items: center;
}

.block-contacts .icon {
  line-height: 0;
  color: var(--fourth-color);
}

.block-contacts .text {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.block-contacts .text span:first-child {
  color: var(--third-color);
  font-weight: 500;
}

.block-contacts .text span:last-child,
.block-contacts .text span:last-child a {
  color: var(--fourth-color);
}

.block-contacts .text span:last-child a:hover {
  color: var(--black-color);
}

/* --- BLOCK MAP --- */

.block-map .wrapper {
  margin: 0;
  padding: 0;
  min-height: 380px;
  border-radius: 12px;
}

/* --- INFOWINDOW MAP --- */

.infowindow-map {
  width: 300px;
  padding: 15px 50px 15px 15px;
  background-color: #fff;
}

.infowindow-map h6 {
  font-size: 18px;
  line-height: 1.3em;
  color: var(--third-color);
  margin-bottom: 0;
}

.infowindow-map p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  padding: 0;
}

.infowindow-map a {
  width: max-content;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 0;
  color: var(--black-color) !important;
  transition: all 0.2s ease-in-out;
}

.infowindow-map a:hover {
  gap: 12px;
  color: var(--highlight-color) !important;
}

.infowindow-map a svg {
  width: 18px;
  height: 18px;
}

/* --- SINGLE DESTINAITON --- */

.single-destination {
  background-color: #fff;
}

.single-destination section:not(.no-padding) {
  padding-block: 65px 85px;
}

.single-destination section:nth-child(4) {
  background-color: var(--black-color);
}

.single-destination section:nth-child(4) h2 {
  color: var(--fourth-color) !important;
}

.single-destination section:nth-child(6) {
  background-color: var(--third-color);
}

.single-destination section.single-content {
  padding-bottom: 45px;
}

.single-destination section:last-child {
  padding-bottom: 280px;
  background-color: var(--highlight-color);
}

.single-destination section .container > h2,
.single-destination section .container > h2 {
  color: var(--black-color);
  margin-bottom: 35px;
}

.single-destination .wpb_content_element {
  max-width: 1024px;
  margin-bottom: 0;
}

.single-destination .single-gallery .swiper-slide {
  height: 620px;
}

.single-destination .block-map .wrapper {
  height: 40vw;
  min-height: 480px;
}

.single-destination .other-posts {
  background-color: #C84F41;
}

.single-destination .post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.single-destination .other-posts .post-grid .card-destination {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

.single-destination .other-posts h3 {
  margin-bottom: 35px;
  color: var(--fourth-color);
}

/* --- BLOCK DESTINATION INTERST --- */

.block-destination-interest .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-destination-interest .container::before,
.block-destination-interest .container::after {
  display: none;
}

.block-destination-interest .navigation {
  display: flex;
  column-gap: 20px;
}

.block-destination-interest .navigation > div {
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
}

.block-destination-interest .navigation > div:hover {
  cursor: pointer;
  color: var(--highlight-color);
}

.block-destination-interest .navigation svg {
  width: 40px;
  height: 40px;
  line-height: 0;
}

.block-destination-interest .swiper {
  padding: 20px 0px;
  width: 100%;
  height: 100%;
}

.block-destination-interest .swiper-slide {
  width: 100% !important;
  max-width: calc(calc(var(--max-container) / 3) - 13.333px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: auto !important;
}

.block-destination-interest .card-new {
  height: 100%;
}

@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .block-destination-interest .container {
    max-width: calc(100vw - 40px) !important;
  }
}

@media only screen and (max-width: 480px) {
  .block-destination-interest .swiper-slide {
    max-width: calc(100vw - 40px);
  }
}

/* --- GALLERY MANSORY --- */

.gallery-mansory {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 20px;
  gap: 20px;
}

.gallery-mansory .item {
  overflow: hidden;
  border-radius: 8px;
  break-inside: avoid;
}

.gallery-mansory > .item {
  grid-row-end: span var(--row-span);
}

.gallery-mansory .item a {
  display: block;
  height: 100%;
}

/* --- GRID PARTNERS --- */

.grid-partners .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-partners .wrapper .card-partner {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

@media only screen and (max-width: 1000px) {
  .grid-partners .wrapper .card-partner {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- CARD PARTNER --- */

.card-partner {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  padding: 45px;
  border-radius: 18px;
  background-color: #fff;
}

.card-partner .img-holder {
  width: 100%;
  height: 320px;
  border: 1px solid var(--fourth-color);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-partner .text-wrapper {
  flex: 1;
}

.card-partner .text-wrapper > span {
  color: var(--highlight-color);
  text-transform: uppercase;
}

.card-partner .text-wrapper .desc {
  margin-top: 25px;
}

.card-partner .text-wrapper ul.info {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.card-partner .text-wrapper ul.info li {
  list-style: none;
  display: flex;
  gap: 10px;
}

.card-partner .text-wrapper ul.info li svg {
  color: var(--highlight-color);
  width: 20px;
  height: 20px;
  display: inline-block;
}

.card-partner .text-wrapper ul.info li > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-partner .text-wrapper ul.info li > div > span {
  color: var(--highlight-color);
}

.card-partner .text-wrapper ul.info li > div a {
  color: var(--black-color);
  display: inline-block;
  width: max-content;
}

.card-partner .text-wrapper ul.info li > div a:hover {
  color: var(--third-color);
}

@media only screen and (max-width: 1000px) {
  .card-partner {
    flex-direction: column-reverse;
  }

  .card-partner .img-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 690px) {
  .card-partner {
    padding: 25px;
  }
}

/* --- GRID OTHER PARTNER --- */

.grid-other-partners > .archive-filters {
  margin-bottom: 35px;
}

.grid-other-partners > .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-other-partners > .wrapper .card-other-partner {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

@media only screen and (max-width: 1000px) {
  .grid-other-partners > .wrapper .card-other-partner {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 690px) {
  .grid-other-partners > .wrapper .card-other-partner {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- CARD OTHER PARTNER --- */

.card-other-partner .wrapper {
  padding: 30px;
  border-radius: 18px;
  background-color: #fff;
  position: relative;
  height: 100%;
}

.card-other-partner .wrapper > svg {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 35px;
  height: 35px;
  color: var(--highlight-color);
  pointer-events: none;
}

.card-other-partner .country {
  text-transform: uppercase;
  color: var(--highlight-color);
}

.card-other-partner h4 {
  margin-bottom: 0 !important;
}

.card-other-partner .wrapper > ul {
  margin: 25px 0 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.card-other-partner .wrapper > ul li {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.card-other-partner .wrapper > ul li svg {
  width: 20px;
  height: 20px;
  color: var(--third-color);
}

.card-other-partner .wrapper > ul li a {
  color: var(--black-color);
}

.card-other-partner .wrapper > ul li a:hover {
  color: var(--highlight-color);
}

/* --- FORM STYLING --- */

.contact-form .message-container {
  padding: 25px;
  background-color: var(--third-color);
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--black-color);
}

.contact-form .message-container p {
  margin: 0;
  padding: 0;
}

.contact-form form button.btn-primary {
	width: max-content;
	border-radius: 50px !important;
  background-color: var(--highlight-color) !important;
  text-transform: uppercase;
  font-weight: 700;
}

body .contact-form .wrapper form button.btn-primary:hover {
	transform: translateY(0) !important;
	box-shadow: none !important;
	background-color: var(--black-color) !important;
}

.contact-form form button.btn-primary:disabled:hover {
	cursor: not-allowed;
}

.contact-form form button.btn-primary:disabled {
	opacity: 0.8;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px 20px;
}

.form-container .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.form-container .form-row .form-control,
.form-container .form-row .form-control-checkbox {
  flex: 1 1 250px;
}

.form-container .form-row:last-child {
  margin-top: 25px;
}

.form-control textarea {
  min-height: 120px;
}

.form-control label {
  display: block;
  margin-bottom: 4px;
}

.form-control textarea.error,
.form-control input.error {
	border-color: var(--highlight-color) !important;
}

.form-control:has(input.error) label,
.form-control:has(textarea.error) label {
	color: var(--highlight-color) !important;
}

.form-control span.error {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: var(--highlight-color);
  margin-top: 4px;
}

.form-control-checkbox {
	line-height: 0;
}

.form-control-checkbox label {
	display: inline-flex !important;
	gap: .75em;
}

.form-control-checkbox input {
	appearance: none;
	background-color: #fff;
	border: 1px solid var(--black-color);
	border-radius: 4px;
	font-size: 1em;
	line-height: 1.5em;
	min-height: 1.5em;
	min-width: 1.5em;
	overflow: hidden;
	position: static;
	vertical-align: middle;
	text-align: center;
	width: 1.5em;
	height: 1.5em;
	color: var(--highlight-color);
	margin-right: 0 !important;
	display: inline-block !important;
	margin: 0 !important;
}

.form-control-checkbox input:focus {
	border-color: var(--highlight-color);
}

.form-control-checkbox input:hover,
.form-control-checkbox label:hover {
	cursor: pointer;
}

.form-control-checkbox label span {
	font-size: 16px;
	line-height: 26px;
	color: var(--black-color);
}

.form-control-checkbox input:checked::before {
	content: url("data:image/svg+xml,%3Csvg width='17' height='17' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='%23C84F41'/%3E%3C/svg%3E");
}

.form-control-checkbox input.error:not(:checked) {
  border-color: var(--highlight-color);
	outline: none !important;
}

.form-control-checkbox:has(input.error:not(:checked)) span {
	color: var(--highlight-color);
}

/* --- BLOCK OVERLAY --- */

.contact-form .block-overlay {
  position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	opacity: 0.6;
	cursor: default;
	padding: 0;
	margin: 0;
	z-index: 1000;
}

.contact-form .block-overlay::before {
  content: "";
	height: 36px;
	width: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -.5em;
	margin-left: -.5em;
	z-index: 1001;
	line-height: 1;
	text-align: center;
	font-size: 2em;
	animation: spin 1s ease-in-out infinite;
	background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_aj0A%7Btransform-origin:center;animation:spinner_KYSC .75s infinite linear%7D@keyframes spinner_KYSC%7B100%25%7Btransform:rotate(360deg)%7D%7D%3C/style%3E%3Cpath d='M12,4a8,8,0,0,1,7.89,6.7A1.53,1.53,0,0,0,21.38,12h0a1.5,1.5,0,0,0,1.48-1.75,11,11,0,0,0-21.72,0A1.5,1.5,0,0,0,2.62,12h0a1.53,1.53,0,0,0,1.49-1.3A8,8,0,0,1,12,4Z' class='spinner_aj0A' fill='%23C84F41'/%3E%3C/svg%3E");
}

/* --- SEARCH PAGE --- */

.search-page > .container {
  padding-top: 65px;
  padding-bottom: 350px;
}

.search-page > .container h1 {
  margin-bottom: 16px;
}

.search-page .result-num {
  padding-bottom: 0;
}

.search-page .results-wrapper {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.search-page .results-wrapper .card-search {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

.search-page .archive-navigation {
  flex: 1 1 100%;
  max-width: 100%;
  margin-top: 25px;
}

.search-page .no-found {
  width: 100%;
}

.search-page .no-found h3 {
  color: var(--third-color);
}

.search-page .no-found form {
  position: relative;
}

.search-page .no-found form input {
  padding-right: 40px;
  padding: 10px 12px;
  font-size: 16px;
  background: transparent;
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.search-page .no-found form input:focus {
  border-color: var(--highlight-color);
  box-shadow: none;
}

body.search-no-results .search-page .no-found form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px !important;
}

@media only screen and (max-width: 1000px) {
  .search-page .results-wrapper .card-search {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 768px) {
  .search-page > .container {
    padding-top: 45px;
    padding-bottom: 220px;
  }

  .search-page .results-wrapper .card-search {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- CARD SEARCH --- */

.card-search {
  padding: 30px;
  border-radius: 18px;
  background-color: #fff;
  min-height: 280px;
}

.card-search:hover {
  color: var(--third-color);
}

.card-search .text-wrapper {
  transition: margin-top 0.2s ease-in-out;
}

.card-search:hover .text-wrapper {
  margin-top: 10px;
}

.card-search .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  row-gap: 25px;
}

.card-search h3 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-search span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
}

.card-search .icon {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

.card-search .icon svg {
  line-height: 0;
  width: 35px;
  height: 35px;
  color: var(--highlight-color);
}

@media only screen and (max-width: 690px) {
  .card-search {
    min-height: 280px;
  }
}

/* --- GOOGLE TRANSLATOR SWITCHER --- */

.google-switcher {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease-in-out;
}

.google-switcher .gt_switcher {
  width: max-content !important;
  position: relative !important;
  overflow: visible !important;
}

.google-switcher .gt_selected {
  background: transparent !important;
}

.google-switcher .gt_selected a {
  width: max-content !important;
  border: none !important;
  display: flex !important;
  column-gap: 6px !important;
}

.google-switcher .gt_selected a:hover {
  background: transparent !important;
}

.google-switcher .gt_selected a img {
  opacity: 1 !important;
}

.google-switcher .gt_selected a::after {
  right: auto !important;
  position: relative !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23EDE8D5'/></svg>") !important;
}

.google-switcher .gt_option {
  width: max-content !important;
  height: max-content !important;
  max-height: max-content !important;
  position: absolute !important;
  top: 53px;
  background-color: var(--highlight-color) !important;
  border: none !important;
  padding: 8px 6px;
  border-radius: 6px;
}

.google-switcher .gt_option a {
  margin-bottom: 8px;
  border-radius: 4px !important;
}

.google-switcher .gt_option a:hover {
  background-color: var(--fourth-color) !important;
}

@media only screen and (max-width: 1000px) {
  .google-switcher .gt_option {
    top: 39px;
  }
}
