/*--------------------------------------------------------------
# Definitions
--------------------------------------------------------------*/
:root {
  --xxl: 1600px;
  --xl: 1440px;
  --lg: 1280px;
  --md: 920px;
  --sm: 768px;
  --xs: 584px;
  --xxs: 400px;
  /** Font Family **/
  --font-heading: "Walsheim", sans-serif;
  --font-body: "GT Sectra", sans-serif;
  --margin-side: 90px;
  --margin-bottom: 30px;
  --gap: 32px;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --shadow: 10px 10px 12px 0px rgba(0, 0, 0, 0.1);
  --shadow-dark: 10px 10px 12px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1600px) {
  :root {
    --margin-side: 90px;
  }
}
@media (max-width: 1600px) {
  :root {
    --margin-side: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  :root {
    --margin-side: 60px;
  }
}
@media only screen and (max-width: 920px) {
  :root {
    --margin-side: 30px;
    --margin-bottom: 20px;
  }
}

a, p {
  color: var(--brown);
  font-size: 1rem;
}

@font-face {
  font-family: "GT Sectra";
  src: url("./fonts/GT-Sectra-Regular.woff2") format("woff2"), url("./fonts/GT-Sectra-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Sectra";
  src: url("./fonts/GT-Sectra-Regular-Italic.woff2") format("woff2"), url("./fonts/GT-Sectra-Regular-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Walsheim";
  src: url("./fonts/GT-Walsheim-Regular.woff2") format("woff2"), url("./fonts/GT-Walsheim-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Walsheim";
  src: url("./fonts/GT-Walsheim-Regular-Oblique.woff2") format("woff2"), url("./fonts/GT-Walsheim-Regular-Oblique.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Walsheim";
  src: url("./fonts/GT-Walsheim-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

p, a {
  font-size: 1.5rem;
  line-height: 1.25;
}

h1 {
  font-size: 4.25rem;
  line-height: 1;
}

h2 {
  font-size: 2.1875rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1rem;
}

button:focus {
  outline: none;
}

button {
  border: none;
  width: auto;
  height: auto;
  cursor: pointer;
  font-family: var(--font-heading);
}

:root {
  --color-2: #efecd7;
  --color-3: #ffbe00;
  --color-4: #ff7e00;
  --color-5: #f90001;
  --color-6: #db2c8d;
  --color-7: #752c8d;
  --color-8: #0411b0;
  --color-9: #45bce2;
  --color-10: #29a13b;
  --color-11: #a0003d;
  --color-12: #351312;
  --background: #F8F7F4;
  --zam: #00BAFF;
  --brown: #351312;
  --text: #EFECD7;
}

.disable-2 .article {
  --color-2: transparent;
}

.disable-3 .article {
  --color-3: transparent;
}

.disable-4 .article {
  --color-4: transparent;
}

.disable-5 .article {
  --color-5: transparent;
}

.disable-6 .article {
  --color-6: transparent;
}

.disable-7 .article {
  --color-7: transparent;
}

.disable-8 .article {
  --color-8: transparent;
}

.disable-9 .article {
  --color-9: transparent;
}

.disable-10 .article {
  --color-10: transparent;
}

.disable-11 .article {
  --color-11: transparent;
}

.disable-12 .article {
  --color-12: transparent;
}

.category-1 {
  fill: var(--color-1);
}

.category-2 {
  fill: var(--color-2);
}

.category-3 {
  fill: var(--color-3);
}

.category-4 {
  fill: var(--color-4);
}

.category-5 {
  fill: var(--color-5);
}

.category-6 {
  fill: var(--color-6);
}

.category-7 {
  fill: var(--color-7);
}

.category-8 {
  fill: var(--color-8);
}

.category-9 {
  fill: var(--color-9);
}

.category-10 {
  fill: var(--color-10);
}

.category-11 {
  fill: var(--color-11);
}

.category-12 {
  fill: var(--color-12);
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
.swiper-button-prev img {
  transform: scaleX(-1);
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
}

html,
body {
  color: var(--brown);
  background: var(--background);
  font-family: var(--font-body);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  word-break: break-word;
  -webkit-word-break: break-word;
  scroll-behavior: smooth;
  position: relative;
}

@view-transition {
  navigation: auto;
}
html {
  overscroll-behavior: none;
}

@media (min-width: 1600px) {
  html, body {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  html, body {
    font-size: 12px;
  }
}
.container.error-404.not-found {
  padding: var(--margin-side);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile {
  display: none;
}
@media only screen and (max-width: 920px) {
  .mobile {
    display: flex;
  }
}

.desktop {
  display: flex;
}
@media only screen and (max-width: 920px) {
  .desktop {
    display: none;
  }
}

.filters-active .placeholder {
  display: none !important;
}

span.color-category {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.article, .article-item {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.article svg, .article-item svg {
  max-width: 5vw;
}
@media only screen and (max-width: 920px) {
  .article svg, .article-item svg {
    max-width: 25vw;
    width: 25vw;
  }
}
.article .article-item, .article-item .article-item {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

div#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
}

/* smaller fontsizes for inbetween resolutions */
/* prevent dissapearing svg borders */
svg {
  overflow: visible;
}

/* overwrite ugly defaults for ul, li, a, button */
p {
  margin: 0;
}

a {
  text-decoration: none;
  margin: 0;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style-position: inside;
}

[data-in-view] p,
[data-in-view] h1,
[data-in-view] h2,
[data-in-view] h3,
[data-in-view] h4,
[data-in-view] h5,
[data-in-view] h6,
[data-in-view] img,
[data-in-view] div {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: opacity 1.5s var(--ease-out-expo), transform 2.5s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), text-decoration-color 0.4s var(--ease-out-expo);
}
[data-in-view].in-view p,
[data-in-view].in-view h1,
[data-in-view].in-view h2,
[data-in-view].in-view h3,
[data-in-view].in-view h4,
[data-in-view].in-view h5,
[data-in-view].in-view h6,
[data-in-view].in-view img,
[data-in-view].in-view div {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

header {
  background-color: var(--brown);
  padding: 35px var(--margin-side);
}
@media only screen and (max-width: 920px) {
  header {
    display: flex;
    justify-content: end;
  }
}
header .menu ul {
  display: flex;
  gap: var(--margin-side);
}
@media only screen and (max-width: 920px) {
  header .menu ul {
    flex-direction: column;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
}
header .menu ul li {
  list-style: none;
}
header .menu ul li.current-menu-item a {
  border-bottom: solid 1.5px;
}
header .menu ul li a {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.5625rem;
  text-transform: lowercase;
  line-height: 1;
}
header .menu ul li a:hover {
  border-bottom: solid 1.5px;
}
@media only screen and (max-width: 920px) {
  header .menu ul li a {
    font-size: 2rem;
  }
}
header .skip-to-content-link {
  position: absolute;
  top: 1rem;
  left: -9999rem;
}
header .skip-to-content-link:focus {
  left: 1rem;
}
header [data-hamburger] {
  display: none;
  background: none;
}
@media only screen and (max-width: 920px) {
  header [data-hamburger] {
    display: block;
    z-index: 10000;
  }
}
header nav.menu {
  width: 100%;
}
header .nav-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 920px) {
  header .nav-wrapper {
    transform: translateY(-150%);
    overflow: scroll;
    background-color: var(--brown);
    padding: 40px var(--margin-side);
    top: 55px;
    right: 0;
    left: 0;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    z-index: 1000;
    width: 100vw;
    height: calc(100dvh - 55px);
  }
  header .nav-wrapper.nav-transition {
    transition: transform 0.5s ease-in;
  }
  header .nav-wrapper.visible {
    transform: translateY(0px);
  }
}

footer {
  padding: 35px var(--margin-side);
  font-family: var(--font-heading);
}
footer p {
  font-family: var(--font-heading);
  font-size: 1rem;
}
footer .my-tapestry {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 0;
  padding: 35px;
  padding-right: 105px;
  transition: 0.2s ease;
}
@media (max-width: 1280px) {
  footer .my-tapestry {
    padding: 20px;
    padding-right: 85px;
  }
}
@media (max-width: 920px) {
  footer .my-tapestry {
    bottom: var(--margin-side);
    right: var(--margin-side);
    padding-right: 70px;
  }
}
footer .my-tapestry.active {
  min-width: calc(15vw + 70px);
  min-height: 15vw;
  background: var(--brown);
  transition: 0.2s ease-out;
  z-index: 1;
}
@media (max-width: 1280px) {
  footer .my-tapestry.active {
    min-width: calc(15vw + 40px);
  }
}
@media (max-width: 920px) {
  footer .my-tapestry.active {
    min-width: calc(100vw - var(--margin-side) * 2);
    min-height: 30vh;
    max-width: calc(100vw - 60px);
    width: 100%;
  }
}
footer .my-tapestry.active .tapestry {
  opacity: 1;
  height: 100%;
}
footer .my-tapestry.active button .background {
  transform: rotate(0deg);
}
footer .my-tapestry.active button svg path {
  fill: var(--zam) !important;
}
footer .my-tapestry .tapestry {
  opacity: 0;
  height: 0;
  position: relative;
}
footer .my-tapestry .tapestry-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 15vw;
  max-height: 20vw;
  overflow: scroll;
}
@media only screen and (max-width: 920px) {
  footer .my-tapestry .tapestry-content {
    max-width: 100%;
    max-height: 100%;
  }
}
footer .my-tapestry .tapestry-content .article-item {
  display: flex;
  height: 5vw;
  width: 5vw;
}
@media only screen and (max-width: 920px) {
  footer .my-tapestry .tapestry-content .article-item {
    height: 20vw;
    width: 20vw;
  }
  footer .my-tapestry .tapestry-content .article-item svg {
    max-width: 100%;
    width: 100%;
  }
}
footer .my-tapestry p {
  font-size: 1rem;
  color: var(--text);
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: left;
}
footer .my-tapestry button#close {
  position: absolute;
  right: -70px;
  top: 0;
  width: auto;
  height: auto;
  z-index: 1;
}
@media (max-width: 1280px) {
  footer .my-tapestry button#close {
    right: -65px;
  }
  footer .my-tapestry button#close svg {
    max-width: 13px;
  }
}
@media only screen and (max-width: 920px) {
  footer .my-tapestry button#close {
    right: -57px;
    top: -8px;
  }
}
footer .my-tapestry button.tapestry-toggle {
  position: fixed;
  bottom: 35px;
  right: 35px;
}
@media only screen and (max-width: 920px) {
  footer .my-tapestry button.tapestry-toggle {
    bottom: 31px;
    right: var(--margin-side);
    width: 65px;
    height: 65px;
    font-size: 1.1rem;
  }
}
footer .my-tapestry button {
  background: transparent;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  color: var(--text);
  font-size: 1.25rem;
  text-transform: lowercase;
  line-height: 1.05;
}
footer .my-tapestry button:hover .background {
  transform: rotate(0deg);
  transition: 0.3s ease;
}
footer .my-tapestry button:hover svg path {
  fill: var(--zam) !important;
  transition: 0.3 ease;
}
footer .my-tapestry button .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--brown);
  z-index: -1;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
@media (max-width: 1600px) {
  footer .my-tapestry button {
    width: 75px;
    height: 75px;
    gap: 5px;
  }
  footer .my-tapestry button svg {
    max-width: 20px;
  }
}
footer .my-tapestry a h2 {
  display: none;
  background-color: white;
  color: var(--zam);
  position: absolute;
  top: 0;
  font-size: 1rem;
}

.tippy-content {
  padding: 10px !important;
  border-radius: 0px;
  color: var(--zam);
  font-family: var(--font-heading);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.articles {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 0;
  width: 100vw;
  margin-top: 50px;
}
@media only screen and (max-width: 920px) {
  .articles {
    overflow: scroll;
  }
}

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 0px var(--margin-side);
  margin-top: 35px;
}
@media only screen and (max-width: 1280px) {
  .categories {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 920px) {
  .categories {
    grid-template-columns: 1fr;
  }
}
.categories button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  max-width: max-content;
  font-size: 1.0625rem;
  color: var(--brown);
}
.categories button:hover span, .categories button.active span {
  transform: rotate(0deg);
  transition: 0.4s ease;
}
.categories button p {
  font-size: 1.0625rem;
  line-height: 1;
  text-decoration: underline;
  text-align: left;
}
.categories button span {
  transition: 0.4s ease;
  transform: rotate(-45deg);
}
.categories #remove span {
  background-color: white;
  border: solid 0.3px #A0003D;
  transform: rotate(0deg);
}
.categories #remove:hover span {
  transform: rotate(-45deg);
}

.filters {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0px var(--margin-side);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  display: grid;
}
@media only screen and (max-width: 920px) {
  .filters {
    grid-template-columns: 1fr;
  }
}
.filters .search-filter-base.search-filter-field {
  max-width: 90%;
  font-size: 1.0625rem;
}
@media only screen and (max-width: 920px) {
  .filters .search-filter-base.search-filter-field {
    max-width: 100%;
  }
}
.filters .search-filter-field__input {
  background: #EAE8DF;
  border-radius: 80px;
  border: none;
  color: var(--brown);
  font-size: 1.0625rem;
}
.filters .search-filter-field__input ::placeholder {
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--brown);
  font-size: 1.0625rem;
}
.filters input#search-filter-input-text-0, .filters .search-filter-component-combobox__actions {
  padding: 5px 10px !important;
}
.filters .search-filter-component-combobox__selection {
  padding: 0 !important;
  cursor: pointer;
}
.filters .search-filter-component-combobox__selection span {
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--brown);
  font-size: 1.0625rem;
}
.filters .search-filter-input-text.search-filter-input-text.search-filter-field__input {
  display: flex;
  flex-direction: row-reverse;
}
.filters .search-filter-component-combobox__selection-placeholder {
  color: var(--brown) !important;
  padding: 0 !important;
  font-size: 1.0625rem !important;
  font-family: var(--font-heading) !important;
}
.filters .search-filter-input-text input[type=text], .filters .search-filter-component-combobox .search-filter-component-combobox__actions .search-filter-component-combobox__actions-input, .filters input#search-filter-input-combobox-0::placeholder, .filters input#search-filter-input-combobox-1::placeholder {
  color: var(--brown) !important;
  font-family: var(--font-heading) !important;
  font-size: 1.0625rem !important;
  padding: 0 !important;
}
.filters .search-filter-input-text input[type=text]::placeholder {
  font-size: 1.0625rem !important;
  font-family: var(--font-heading) !important;
}
.filters .search-filter-style--id-1.search-filter-style--search-text {
  --search-filter-input-placeholder-color: var(--brown) !important;
}
.filters input#search-filter-input-combobox-0 {
  padding: 0;
}
.filters .search-filter-component-combobox__listbox-toggle svg, .filters .search-filter-icon__svg {
  fill: var(--brown) !important;
  color: var(--brown) !important;
}
.filters .search-filter-component-combobox__listbox-toggle::before {
  display: none;
}
.filters .search-filter-component-combobox-base__listbox.search-filter-component-popup--position-top {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border: none !important;
}
.filters .search-filter-component-combobox-base--listbox-visible {
  border-radius: 0px 0px 20px 20px !important;
}
.filters .search-filter-component-combobox-base--listbox-visible.search-filter-component-combobox-base--listbox-position-bottom {
  border-radius: 20px 20px 0px 0px !important;
}

ul#search-filter-input-combobox-listbox-0, ul#search-filter-input-combobox-listbox-1 {
  background: #EAE8DF;
  border: none;
  border-radius: 20px 20px 0px 0px;
  --search-filter-input-selected-background-color: var(--brown);
}
ul#search-filter-input-combobox-listbox-0.search-filter-component-popup--position-bottom, ul#search-filter-input-combobox-listbox-1.search-filter-component-popup--position-bottom {
  border-radius: 0px 0px 20px 20px;
}
ul#search-filter-input-combobox-listbox-0 li, ul#search-filter-input-combobox-listbox-1 li {
  font-family: var(--font-heading);
  color: var(--brown);
  cursor: pointer;
  padding: 10px 18px;
  font-size: 1.0625rem !important;
}
ul#search-filter-input-combobox-listbox-0 li[aria-selected=true], ul#search-filter-input-combobox-listbox-1 li[aria-selected=true] {
  color: white;
}

.single-article .article-wrapper {
  display: grid;
  grid-template-areas: "related content sidebar";
  grid-template-columns: 1fr 2fr 1fr;
  gap: 45px;
  padding: var(--margin-side);
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--margin-side);
  }
}
.single-article .article-wrapper .svg {
  display: flex;
  align-items: start;
  justify-content: end;
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper .svg {
    justify-content: start;
  }
}
.single-article .article-wrapper .svg svg {
  max-width: 5vw;
  margin-top: 8px;
}
@media only screen and (max-width: 1600px) {
  .single-article .article-wrapper .svg svg {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper .svg svg {
    margin: 0;
    max-width: 20vw;
  }
}
.single-article .article-wrapper .article-intro {
  grid-area: content;
  grid-row: 1;
}
.single-article .article-wrapper .article-intro h2.country {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 15px;
}
.single-article .article-wrapper .article-intro p, .single-article .article-wrapper .article-intro a {
  font-size: 1.25rem;
  font-family: var(--font-heading);
}
.single-article .article-wrapper .article-intro p.author {
  margin-top: 15px;
}
.single-article .article-wrapper .article-intro p.author span:last-of-type {
  display: none;
}
.single-article .article-wrapper .related-articles {
  grid-area: related;
  grid-row: 2;
}
.single-article .article-wrapper .related-articles h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.single-article .article-wrapper .article-content {
  grid-area: content;
  grid-row: 2;
}
.single-article .article-wrapper .article-content .row {
  padding: var(--margin-bottom) 0;
}
.single-article .article-wrapper .article-content .row:first-of-type {
  padding-top: 0;
}
.single-article .article-wrapper .article-content .row.quote {
  padding: 10px 0px;
}
.single-article .article-wrapper .article-content .row.quote + .block {
  margin-top: var(--margin-bottom);
}
.single-article .article-wrapper .article-content .row.image + .text {
  padding-top: 0;
}
.single-article .article-wrapper .article-content .row.text + .image {
  padding-top: 0;
}
.single-article .article-wrapper .article-content .row.text h1:last-child, .single-article .article-wrapper .article-content .row.text h2:last-child, .single-article .article-wrapper .article-content .row.text h3:last-child, .single-article .article-wrapper .article-content .row.text h4:last-child, .single-article .article-wrapper .article-content .row.text h5:last-child, .single-article .article-wrapper .article-content .row.text h6:last-child {
  margin-bottom: 0px !important;
}
.single-article .article-wrapper .article-content .row.row.block {
  background: #e3e1e1;
  padding: 35px;
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper .article-content .row.row.block {
    padding: 20px;
  }
}
.single-article .article-wrapper .article-content .row.row.block h1, .single-article .article-wrapper .article-content .row.row.block h2, .single-article .article-wrapper .article-content .row.row.block h3, .single-article .article-wrapper .article-content .row.row.block h4, .single-article .article-wrapper .article-content .row.row.block h5, .single-article .article-wrapper .article-content .row.row.block h6 {
  margin-bottom: var(--margin-bottom);
}
.single-article .article-wrapper .article-content .row.row.block h1:last-child, .single-article .article-wrapper .article-content .row.row.block h2:last-child, .single-article .article-wrapper .article-content .row.row.block h3:last-child, .single-article .article-wrapper .article-content .row.row.block h4:last-child, .single-article .article-wrapper .article-content .row.row.block h5:last-child, .single-article .article-wrapper .article-content .row.row.block h6:last-child {
  margin-bottom: 0px !important;
}
.single-article .article-wrapper .article-content .row.row.block p, .single-article .article-wrapper .article-content .row.row.block a, .single-article .article-wrapper .article-content .row.row.block ul li {
  font-size: 1rem;
}
.single-article .article-wrapper .article-content .row.row.block ul {
  margin-top: 20px;
}
.single-article .article-wrapper .article-content .row.row.block h1 + ul, .single-article .article-wrapper .article-content .row.row.block h2 + ul, .single-article .article-wrapper .article-content .row.row.block h3 + ul, .single-article .article-wrapper .article-content .row.row.block h4 + ul, .single-article .article-wrapper .article-content .row.row.block h5 + ul, .single-article .article-wrapper .article-content .row.row.block h6 + ul {
  margin-top: 0px;
}
.single-article .article-wrapper .article-content .row.row.block + .quote {
  margin-top: var(--margin-bottom);
}
.single-article .article-wrapper .article-content a {
  color: var(--zam);
}
.single-article .article-wrapper .article-content .block h1, .single-article .article-wrapper .article-content .block h2, .single-article .article-wrapper .article-content .block h3, .single-article .article-wrapper .article-content .block h4, .single-article .article-wrapper .article-content .block h5, .single-article .article-wrapper .article-content .block h6 {
  margin-bottom: 15px !important;
}
.single-article .article-wrapper .article-content .block p + h2, .single-article .article-wrapper .article-content .block p + h3, .single-article .article-wrapper .article-content .block p + h4, .single-article .article-wrapper .article-content .block p + h5, .single-article .article-wrapper .article-content .block p + h6, .single-article .article-wrapper .article-content .block a + h2, .single-article .article-wrapper .article-content .block a + h3, .single-article .article-wrapper .article-content .block a + h4, .single-article .article-wrapper .article-content .block a + h5, .single-article .article-wrapper .article-content .block a + h6, .single-article .article-wrapper .article-content .block ul + h2, .single-article .article-wrapper .article-content .block ul + h3, .single-article .article-wrapper .article-content .block ul + h4, .single-article .article-wrapper .article-content .block ul + h5, .single-article .article-wrapper .article-content .block ul + h6 {
  margin-top: 15px;
}
.single-article .article-wrapper .article-content .text h2, .single-article .article-wrapper .article-content .text h3, .single-article .article-wrapper .article-content .text h4 {
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: var(--margin-bottom);
}
.single-article .article-wrapper .article-content .text p + h2, .single-article .article-wrapper .article-content .text p + h3, .single-article .article-wrapper .article-content .text p + h4, .single-article .article-wrapper .article-content .text p + h5, .single-article .article-wrapper .article-content .text p + h6, .single-article .article-wrapper .article-content .text a + h2, .single-article .article-wrapper .article-content .text a + h3, .single-article .article-wrapper .article-content .text a + h4, .single-article .article-wrapper .article-content .text a + h5, .single-article .article-wrapper .article-content .text a + h6 {
  margin-top: 60px;
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper .article-content .text p + h2, .single-article .article-wrapper .article-content .text p + h3, .single-article .article-wrapper .article-content .text p + h4, .single-article .article-wrapper .article-content .text p + h5, .single-article .article-wrapper .article-content .text p + h6, .single-article .article-wrapper .article-content .text a + h2, .single-article .article-wrapper .article-content .text a + h3, .single-article .article-wrapper .article-content .text a + h4, .single-article .article-wrapper .article-content .text a + h5, .single-article .article-wrapper .article-content .text a + h6 {
    margin-top: 40px;
  }
}
.single-article .article-wrapper .article-content .text p, .single-article .article-wrapper .article-content .text a, .single-article .article-wrapper .article-content .text span, .single-article .article-wrapper .article-content .text ul li, .single-article .article-wrapper .article-content .text ol li {
  font-size: 1.5rem;
  line-height: 1.2;
}
.single-article .article-wrapper .article-content .text p, .single-article .article-wrapper .article-content .text ul, .single-article .article-wrapper .article-content .text ol {
  margin-bottom: 15px;
}
.single-article .article-wrapper .article-content .text p:last-child, .single-article .article-wrapper .article-content .text ul:last-child, .single-article .article-wrapper .article-content .text ol:last-child {
  margin-bottom: 0;
}
.single-article .article-wrapper .article-content blockquote {
  color: var(--zam);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 2.1875rem;
  line-height: 1.1;
  max-width: 60%;
}
@media only screen and (max-width: 920px) {
  .single-article .article-wrapper .article-content blockquote {
    max-width: 100%;
    line-height: 1.1;
  }
}
.single-article .article-wrapper .article-content figcaption {
  font-size: 1rem;
  font-family: var(--font-body);
}
.single-article #external-preview-sidebar {
  width: 20vw;
  position: fixed;
  right: 0px;
  display: none;
  z-index: 999;
  background-color: var(--background);
  padding: 20px;
}
@media only screen and (max-width: 920px) {
  .single-article #external-preview-sidebar {
    display: none !important;
  }
}
.single-article #external-preview-sidebar p, .single-article #external-preview-sidebar a, .single-article #external-preview-sidebar h4 {
  color: var(--zam);
  font-family: var(--font-heading);
}
.single-article #external-preview-sidebar p.preview-url {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.1;
}
.single-article #external-preview-sidebar p.preview-url a {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 400;
}
.single-article #external-preview-sidebar p.preview-categories {
  display: flex;
  gap: 5px;
  padding-bottom: 10px;
}
.single-article #external-preview-sidebar p.preview-categories span {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.single-article #external-preview-sidebar h4.preview-title {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.single-article #external-preview-sidebar p.preview-country {
  margin-bottom: 10px;
  font-size: 1rem;
}
.single-article #external-preview-sidebar p.preview-date {
  font-size: 1rem;
  margin-bottom: 10px;
}
.single-article #external-preview-sidebar p.preview-excerpt {
  font-size: 1rem;
}
.single-article .category-block .show-articles {
  opacity: 0;
  height: 0;
  transition: 0.4s ease;
  position: relative;
  padding: 10px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px;
}
.single-article .category-block .show-articles .article {
  height: 0;
  transition: 0.4s ease;
  display: none;
}
.single-article .category-block .show-articles a.article-link {
  display: flex;
}
.single-article .category-block .show-articles a.article-link svg {
  max-width: 100%;
}
.single-article .category-block .show-articles > p {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-style: italic;
  grid-column: 1/-1;
}
.single-article .category-block button {
  background: transparent;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--brown);
  z-index: 1;
  position: relative;
}
.single-article .category-block button p {
  font-size: 1.0625rem;
  text-align: left;
  line-height: 1.1;
}
.single-article .category-block button:hover > span {
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.single-article .category-block button span {
  transition: 0.4s ease;
}
.single-article .category-block.active > span {
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.single-article .category-block.active button p {
  text-decoration: underline;
}
.single-article .category-block.active .show-articles {
  opacity: 1;
  height: 100%;
  transition: 0.4s ease;
  padding: 20px 0px;
}
.single-article .category-block.active .show-articles .article {
  height: 100%;
  transition: 0.4s ease;
  display: block;
}
.single-article button.back-to-top {
  grid-row: 3;
  grid-column: 2;
  text-align: right;
  color: var(--zam);
  background: transparent;
  font-size: 22px;
}
.single-article button.back-to-top span {
  transform: rotate(270deg);
  display: inline-block;
}
@media only screen and (max-width: 920px) {
  .single-article button.back-to-top {
    text-align: left;
  }
}

.page-template-default .wrapper {
  padding: 35px var(--margin-side);
}

/* .rounded(@radius: 2px) {
  -webkit-border-radius: @radius;
  -moz-border-radius: @radius;
  border-radius: @radius;
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
} */
[data-hamburger] {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 30px;
}
[data-hamburger] span {
  background-color: var(--text);
  display: block;
  height: 3px;
  margin: 0 auto;
  position: relative;
  width: 30px;
}
[data-hamburger] span:before {
  background-color: var(--text);
  content: "";
  display: block;
  height: 3px;
  margin-top: -9px;
  position: absolute;
  width: 30px;
}
[data-hamburger] span:after {
  background-color: var(--text);
  content: "";
  display: block;
  height: 3px;
  margin-top: 9px;
  position: absolute;
  width: 30px;
}
[data-hamburger]:focus {
  outline: none;
}

[data-hamburger] span {
  -webkit-transition-delay: 0.2s;
  -webkit-transition-duration: 0s;
  transition-delay: 0.2s;
  transition-duration: 0s;
}
[data-hamburger] span:before {
  -webkit-transition-delay: 0.2s, 0s;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-property: margin, -webkit-transform;
  transition-delay: 0.2s, 0s;
  transition-duration: 0.2s;
  transition-property: margin, transform;
}
[data-hamburger] span:after {
  -webkit-transition-delay: 0.2s, 0s;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-property: margin, -webkit-transform;
  transition-delay: 0.2s, 0s;
  transition-duration: 0.2s;
  transition-property: margin, transform;
}
[data-hamburger]:hover span:before {
  margin-top: -10px;
}
[data-hamburger]:hover span:after {
  margin-top: 10px;
}
[data-hamburger][aria-expanded=true] span {
  -webkit-transition-delay: 0.2s;
  background-color: var(--text);
  transition-delay: 0.2s;
  height: 0;
}
[data-hamburger][aria-expanded=true] span:before {
  background-color: var(--text);
  -webkit-transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
[data-hamburger][aria-expanded=true] span:after {
  background-color: var(--text);
  -webkit-transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.page-template-home section.content {
  display: grid;
  grid-template-areas: "title content sidebar";
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  padding: var(--margin-side);
  padding-bottom: 10px;
}
@media only screen and (max-width: 920px) {
  .page-template-home section.content {
    display: flex;
    flex-direction: column;
  }
}
.page-template-home section.content h1 {
  font-family: var(--font-body);
  font-size: 7.375rem;
  line-height: 0.8;
  font-weight: 400;
  text-transform: lowercase;
  word-spacing: 9999999px;
}
@media only screen and (max-width: 1280px) {
  .page-template-home section.content h1 {
    font-size: 5.8rem;
  }
}
@media only screen and (max-width: 920px) {
  .page-template-home section.content h1 {
    font-size: 7.375rem;
  }
}
.page-template-home section.content p {
  margin-bottom: 30px;
}
.page-template-home section.content p:last-of-type {
  margin: 0;
}
.page-template-home section.content .external-link {
  color: var(--zam);
}
.page-template-home #external-preview-sidebar {
  width: 20vw;
  position: fixed;
  right: 20px;
  display: none;
  z-index: 999;
}
.page-template-home #external-preview-sidebar p, .page-template-home #external-preview-sidebar a, .page-template-home #external-preview-sidebar h4 {
  color: var(--zam);
  font-size: 1rem;
}
.page-template-home #external-preview-sidebar h4 {
  margin-bottom: 10px;
}
.page-template-home #external-preview-sidebar .preview-url, .page-template-home #external-preview-sidebar .hide-home {
  display: none;
}
@media only screen and (max-width: 920px) {
  .page-template-home #external-preview-sidebar {
    display: none !important;
  }
}
.page-template-home a.article-link {
  display: flex;
}
.page-template-home .placeholder .article-item {
  cursor: default;
}
.page-template-home .tapestry {
  position: relative;
  font-size: 3rem;
  text-align: center;
}
.page-template-home .scroll {
  position: absolute;
  right: var(--margin-side);
  top: -28px;
  z-index: 1;
}
@media only screen and (max-width: 920px) {
  .page-template-home .scroll {
    top: 20px;
  }
}
.page-template-home .scroll p {
  font-size: 1rem;
}

.search-filter-query.search-filter-query--id-1 {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.tippy-box {
  background-color: var(--background);
  border-radius: 0px;
  border: solid 1px var(--zam);
  z-index: 100;
}

.tippy-content {
  padding: 15px;
  border-radius: 0px;
}
.tippy-content h2, .tippy-content p, .tippy-content a {
  color: var(--zam);
  font-family: var(--font-heading);
  font-weight: 400;
  text-align: left;
}
.tippy-content p, .tippy-content a {
  font-size: 1rem;
  line-height: 1.2;
}
.tippy-content h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.tippy-content .article-categories {
  margin: 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.tippy-content p.author span:last-of-type {
  display: none;
}

.tippy-arrow {
  color: var(--zam);
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: -1px;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: -1px;
}

.page-template-authors {
  overflow-x: hidden;
}
.page-template-authors footer p {
  display: none;
}
.page-template-authors .authors {
  padding: var(--margin-side);
}
.page-template-authors .authors svg {
  max-width: 5vw;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors svg {
    max-width: 20vw;
  }
}
.page-template-authors .authors .intro {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.page-template-authors .authors .intro h1 {
  grid-row: 1;
}
.page-template-authors .authors .intro .content {
  grid-row: 2;
}
.page-template-authors .authors .list {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list {
    height: 100% !important;
  }
}
.page-template-authors .authors .list .grid-column-1 {
  transition: 0.5s ease;
  padding: 10px 0px;
  max-width: calc(37vw - var(--margin-side) * 2);
}
.page-template-authors .authors .list .grid-column-1 h2:hover {
  color: var(--zam);
  transition: 0.2s ease;
  cursor: pointer;
}
.page-template-authors .authors .list .grid-column-1 h2 span {
  transform: rotate(270deg);
  display: inline-block;
  margin-left: 15px;
  transition: 0.3s ease;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-1 h2 span {
    transform: rotate(0deg);
    margin: 0;
  }
}
.page-template-authors .authors .list .grid-column-1.active h2 {
  color: var(--zam);
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-1.active h2 {
    margin-bottom: 15px;
  }
}
.page-template-authors .authors .list .grid-column-1.active span {
  transition: 0.3s ease;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-1.active span {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-1 {
    padding: 0;
    max-width: 100%;
  }
}
.page-template-authors .authors .list .grid-column-2 {
  width: calc(63vw - var(--margin-side) * 2);
  right: var(--margin-side);
  display: none;
  margin-top: 10px;
  padding-bottom: 100px;
  position: absolute;
}
.page-template-authors .authors .list .grid-column-2.image .bio-wrapper {
  max-width: calc(100% - 250px);
}
@media only screen and (max-width: 1440px) {
  .page-template-authors .authors .list .grid-column-2.image .bio-wrapper {
    max-width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 1280px) {
  .page-template-authors .authors .list .grid-column-2.image .bio-wrapper {
    max-width: calc(100% - 135px);
  }
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2.image .bio-wrapper {
    max-width: 100%;
    width: 100%;
  }
}
.page-template-authors .authors .list .grid-column-2 .inner {
  border: solid 1px var(--zam);
  padding: 25px;
}
.page-template-authors .authors .list .grid-column-2 .name-changed {
  margin-bottom: 20px;
}
.page-template-authors .authors .list .grid-column-2 .article-categories {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2 {
    position: static;
    width: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    height: 0;
    opacity: 0;
    padding: 0;
    border: none;
    padding-bottom: 30px;
    z-index: -1;
  }
  .page-template-authors .authors .list .grid-column-2 .inner {
    border: none;
    padding: 0;
  }
  .page-template-authors .authors .list .grid-column-2 h3 {
    display: none;
  }
}
.page-template-authors .authors .list .grid-column-2.active {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2.active {
    opacity: 1;
    height: 100%;
    transition: 0.3s ease;
    z-index: 1;
  }
}
.page-template-authors .authors .list .grid-column-2 img {
  float: right;
  max-width: 225px;
  margin-left: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media only screen and (max-width: 1440px) {
  .page-template-authors .authors .list .grid-column-2 img {
    max-width: 175px;
  }
}
@media only screen and (max-width: 1280px) {
  .page-template-authors .authors .list .grid-column-2 img {
    max-width: 125px;
  }
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2 img {
    float: none;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 22px;
  }
}
.page-template-authors .authors .list .grid-column-2 h3 {
  margin-bottom: 20px;
}
.page-template-authors .authors .list .grid-column-2 p {
  font-size: 1.5rem;
}
.page-template-authors .authors .list .grid-column-2 .articles {
  display: flex;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2 .articles {
    margin-top: 20px;
  }
}
.page-template-authors .authors .list .grid-column-2 .articles a.article-link {
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: center;
  color: var(--zam);
  font-family: var(--font-heading);
  font-size: 1.1875rem;
}
@media only screen and (max-width: 920px) {
  .page-template-authors .authors .list .grid-column-2 .articles a.article-link {
    width: calc(100% - var(--margin-side) * 2);
  }
}
.page-template-authors .authors .list.grid--big-columns {
  grid-template-columns: 1fr 1fr;
  max-width: calc(50% - 15px);
  transition: 0.5s ease;
}

.page-template-about .about {
  padding: var(--margin-side);
}
.page-template-about .about .intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media only screen and (max-width: 920px) {
  .page-template-about .about .intro {
    grid-template-columns: 1fr;
  }
}
.page-template-about .about .intro h1 {
  margin-bottom: 30px !important;
}
.page-template-about .about .intro .col {
  min-width: 100%;
}
.page-template-about .about .intro h1, .page-template-about .about .intro h2, .page-template-about .about .intro h3, .page-template-about .about .intro h4, .page-template-about .about .intro h5, .page-template-about .about .intro h6 {
  margin-bottom: 15px;
}
.page-template-about .about .intro p + h2, .page-template-about .about .intro p + h3, .page-template-about .about .intro p + h4, .page-template-about .about .intro p + h5, .page-template-about .about .intro p + h6, .page-template-about .about .intro a + h2, .page-template-about .about .intro a + h3, .page-template-about .about .intro a + h4, .page-template-about .about .intro a + h5, .page-template-about .about .intro a + h6, .page-template-about .about .intro ul + h2, .page-template-about .about .intro ul + h3, .page-template-about .about .intro ul + h4, .page-template-about .about .intro ul + h5, .page-template-about .about .intro ul + h6 {
  margin-top: 30px;
}
.page-template-about .swiper {
  max-height: 100vw;
  min-height: 0;
  min-width: 0;
  max-width: 100vw;
  width: 100%;
  overflow: hidden;
}
.page-template-about .swiper .swiper-wrapper {
  max-height: max-content;
  height: 100%;
  display: flex;
  padding-bottom: 30px;
}
@media only screen and (max-width: 920px) {
  .page-template-about .swiper .swiper-wrapper {
    padding-bottom: 30px;
  }
}
.page-template-about .swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: block;
  height: auto;
  max-height: max-content;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .caption {
  opacity: 0;
  font-size: 1.1875rem;
  font-family: var(--font-heading);
  color: var(--zam);
  margin-top: 7px;
  min-height: 95px;
}
@media only screen and (max-width: 1600px) {
  .page-template-about .swiper .swiper-wrapper .swiper-slide .caption {
    min-height: 71.25px;
  }
}
@media only screen and (max-width: 920px) {
  .page-template-about .swiper .swiper-wrapper .swiper-slide .caption {
    font-size: 1rem;
    min-height: 90px;
  }
}
.page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  z-index: 2;
  overflow: visible;
  width: 70% !important;
  margin-left: -17.5%;
  transition: height 0.3s ease;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .caption, .page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active #play {
  opacity: 1 !important;
  transition: 0.3s ease;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active.play .poster img, .page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active.play #play {
  opacity: 0;
  z-index: -1;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide.swiper-slide-active.play .embed-container {
  display: flex;
  z-index: 1;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-active) img {
  margin-top: 27%;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .poster {
  position: relative;
  z-index: 1;
  display: flex;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1600px) {
  .page-template-about .swiper .swiper-wrapper .swiper-slide .poster {
    padding-bottom: 3px;
  }
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .poster #play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  max-width: 40px;
  opacity: 0;
  background: transparent;
  max-height: max-content;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .poster #play svg {
  max-width: 40px;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1440/1080;
  object-fit: cover;
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .embed-container {
  z-index: -1;
  display: none;
}
@media only screen and (max-width: 920px) {
  .page-template-about .swiper .swiper-wrapper .swiper-slide .embed-container {
    aspect-ratio: 4/3;
  }
}
.page-template-about .swiper .swiper-wrapper .swiper-slide .embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.page-template-about .swiper .swiper-button-prev, .page-template-about .swiper .swiper-button-next {
  position: unset;
  height: 19px;
  justify-content: start;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--zam);
}
.page-template-about .swiper .swiper-button-prev:after, .page-template-about .swiper .swiper-button-next:after {
  display: none;
}
.page-template-about .swiper div#slider-prev {
  justify-content: end;
}
.page-template-about .swiper .nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: start;
}
@media only screen and (max-width: 1600px) {
  .page-template-about .swiper .nav {
    align-items: end;
  }
}
@media only screen and (max-width: 920px) {
  .page-template-about .swiper .nav {
    top: -70px;
  }
}
.page-template-about .swiper .swiper-pagination {
  text-align: center;
  width: auto;
  position: unset;
}
.page-template-about .swiper .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  border: var(--zam) solid 1px;
  font-size: 25px;
  width: 10px;
  height: 10px;
}
.page-template-about .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--zam) !important;
}

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