/* Import fonts */
@import "fonts.css";
@import "responsive.css";

/* Mini Reset */
*,*::before,*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: none;
  text-decoration: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.wp-post-image {
  width: auto!important;
  height: auto!important;
}

textarea,
input {
     -webkit-appearance: none;
     border-radius: 0;
}

/* Global Styles */
:root {
  --font-medium: 'Rauschen B Medium', sans-serif;
  --font-regular: 'Rauschen B Regular', sans-serif;
  --body-size: 20px;
  --small-size: 16px;
  --big-size: 36px;
  --medium-size: 25px;
  --huge-size: 48px;
  --white: #ffffff;
  --black: #000000;
  --cream: #EFEDDF;
  --brown: #8c8170;
}

::selection {
  color: #D5D5D5;
}

/* Main Containers */
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Global Styles */
body {
  /* Typography Variables */
  font-size: var(--body-size);
  line-height: 1.3;
  font-family: var(--font-regular);
  background-color: var(--cream);
  color: var(--brown);
  padding: 0 60px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* General */
.padding {
  /* padding: 30px 50px; */
  padding: 30px 50px 40px 50px;
}

.huge {
  font-size: var(--huge-size);
  line-height: 1.2;
}

.big {
  font-size: var(--big-size);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.medium {
  font-size: var(--medium-size);
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.regular {
  font-family: var(--font-medium);
  font-size: var(--small-size);
  line-height: 1.2;
}

.small {
  font-family: var(--font-medium);
  font-size: var(--small-size);
  line-height: 1.3;
}

.uppercase {
  text-transform: uppercase;
}

.columns {
  column-count: 2;
  column-gap: 40px;
}

.columns p {
  margin-bottom: 20px;
}


.columns a {
  text-decoration: underline;
}

.full-height {
  min-height: 100vh;
  max-height: max-content;
}

.normal-height {
  min-height: 40vh;
  /* max-height: max-content; */
}

.small-height {
  min-height: 30vh;
  max-height: max-content;
}

.flex-vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locked {
  overflow: hidden;
}

.side-menu li,
.language,
.post-content a,
.home-menu li,
.post-title,
.newsletter-cta p {
  transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  opacity: 1;
}

.post-title:hover,
.home-menu li:hover,
.post-content a:hover,
.language:hover,
.newsletter-cta p:hover,
.side-menu li:hover {
  opacity: .7;
}

.language-container {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  border: 1px solid var(--brown);
  border-radius: 100%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 10px;
  font-size: calc(var(--body-size) - 3px);
}

/* Header */
.site-header {
  width: 100vh;
  height: 60px;
  position: fixed;
  bottom: -60px;
  right: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform-origin: top right;
  border-bottom: 1px solid var(--brown);
  background: var(--cream);
  padding: 28px 10px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.3vh;
  /* letter-spacing: -2.4px; */
  font-family: var(--font-regular);
  font-size: 2.7vh;
  /* font-size: 24px; */
  z-index: 999999;
}

.site-header h1 {
  vertical-align: center;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.social-icons a {
  display: inline-block;
  width: auto;
  width: 100%;
  height: 30px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.social-icons a:first-child {
  margin-right: 4px;
}

.social-icons a img {
  display: block;
  width: auto;
  height: 100%;
}

/* Menu */
.side-menu {
  width: 100vh;
  height: 60px;
  position: fixed;
  top: 0;
  left: 60px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform-origin: top left;
  border-top: 1px solid var(--brown);
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: -0.25px;
  font-family: var(--font-medium);
  z-index: 999999;
}

.side-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.side-menu ul li:not(:last-child) {
  margin-right:18px;
}

.side-menu ul li::after {
  background-repeat: none;
  display: inline-block;
  width: var(--small-size);
  height: var(--small-size);
  content: "";
  background-size: contain;
  background-image: url('right-a.svg');
  margin-left: 6px;
  position: relative;
  bottom: -1.5px;
  cursor: pointer;
}

/* Homepage */
.home section {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  flex-wrap: wrap;
}

.home section > div {
  width: 50%;
}

.home img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
  font-family: var(--font-medium);
  /* margin-bottom: 36px; */
  padding-top: 64px;
  text-align: right;
}

.home-menu ul li::after {
  background-repeat: none;
  display: inline-block;
  width: var(--small-size);
  height: var(--small-size);
  content: "";
  background-size: contain;
  background-image: url('right-a.svg');
  margin-left: 6px;
  position: relative;
  bottom: -1.5px;
  cursor: pointer;
}

/* Intro */
.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* News */
.home-posts {
  margin: 0;
  height: 100%;
}

.swiper-posts {
  position: static;
  overflow-x: hidden;
  padding: 30px 40px;
  width: 100%;
  margin: 0;
}

.posts-more.disabled {
    display: none;
}


.line.disabled {
    display: none;
}

.swiper-posts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}


.swiper-posts ul li span {
  font-family: var(--font-medium);
  display: block;
  margin: 6px 0 6px 0;
  text-align: right;
}

.post-title {
  font-size: var(--huge-size);
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  width: 100%;
  cursor: pointer;
  margin-bottom: 52px;
}

.overlay-title {
  font-size: var(--huge-size);
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  width: 100%;
  margin-bottom: 52px;
}

.section-title {
  padding-bottom: 14vh;
}

.swiper-posts ul li:nth-of-type(even) span  {
    text-align: left;
}

.swiper-posts ul li:nth-of-type(even) .post-title {
    text-align: right;
}

.line {
  border-bottom: 1px solid var(--brown);
  outline: none;
}

.posts-more {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.posts-more img {
  width: 20px;
  height: auto;
  cursor: pointer;
}

.swiper-pagination-bullets {
  text-align: center;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 1px solid var(--brown);
  border-radius: 50%;
  opacity: 1;
}

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 6px;
}

.swiper-pagination-bullet-active {
  background-color: var(--brown);
}

.load-more {
  display: block;
  margin-top: 30px;
  cursor: pointer;
}

.load-more::before {
  background-repeat: none;
  display: inline-block;
  width: var(--small-size);
  height: var(--small-size);
  content: "";
  background-size: contain;
  background-image: url('right-a.svg');
  margin-right: 6px;
  position: relative;
  bottom: -1.5px;
  cursor: pointer;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.news-thumb_container {
  position: relative;
}

.post-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: auto;
}

/* Mörk */
.mork {
  overflow: hidden;
  height: 100%;
}

.mork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mork p:first-child {
  margin-bottom: 30px;
}

/* Membership */
.board ul {
  list-style: none;
}

.board {
  margin-top: 40px;
}

.board h3 {
  margin-bottom: 20px;
}

.become-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 4%;
  margin: 0 -10vw;
  margin-top: 100px;
}

.become-member h3 {
  margin-bottom: 30px;
}

/* Newsletter */
.newsletter h3 {
  margin-bottom: 20px;
}

.newsletter-cta {
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.newsletter-cta p {
  cursor: pointer;
  font-family: var(--font-medium);
}

.newsletter-info {
  font-size: calc(var(--body-size) - 2px);
  line-height: 1.1;
}

.newsletter-cta p input[type=submit] {
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-cta p::after {
  background-repeat: none;
  display: inline-block;
  width: var(--small-size);
  height: var(--small-size);
  content: "";
  background-size: contain;
  background-image: url('right-a.svg');
  margin-left: 6px;
  position: relative;
  bottom: -1.5px;
  cursor: pointer;
}

#mailchimp input:not(input[type=email]) {
  border: 0;
  outline: none!important;
  color: var(--brown)!important;
  opacity: 1!important;
}

#mce-EMAIL {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

#mce-EMAIL::placeholder {
    color: var(--brown);
}

/* Footer */
.info {
  align-items: center;
  font-size: calc(var(--small-size) - 2px);
  font-family: var(--font-medium);
  line-height: 1.1;
}

/* .footer-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2%;
  align-items: center;
  font-size: calc(var(--small-size) - 2px);
  font-family: var(--font-medium);
  line-height: 1.1;
} */

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4%;
  align-items: center;
  font-size: calc(var(--small-size) - 2px);
  font-family: var(--font-medium);
  line-height: 1.1;
}

.footer-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0 50px 0;
}

.footer-logos img {
  width: auto;
  /* max-height: 80px; */
  max-height: 55px;
  max-width: 130px;
}

.footer-logos img:not(:last-child) {
  padding-right: 30px;
}

.intro-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.intro-logos img {
  /* width: auto; */
  /* max-height: 80px; */
  max-height: 105px;
  max-width: 200px;
  object-fit: contain;
}

.intro-logos img:not(:last-child) {
  padding-right: 30px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(239, 237, 223, 0.96);
  display: none;
  padding: 100px 16vw;
  overflow: scroll;
}

.overlay-single {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(239, 237, 223, 0.96);
  padding: 100px 16vw;
  overflow: scroll;
}

.overlay-close,
.overlay-close-single {
  width: 66px;
  height: 66px;
  position: absolute;
  top: 100px;
  right: 16vw;
  cursor: pointer;
  content: "";
  background-repeat: none;
  background-size: contain;
  background-image: url('close.svg');
}

.post-header {
  padding: 0 10vw;
}

.date {
  margin-bottom: 26px;
  display: block;
}

.post-img {
  float: left;
  width: 100%;
  height: 100%;
  max-width: 24vw;
  margin-right: 40px;
  margin-bottom: 40px;
}

.post-content {
  padding: 0 10vw;
}

.post-content a:not(.member-form a) {
  text-decoration: underline;
}

.post-excerpt {
  margin: 0 -8vw;
  margin-bottom: 30px;
}

.post-content p {
  margin-bottom: 20px;
}

/* Page overlay */


/* Slider */
.swiper-container {
  border: 1px solid var(--brown);
  margin: 0 -16vw;
  margin-bottom: 40px;
  cursor: pointer;
}

.slider-arrows {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin: 80px -16vw 16px -16vw;
  text-transform: uppercase;
}

.slider-arrows > div:first-child {
  display: flex;
}

.slider-arrows > div:first-child span {
  margin-left: 56%;
}

.slider-arrows img {
  height: auto;
  width: 30px;
  cursor: pointer;
}

.swiper-slide img {
  height: 700px;
  width: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.swiper-wrapper {
  text-align: center;
}

.slider-info {
  border-top: 1px solid var(--brown);
  padding: 10px 6vw;
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: 140px;
  margin-top: -6px;
}

.slider-pagination {
  width: 100%;
}


/* Members form */
.member-form {
  width: 100%;
  display: block;
}

.member-form input:not([type="checkbox"]) {
  outline: none;
  border: 0;
  border-bottom: 1px solid var(--brown);
  margin-bottom: 30px;
  padding: 10px 3px;
  width: 100%;
}

.member-form input::placeholder {
  color: var(--brown);
}

.member-form input[type=submit] {
  width: 100%;
  margin-top: 20px;
  display: block;
  text-align: left;
  cursor: pointer;
}

.half {
  display: flex;
  gap: 10px;
}

.half input {
  width: 100%;
  flex: 50%;
}

.form-checks {
    margin-top: 20px;
}

.form-checks input {
  margin-bottom: 0;
}


.form-checks span {
  padding-left: 0;
  margin: 0;
  line-height: 1.3;
  position: relative;
  top: -4px;
}

.form-checks label {
  display: flex;
}


 input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
    width: 20px;
}
input[type="checkbox"]:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    margin-top: -2px;
    width: 20px;
    height: 20px;
    background: var(--cream);
    border: 1px solid var(--brown);
    border-radius: 50%;
    -webkit-border-radius: 50%;
}


 input[type="checkbox"]:checked:before {
    background: var(--cream);
    border-color: var(--brown);
}

 input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    background: var(--brown);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 8px;
    height: 8px;
}


 span.wpcf7-list-item{
   margin: 20px 0 0 0;
}
