/*
 *	COLORS
 * 	pink: #ffe8fc
 * 	blue: #0E3C6A
 */

body,
html {
  margin: 0;
  padding: 0;
}

h1,
h2,
li,
p,
a {
  font-family: "Poppins", sans-serif;
  color: #0e3c6a;
  text-decoration: none;
}

p span {
  font-weight: 700;
}

.small-text {
  font-weight: 100;
  font-size:10px;
}

.ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
}

.li {
  margin-left: 20px;
  transition: 0.2s ease-in-out;
  font-weight: 700;
  cursor: pointer;
}

button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-radius: 100px;
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px hotpink;
}

a:focus {
  outline: none;
  box-shadow: 0 0 0 3px hotpink;
}

.primary-btn {
  color: white;
  background-color: #0e3c6a;
  padding: 15px 25px;
}

.secondary-btn {
  color: #0e3c6a;
  background-color: transparent;
  border: 3px solid #0e3c6a;
  padding: 11px 25px;
}

button:hover {
  transform: scale(1.03);
}

a:hover {
  color: hotpink;
}

img {
  width: 100%;
}

.instagram-link {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.instagram-link-forma > a {
  font-size: 24px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeinslow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

section {
  padding: 100px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*
 *	HEADER
 */

header {
  width: 90%;
  margin: 0 auto;
  height: 100vh;
}

menu {
  margin: 0;
  padding: 0;
}

.popup-info {
  width: 25%;
}

.oval {
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.oval-img {
  width: 30%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.forma-logo-header {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  animation-name: fadein;
  animation-duration: 3s;
}

/*Hamburger menu*/

#menuToggle {
  display: none;
  margin-top: 50px;
  margin-left: 50px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #0e3c6a;
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: hotpink;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  margin-top: -4px;
  margin-left: -4px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #0e3c6a;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #0e3c6a;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 100%;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #ffe8fc;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}

/* Style the active link (or home/logo) */
.active {
  background-color: transparent;
  color: white;
  font-weight: 700;
}

/*
 *	INSTAGRAM
 */

.instagram-section {
  padding: 0;
}

/*
 *	BEHANDLINGAR/PRISER
 */

.behandlingar {
  background-color: #ffe8fc;
  width: 100%;
}

.behandlingar p {
  width: 90%;
  max-width: 800px;
}

#expanded {
  width: 100%;
  max-width: 800px;
  display: none;
}

#expand-btn {
  width: 227px;
  margin-top: 15px;
}

#book-btn {
  display: none;
  width: 227px;
  margin-top: 30px;
  transition: 0.2s ease-in-out;
}

#expand-collapse {
  margin-top: 50px;
}

ul.leaders {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  list-style: none;
}
ul.leaders li:before {
  float: left;
  width: 0;
  white-space: nowrap;
  content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
}
ul.leaders span:first-child {
  padding-right: 0.33em;
  background: #ffe8fc;
}
ul.leaders span + span {
  float: right;
  padding-left: 0.33em;
  background: #ffe8fc;
}

/*
 *	VÅRA FRISÖRER
 */

.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.inner-container {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-img {
  height: 200px;
  overflow: hidden;
}

.instagram-link {
  display: flex;
  flex-direction: column;
  transition: 0.2s ease-in-out;
}

.instagram-link:hover {
  transform: scale(1.05);
}

.instagram-link a {
  font-weight: 700;
}

.instagram-link .line {
  width: 100%;
  height: 8px;
  background-color: #ffe8fc;
  margin-top: -11px;
  z-index: -1;
}

/*
  *	KONTAKT
  */

footer {
  padding: 100px 0;
  width: 100%;
  background-color: #ffe8fc;
  display: flex;
  justify-content: center;
}

.footer-container {
  text-align: center;
}

.container-footer {
  align-items: center;
}

/*
 *	IMG Section
 */

.img-section {
  padding: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/*TABLET*/

@media screen and (max-width: 900px) {
  #expanded {
    width: 90%;
  }

  .oval,
  .forma-logo-header,
  .oval-img {
    width: 40%;
  }
}

/*PHONE*/

@media screen and (max-width: 767px) {
  p {
    padding-left: 16px;
    padding-right: 16px;
  }

  #klipp {
    padding-left: 0;
    padding-right: 0;
  }

  .oval,
  .forma-logo-header,
  .oval-img {
    width: 50%;
  }

  .img-section {
    height: 100%;
  }

  #menuToggle {
    display: block;
  }

  header {
    width: 100%;
  }

  .ul {
    margin-left: 16px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .inner-container {
    margin-bottom: 50px;
  }
}
