@charset "UTF-8";
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 3 Wrappers */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #c8cfd5;
  text-align: center;
  overflow-x: hidden;
}

.wrapper-flex-centered {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.wrapper--full-width {
  width: 100%;
  background-color: black;
  overflow-x: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -5px 15px;
}

/* 4 Colors */
/* Blue */
.bg-1 {
  background: linear-gradient(135deg, rgb(42, 113, 208), rgb(30, 77, 141));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  color: aliceblue;
}

/* Red */
.bg-2 {
  background: linear-gradient(135deg, rgb(208, 73, 73), rgb(155, 47, 47));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  color: aliceblue;
}

/* Mjuk Orange */
.bg-3 {
  background: linear-gradient(135deg, rgb(255, 179, 66), rgb(240, 118, 19));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  color: aliceblue;
}

/* Teal */
.bg-4 {
  background: linear-gradient(135deg, rgb(25, 159, 161), rgb(17, 114, 115));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  color: aliceblue;
}

/* Lila */
.bg-5 {
  background: linear-gradient(135deg, rgb(156, 39, 176), rgb(106, 27, 154));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  color: aliceblue;
}

/*1. Basic font */
@font-face {
  font-family: "Roboto Condensed";
  src: url("RobotoCondensed-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
h1 {
  font-size: 50px;
}

.main-heading {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
}

h2 {
  font-size: 40px;
  padding: 10px;
  margin: 10px;
  text-shadow: 1px 1px 5px #4e4b4b;
}

h3 {
  font-size: 24px;
  padding: 20px 0 5px 0;
  font-weight: 600;
}

h5 {
  font-size: 60px;
}

p,
li {
  font-family: helvetica, sans-serif;
  font-size: 17px;
  padding: 15px 0;
  line-height: 130%;
}

.small {
  font-size: 14px;
  padding: 10px 0;
}

b {
  font-weight: 900;
}

.lead {
  padding: 5px;
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.lead i {
  font-size: 45px;
  padding-right: 5px;
}

.list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
}

a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.link_in_text:link,
.link_in_text:hover {
  text-decoration: underline;
}

.warning {
  color: red;
}

.highlight {
  color: green;
}

/* 2. Buttons */
.button {
  background: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px white;
  display: inline-block;
}

.dropdown-button {
  color: white;
  font-size: 50px;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.dropdown-button:active {
  color: gray;
}

.button--black {
  color: black;
  box-shadow: 0 0 10px black;
}

.button:hover {
  cursor: pointer;
  color: lightgray;
  text-decoration: none;
  box-shadow: 0 0 10px lightgray;
}

.button--black:hover {
  color: rgb(88, 87, 87);
  box-shadow: 0 0 10px rgb(88, 87, 87);
}

.CTA {
  width: 60%;
  margin: 10px auto;
  font-size: 24px;
}

/* 5. Navigation */
nav {
  width: 100%;
  background-color: black;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 999;
}

.logo {
  height: 60px;
}

.nav {
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu {
  align-items: flex-end;
  display: flex;
}

.menu li {
  padding: 10px;
  font-size: 22px;
  color: white;
  border-radius: 5px;
}

.menu a {
  padding: 5px 10px;
}

.menu li:hover {
  text-decoration: underline;
}

.menu__a--active {
  border-left: white solid 5px;
}

.dropdown-menu {
  position: absolute;
  margin-top: 10px;
  background-color: gray;
  display: none;
  border-radius: 5px;
  right: 10px;
  opacity: 90%;
  cursor: pointer;
}

.dropdown-menu li {
  padding: 15px 0px;
  border-radius: 5px;
}

.dropdown-menu a {
  padding: 10px 30px;
  font-size: 20px;
}

.dropdown-menu li:hover {
  background-color: lightgray;
}

.flag {
  width: 40px;
  border-radius: 5px;
}

/* 6. Header */
header {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

.header--index {
  background-image: url(Bilder/hero2.webp);
}

.header--about_us {
  background-image: url(../Bilder/hero_onas.webp);
}

.main-heading {
  padding-top: 50svh;
  padding-bottom: 30px;
  filter: blur(20px);
  transform: translateX(100%);
}

/* Schedule */
table {
  border-collapse: separate;
  border-spacing: 10px 10px;
  table-layout: fixed;
}

.schedule_desktop {
  width: 100%;
  max-width: 900px;
  display: inline-table;
  height: 50vh;
}

th {
  font-size: 20px;
}

td {
  border-radius: 10px;
  width: 20%;
  height: calc((50vh - 60px) / 3);
  padding: 5px;
}

.activity__header {
  font-size: 20px;
  padding: 5px;
}

.activity__time {
  font-size: 16px;
  padding: 5px;
}

.schedule_mobile {
  width: 100%;
  height: 70vh;
  display: none;
}
.schedule_mobile td {
  border-radius: 5px;
  width: calc((100% - 40px) / 3);
  height: calc((50vh - 60px) / 5);
  padding: 5px;
}
.schedule_mobile td .activity__header {
  font-size: 16px;
  padding: 5px;
}
.schedule_mobile td .activity__time {
  font-size: 12px;
  padding: 5px;
}
.schedule_mobile th {
  width: 40px;
  border-radius: 10px;
  padding: 1px;
  text-align: left;
  font-size: 18px;
  vertical-align: middle;
}

/* 7. Puffar */
.puff-section {
  margin-top: 200px;
  margin-bottom: 200px;
  padding-top: 20px;
}

.puff {
  width: 33.3%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

.puff__img {
  width: 60%;
  border-radius: 5%;
  clip-path: circle(50%);
  transition: all 1s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 0 auto;
  z-index: 800;
  filter: none;
  -webkit-filter: grayscale(0);
}

.puff__img:hover {
  clip-path: circle(100%);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* 8. Main */
.main {
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: calc(100vh - 240px);
  gap: 50px;
}

.main_index {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
  min-height: 10px;
}

.main_index section {
  padding: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.main_text {
  margin: 0 auto;
  max-width: 800px;
}
.main_text ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main_text li {
  text-align: start;
}

.img--big {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 10px;
}

.img--small {
  width: 30%;
  padding: 10px;
}

/* CTA */
.CTA_section {
  margin: 100px auto;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 80%;
  max-width: 500px;
  padding: 20px;
}

.CTA_section--kontakt {
  display: flex;
  flex-direction: column;
}

/* 9 Quotes */
.quotes {
  width: 50%;
  max-width: 500px;
  margin: 200px auto;
}

.citat_section {
  position: relative;
}

.citat {
  display: none;
}

.citat:first-of-type {
  display: block;
}

.citat_namn {
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.citat_text {
  font-size: 21px;
}

/* === Gemensamt för alla sliders === */
.sliderContainer {
  position: relative;
  width: 90%;
  margin: 50px auto;
  max-width: 800px;
}

.slider-view-port {
  overflow: hidden;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.wrapper-all-slides {
  display: flex;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Nyhetsslider === */
.news-slider .slide {
  background-color: #c8cfd5;
  color: #000;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.news-slider .slide__head {
  font-size: 24px;
  padding: 20px;
}

.news-slider .slide__date {
  border: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  font-size: 14px;
}

.news-slider .slide__body {
  padding: 15px;
}

/* === Bildslider === */
.image-slider .slider-view-port {
  box-shadow: none;
  height: 400px;
}

.image-slider .wrapper-all-slides {
  height: 100%;
}

.image-slider .slide {
  height: 400px;
  width: 100%;
  box-shadow: none;
}

.image-slider .slider-img {
  max-width: 90%;
  margin: 0 auto;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* === Instruktörsslider === */
.instructor-slider .slider-view-port {
  /* TA BORT height: 400px; */
  height: auto;
  padding: 20px 0;
}

.instructor-slider .wrapper-all-slides {
  height: auto;
}

.instructor-slider .instructor-slide {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 20px;
  align-items: flex-start;
  height: auto;
  box-sizing: border-box;
}

.instructor-img-wrapper {
  flex: 0 0 200px; /* större bild */
  max-width: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.instructor-img-wrapper .slider-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 10px;
}

.instructor-text {
  flex: 1;
}

.instructor-text .slide__body {
  line-height: 1;
  font-size: 1rem;
}

.slide__body.small {
  font-size: 0.85rem;
  color: #555;
}

/* === Pilar === */
.prevBtn,
.nextBtn {
  font-size: 50px;
  cursor: pointer;
  position: absolute;
  top: 40%;
  text-shadow: 1px 1px 5px #4e4b4b;
  z-index: 999;
}

.nextBtn {
  right: calc((100% - 800px) / 2 - 60px);
}

.prevBtn {
  left: calc((100% - 800px) / 2 - 60px);
}

/* 11. Sociala medier */
.sociala_medier {
  padding-bottom: 50px;
  padding-top: 50px;
  font-size: 12em;
  letter-spacing: 10px;
  color: white;
  display: flex;
  justify-content: center;
}

.sociala_medier--small {
  font-size: 2em;
  letter-spacing: 5px;
}

#insta:hover {
  color: #d62976;
}

#fb:hover {
  color: #4267b2;
}

.sociala_medier--black {
  color: black;
}

.social_video {
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
}

#insta_slide {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 20px;
  padding: 20px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}
.form input,
.form textarea {
  margin: 0 auto;
  width: 90%;
}

.form div {
  display: flex;
  flex-direction: column;
}

.img_map {
  width: 90%;
  max-width: 400px;
  border-radius: 5%;
  padding: 10px;
}

.logo_family {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
  gap: 5px;
}

.logo_family img {
  width: 200px;
}

.logo_family .img--big {
  width: 300px;
}

/* 12. Footer */
.footer_container {
  display: flex;
  justify-content: space-evenly;
}

footer p {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-size: 20px;
  padding: 10px;
}

/* 13. @media */
@media (max-width: 1050px) {
  .main_index {
    flex-direction: column;
  }
  .main_index section {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
  }
}
@media (min-width: 900px) {
  .dropdown {
    display: none;
  }
}
@media (max-width: 900px) {
  .puff-section {
    flex-direction: column;
    gap: 100px;
  }
  .quotes {
    width: 90%;
  }
  .puff-section a {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 2em;
  }
  .puff:nth-of-type(1) {
    order: 2;
  }
  .menu {
    display: none;
  }
  .nav {
    align-items: center;
  }
  .header--index {
    background-image: url(Bilder/hero3.webp);
  }
  .schedule_desktop {
    display: none;
  }
  .schedule_mobile {
    display: inline-table;
  }
  .slideBtn {
    top: 10px;
    transform: none;
    padding: 5px;
  }
  .instructor-slider .instructor-slide {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .instructor-img-wrapper {
    max-width: 80%;
    margin-bottom: 20px;
  }
  .instructor-text {
    width: 100%;
  }
  .prevBtn {
    left: 10px;
  }
  .nextBtn {
    right: 10px;
  }
}
@media (max-width: 600px) {
  .puff-section a {
    width: 80%;
    padding-bottom: 0;
  }
  .puff__img {
    width: 90%;
  }
  .wrapper-flex-centered {
    width: 95%;
  }
  table {
    border-spacing: 5px 5px;
  }
  .sociala_medier {
    font-size: 10em;
  }
  .sociala_medier--small {
    font-size: 1.5em;
  }
  .header--index {
    background-image: url(Bilder/hero8.webp);
  }
  .header--about_us {
    background-image: url(Bilder/hero_onas2.jpg);
  }
}
@media print {
  nav {
    display: none;
  }
  header {
    background: none;
  }
}
.hidden {
  opacity: 0;
  filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 1s;
}

.hidden_down {
  transform: translateY(-100%);
  transition: transform 1s;
}

.hidden_right {
  transform: translateX(100%);
  transition: transform 1s;
}

.hidden_up {
  transform: translateY(200%);
  transition: transform 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}/*# sourceMappingURL=stil-v14.css.map */