.richtext-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1rem 0;
}

header {
  background-color: #fff;
}

/* margins */

.mb-40 {
  margin-bottom: 4rem;
}

.mb-60 {
  margin-bottom: 6rem;
}

.mb-80 {
  margin-bottom: 8rem;
}

.mb-120 {
  margin-bottom: 12rem;
}

.circle-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.circle-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
}

.navbar-lang-switch {
  display: flex;
}

.navbar-lang-switch:before {
  content: '';
  border-left: 1px solid #e7e9fc;
  margin-right: 0px;
  margin-left: 28px;
}

/* Backgrounds */

.bg-white {
  background-color: #ffffff;
  padding-bottom: 25px;
}
.bg-gray {
  background-color: #f6f6f6;
  padding-bottom: 25px;
}

/* gallery */
.gallery-thumbnail-wrapper {
  padding: 0.25rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgb(0, 0, 0, 0.1);
  padding: 0;
  transition: all 0.3s ease;
  transform: scale(1);
}
.gallery-thumbnail-wrapper:hover {
  transform: scale(1.03);
}

.hero-block {
  background-size: cover;
  padding: 100px 60px;
  border-radius: 15px;
  overflow: hidden;
}

/* grid cols */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media screen and (max-width: 920px) {
  div[class*='grid-cols-'] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  div[class*='grid-cols-'] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 544px) {
  div[class*='grid-cols-'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 350px) {
  div[class*='grid-cols-'] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* cookie manager */

body > #wtm_cookie_bar {
  position: fixed!important;
  top: unset!important;
  bottom: 0!important;
  border-top: 1px solid #ccc!important;
  z-index: 999999!important;
}

#cookieDeclarationTable {
  border: 1px solid #ccc;
}

#cookieDeclarationTable .cookie-group {
  font-size: 12px;
  border-top: 1px solid #ccc;
}

#cookieDeclarationTable tr th {
  padding: 0.5rem 1rem;
}

#cookieDeclarationTable tr td {
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
}