:root {
  /* Theme */
  --color-primary: #8415cc;
  --color-primary-dark: #59287b;
  --color-secondary: #ffa200;
  --color-secondary-dark: #ffa200;
  --color-white: #fff;
  --color-black: #000;
  --color-extra-black: #0b1223;
  --color-navigation: #575757;
  --color-grey: #575757;
  --color-lightgrey: #e6e6e6;
  --color-darkgrey: #454545;
  --color-panel-background: #fff;
  --color-panel-black: #282828;
  --color-language-background: #323232;
  --color-background: #020202;

  /* Typography */
  --fw-thin: 100;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-heavy: 800;
  --fw-black: 900;
  --ff-black: "Montserrat", Helvetica Neue, Arial, Helvetica, sans-serif;
  --ff-body: "Montserrat-SemiBold", Helvetica-Neue, Arial, Helvetica, sans-serif;
  --fs-xs: 0.75em;
  --fs-small: 1em;
  --fs-normal: 1.33em;
  --fs-medium: 2em;
  --fs-large: 2.5em;
  --fs-xl: 3em;
  --fs-hero-title: 5em;
  --fs-hero-title-wap: 1.75em;
  --ls--normal: 1px;

  /* Borders */
  --border-radius: 2px;
  --border-radius-panel: 5px;
  --border-radius-circle: 999px;

  /* Padding */
  --padding-xs: 0.5em;
  --padding-xs-vertical: 0.5em 0;
  --padding-xs-horizontal: 0 0.5em;
  --padding-small: 1em;
  --padding-small-vertical: 1em 0;
  --padding-small-horizontal: 0 1em;
  --padding-normal: 2em;
  --padding-normal-vertical: 2em 0;
  --padding-normal-horizontal: 0 2em;
  --padding-large: 3em;
  --padding-large-vertical: 3em 0;
  --padding-large-horizontal: 0 3em;
  --padding-xl: 4em;
  --padding-xl-vertical: 4em 0;
  --padding-xl-horizontal: 0 4em;

  /* Easing */
  --image-easing: cubic-bezier(0.165, 0.84, 0.44, 1);
  --button-easing: cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Modifiers */
  --gradient-primary: linear-gradient(
    to right bottom,
    var(--color-primary),
    var(--color-primary-dark)
  );
  --gradient-secondary: linear-gradient(
    to right bottom,
    var(--color-secondary),
    var(--color-secondary-dark)
  );
  --gradient-dark: linear-gradient(
    to right bottom,
    var(--color-extra-black),
    var(--color-black)
  );

  --input: #6d6d6d;
  --focusColor: #3d19c3;
  --loaderColor: #f73232;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: var(--fw-black);
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: var(--fw-normal);
  font-style: normal;
}

.fw--medium {
  font-weight: var(--fw-medium) !important;
}
.fs--small {
  font-size: var(--fw-normal) !important;
}
.fs--normal {
  font-size: var(--fs-normal) !important;
}
.fs--large {
  font-size: var(--fs-large) !important;
}
.fs--xl {
  font-size: var(--fs-xl) !important;
}
.ff--black {
  font-family: var(--ff-black);
}
.ff--body {
  font-family: var(--ff-body);
}
.ls--normal {
  letter-spacing: var(--ls--normal) !important;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: "Montserrat-SemiBold", Arial, Helvetica, sans-serif;
  font-weight: normal;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  padding: 0;
  background: var(--color-background);
}
body::before {
  content: "";
  padding: 0;
  background: url("../img/background.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 0;
}

@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
    font-size: 1.6rem;
  }
}

.section {
  background: var(--color-white);
  z-index: 1;
  position: relative;
}
section .container {
  margin: 0 auto;
  max-width: 1500px;
}
.section--body {
  padding: 5em 6.4em;
  text-align: left;
}

#contact .container {
  margin: 0 auto;
  max-width: 750px;
}
.section--body h2,
.section--body h4,
.section--body li,
.section--body p {
  font-size: 1.6em;
}

.section--body li {
  font-size: 1.5em;
}
.section--body ul {
  margin-bottom: var(--padding-small);
}

.section--body h2,
.section--body h4 {
  font-weight: bold;
  padding: 0 0 1em;
}
#contact .container h4,
#contact .container h2,
#contact .container p,
#contact .section--body h2::after {
  text-align: center;
  margin: 0 auto;
}
.section--body h2::after {
  content: "";
  width: 100px;
  display: block;
  border-bottom: 4px solid var(--color-primary);
  margin: 0 auto;
}

.section--body p {
  padding: 0 0 1em;
}
.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}
.container span {
  font-weight: bold;
}
.welcome .container {
  max-width: 960px;
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1em;
}
img {
  margin: 0 auto;
  max-width: 100%;
  display: block;
}

.text-center {
  text-align: center;
}
.logo {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.logo--large {
  max-width: 300px;
}

.intro {
  font-weight: 700;
  min-height: 40vh;
  justify-content: space-evenly;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.intro a {
  text-decoration: unset;
}
li {
  list-style-position: inside;
}

.content {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  width: 75%;
  margin: 0 auto;
  font-size: 1.5em;
}
.welcome .content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* ACTIVATE THIS WHEN THERE ARE MULTIPLE COUNTRIES */
  /* justify-content: space-between;  */
  /* END */
  justify-content: space-evenly;
  align-items: center;
  min-height: 70vh;
  text-align: center;
  font-size: 1em;
}

.intro__title {
  font-family: var(--ff-black);
  color: var(--color-white);
  letter-spacing: 10px;
  font-size: var(--fs-large);
  text-align: center;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--ff-black);
  color: var(--color-white);
  letter-spacing: 10px;
  font-size: var(--fs-large);
  text-align: left;
  text-transform: uppercase;
}
.hero__subtitle {
  font-family: var(--ff-body);
  color: var(--color-lightgrey);
  font-size: var(--fs-normal);
  text-align: left;
  padding: var(--padding-normal-vertical);
  max-width: 75%;
}
.brand--primary {
  color: var(--color-primary) !important;
}

.brand--secondary {
  color: var(--color-secondary) !important;
}

.intro__language {
  font-size: 1.75em;
  padding: 4px 2em;
  color: var(--color-secondary);
  font-weight: bold;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  position: relative;
}
.hero:before {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/women_right.png");
  background-size: 70%;
  background-position: 140%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.9;
}
.hero--half:before {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/women_right.png");
  background-size: 50%;
  background-position: 120% 0%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.9;
}
.hero--half {
  background: transparent;
  justify-content: center;
  height: 50vh;
}
.hero__inner {
  position: fixed;
  display: flex;
  justify-content: flex-start;
  margin-left: 4em;
}
.hero__text {
  color: #ffffff;
  width: 50%;
}
.hero__title {
  line-height: 1;
  font-size: var(--fs-hero-title);
}

.hero--half .hero__text {
  width: 100%;
}
.hero--half .intro__title {
  text-align: center;
  font-size: var(--fs-xl);
  color: var(--color-white);
}
.hero__navigation {
  width: 100%;
  font-size: var(--fs-medium);
  color: var(--color-lightgrey);
  text-transform: uppercase;
  text-align: center;
}
.hero__page {
  color: var(--color-secondary);
}
.hero__brand,
.hero__navigation p,
.hero__page {
  font-weight: var(--fw-bold);
}

.panel {
  background: var(--color-panel-background);
  padding: 2em 4rem;
  border-radius: var(--border-radius-panel);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
}
.panel__country {
  width: auto;
  height: auto;
  max-width: 150px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.4s;
  gap: 3px;
}
.panel__anchor {
  margin: 0;
}
.panel__country:hover {
  transform: translateY(-0.5rem);
}
.panel__country:hover .panel__flag {
  filter: drop-shadow(0 0.75rem 0.3rem rgba(0, 0, 0, 0.3));
}

.panel__flag {
  width: auto;
  height: auto;
  max-width: 50px;
  min-width: 50px;
  margin: 0px;
  transition: all 0.4s;
  filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.3));
}
.panel__country label {
  font-size: 1.75em;
  font-family: "Montserrat-SemiBold";
  color: var(--color-panel-black);
}
.panel__country a {
  text-decoration: none;
}

.header {
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 50;
  height: 100px;
  width: 100%;
  max-width: calc(100vw - 8em);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 4em;
}
.header .menu-icon {
  user-select: none;
  position: relative;
  width: 26px;
  height: 21px;
  cursor: pointer;
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  display: none;
}

.header .menu-icon .navicon {
  background: var(--color-white);
  display: block;
  height: 3px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 26px;
  border-radius: 6px;
  z-index: 999;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: var(--color-white);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  border-radius: 6px;
}

.header .menu-icon .navicon:before {
  top: 6px;
}

.header .menu-icon .navicon:after {
  top: -6px;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  left: 0;
  transition: all 0.2s ease-out;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
.header.scrolled {
  background: var(--color-background);
}
.menu {
  width: 10%;
  height: 100vh;
  background: var(--color-primary);
  position: fixed;
  left: -200vw;
  color: #ffffff;
  top: 0;
  margin-top: 0;
  padding: 5em;
  transition: all 0.2s ease-out;
}
.menu ul {
  list-style-type: none;
}
.menu li {
  cursor: pointer;
  margin-bottom: 0.5em;
  list-style-type: none;
}

.menu li a {
  color: var(--color-panel-background);
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.menu li a:hover {
  color: var(--color-panel-black);
}
/* language selector */
.navigation__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#languages {
  position: absolute;
  width: 100%;
  position: absolute;
  width: 100%;
  appearance: none;
  margin-left: 26px;
  color: #000;
  font-size: 1em;
}
.language__selector {
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: var(--color-language-background);
  width: 40px;
  height: 40px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.language__orb {
  border-radius: 999px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.language__flag {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  position: relative;
  background-position: center !important;
  background-size: 175% !important;
  background-repeat: no-repeat !important;
}
.language__flag--en {
  background: url("../img/uk.png");
}
.language__flag--fi {
  background: url("../img/fi.svg");
}
.language__flag--de {
  background: url("../img/de.svg");
}
.language__flag--fr {
  background: url("../img/fr.png");
}
.language__selector select {
  background: none;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
}
/* language selector end */

.header .logo {
  max-width: 200px;
  height: auto;
}
.welcome .header {
  justify-content: space-evenly;
  align-items: center;
  padding: 2em 1em;
  position: relative;
}

.navigation {
  list-style-type: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  background: none;
  text-align: center;
  z-index: 2;
  position: relative;
}
.navigation li {
  display: inline-block;
}

.navigation li a {
  display: block;
  color: var(--color-lightgrey);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  transition: all 0.5s;
  text-transform: uppercase;
}

.navigation li a:hover {
  color: var(--color-secondary);
}
.navigation li a.active {
  color: var(--color-secondary);
}
/* FAQ */
.accordion {
  width: 100%;
  margin: 1em auto;
  position: relative;
}
.accordion p {
  padding: 0;
}
.accordion__button {
  background: var(--color-background);
  color: var(--color-panel-background);
  cursor: pointer;
  padding: 1em;
  width: 100%;
  max-width: calc(100% - 2em);
  border: none;
  text-align: left;
  outline: none;
  font-size: var(--fs-medium);
  font-weight: bold;
  transition: 0.4s;
}
.swiper {
  width: 100%;
  height: 100%;
  max-width: 960px;
  max-height: 540px;
}

.section--body .active,
.section--body .accordion__button:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary) !important;
}

.accordion__body {
  padding: 1em;
  display: none;
  background-color: white;
  overflow: hidden;
  border: 1px solid var(--color-primary);
  width: 100%;
  max-width: calc(100% - 2em);
}
/* FAQ END */

.contact-panel {
  display: block;
  max-width: 475px;
  text-align: center;
  padding: 10rem 0;
}
.contact-line {
  color: #ffffff;
}
.contact-line h2 {
  font-size: 3em;
  color: #ffffff;
}
.contact-line p {
  font-family: cocogoose light, sans_serif;
  font-size: 1rem;
  line-height: 2;
  margin: 1em auto 0;
}
.flex-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
form {
  width: 100%;
  position: relative;
}
input[type="email"],
input[type="text"],
textarea {
  border-radius: 0;
  background-color: var(--color-lightgrey);
  border: 1px solid var(--color-lightgrey);
  color: var(--input);
  font-size: var(--fs-medium);
  display: block;
  padding: 1em;
  margin-bottom: var(--padding-xs);
  resize: none;
}
.button {
  max-width: fit-content;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-normal);
  padding: var(--padding-small);
  letter-spacing: 2px;
  background: var(--color-black);
  font-weight: var(--fw-bold);
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  transition: 0.3s all ease-in-out;
}
.button--arrow::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: auto;
  display: block;
  margin-left: 5px;
  transition: 0.3s all ease-in-out;
}
.button--arrow:hover {
  border: 1px solid var(--color-secondary);
  color: var(--color-black);
  background: var(--color-secondary);
}
.button:hover.button--arrow::after {
  filter: invert(1);
}
.footer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-navigation);
  max-width: 1080px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4em;
  padding: 1em;
}
.footer hr {
  width: 100%;
  margin-bottom: 1em;
}
.footer .footer__logo {
  max-width: 200px;
  margin-right: 0.5em;
}
.footer .navigation {
  margin-left: unset;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer .navigation li a {
  color: var(--color-navigation);
}
.footer .navigation li {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.footer .navigation li::after {
  content: "";
  border-radius: var(--border-radius-circle);
  background: var(--color-navigation);
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
}
.footer .navigation li:last-of-type:after {
  content: none;
}

.welcome .footer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-navigation);
  max-width: 960px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4em;
  padding: 1em;
}
.welcome .footer .logo {
  max-width: 120px;
  margin-bottom: 0.5em;
}

.copyright {
  font-family: "Montserrat-SemiBold";
}
.footer #highlight {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

@media only screen and (max-width: 1050px) {
  .header .navigation {
    display: none;
  }
  .header .menu-icon {
    display: flex;
  }
  .hero__navigation {
    font-size: 1.5em;
  }
  .navigation__buttons {
    margin-left: auto;
  }
}
@media only screen and (min-width: 1000px) {
  .hero__inner {
    margin-left: 10vw;
  }
  .hero--half .hero__inner {
    margin-left: 0;
  }
  .header .logo {
    margin-left: 7.5vw;
  }
  .hero__title {
    font-size: 4rem;
    margin-top: 4rem;
  }
}

@media only screen and (max-width: 758px) {
  .menu {
    width: 100%;
  }
  .menu-btn:checked ~ .menu {
    width: 100%;
    font-size: 1.5rem;
    padding: 5em 1em;
  }
  .menu li a {
    font-size: 2em;
  }
  .language__selector {
    width: 30px;
    height: 30px;
  }
  .language__orb {
    width: 24px;
    height: 24px;
  }
  .language__flag {
    background-size: 160% !important;
  }
  .hero {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .hero:before {
    background-image: url("../img/women_right.png");
    background-size: 100%;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.9;
  }
  .hero--half:before {
    background-image: url("../img/women_right.png");
    background-size: 100%;
    background-position: 0% 35%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.9;
  }
  .hero__inner {
    margin: 100px 2em 0 2em;
  }
  .hero--half .hero__inner {
    margin: 100px 2em 0 2em;
  }
  .hero--half .intro__title {
    font-size: var(--fs-hero-title-wap);
  }
  .hero__text {
    width: 100%;
  }

  .section--body {
    padding: 1em;
  }
  .section--body p,
  .section--body li,
  .accordion__button {
    font-size: var(--fs-normal);
  }

  .accordion {
    font-size: var(--fs-xs);
  }

  .footer .navigation li a {
    padding: 0.5em;
    font-size: var(--fs-xs);
  }
  .footer > :nth-child(1),
  .footer > :nth-child(2),
  .footer > :nth-child(3) {
    margin-bottom: var(--padding-xs);
  }
}

@media only screen and (max-width: 650px) {
  body::before {
    background: url("../img/background-wap.png");
    background-size: cover;
    background-position: 100%;
  }
  #languages {
    margin-left: 17px;
    font-size: 0.7em;
  }

  .header {
    max-width: calc(100vw - 4em);
    padding: 0 2em;
  }
  .content::before,
  .content::after {
    opacity: 0.5;
  }
  .intro__language {
    margin: 2em auto;
  }
  .hero__title {
    font-size: var(--fs-hero-title-wap);
  }
  .hero__subtitle {
    font-size: var(--fs-small);
    max-width: 100%;
  }
  .hero--fsxs .hero__subtitle {
    font-size: var(--fs-xs);
    max-width: 100%;
  }
  .hero__navigation {
    font-size: var(--fs-small);
  }
  .content {
    width: 100%;
  }
  .panel {
    width: 90%;
    padding: 0.5em;
    flex-direction: column;
    align-content: center;
  }
  .panel__flag {
    max-width: 50px;
    min-width: 50px;
  }
  .panel__country {
    min-width: 100px;
    width: fit-content;
    gap: 15px;
    justify-content: flex-start;
  }
  .panel__country label {
    font-size: 1.35em;
  }
  .panel__anchor {
    margin: 0.75em 0;
  }

  input[type="email"],
  input[type="text"],
  textarea {
    font-size: var(--fs-normal);
    padding: 0.5em;
  }
  input[type="submit"],
  .button {
    font-size: var(--fs-small);
  }
}

@media only screen and (max-width: 420px) {
  .content::before,
  .content::after {
    opacity: 0.5;
  }
  .header .logo {
    max-width: 150px;
  }
  .intro__title span {
    font-size: 1.75em;
  }
  .intro__language {
    margin: 2em auto;
  }

  .section--body {
    padding: 1em;
  }

  .copyright {
    font-size: 0.75em;
  }
}
