html,
body,
#page {
  height: 100%;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 19px;
}

nav {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 20px;
  padding-top: 15px;
  background-color: white;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 18px;
}

nav a {
  margin-left: 13px;
  margin-right: 13px;
  color: black;
  font-size: 22px;
  border-bottom: 3px solid transparent;
}

nav a:hover {
  color: black;
  border-bottom: 3px solid black;
  text-decoration: none;
}

.hamburger {
  display: none !important;
  width: 35px;
  position: fixed;
  top: 4px;
  right: 45px;
  cursor: pointer;
}

header {
  height: 100%;
  background-image: url(../img/header.jpg);
  background-size: 135%;
  background-position: top left;
  z-index: 0;
}

header img {}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.wrap-med {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.wrap-small {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.height-spacer {
  clear: both;
  height: 60px;
}

h1,
h2,
h3,
h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

h1 {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 50px;
  border-bottom: 4px solid black;
}

.news img {
  margin-bottom: 15px;
}

#news article {
  padding-left: 15px;
  padding-right: 15px;
}

.button {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  border: 1px solid black;
  background-color: white;
  color: black;
  padding: 10px;
  margin-top: 100px;
  cursor: pointer;
}

.button:hover {
  color: white;
  background-color: black;
  text-decoration: none;
}

.clear {
  clear: both;
}

h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
}

.services {
  text-align: center;
  background-color: black;
  color: white;
}

.services h1 {
  border-bottom: 4px solid white;
}

.services article {
  margin-bottom: 50px;
  font-size: 20px;
}

.services h2 {
  margin-top: -15px;
}

.filter-white {
  filter: invert(100%);
}

.w-25 {
  width: 25%;
}

.clients {
  background-image: url(../img/clients.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.client {
  display: inline-block !important;
  width: 200px;
  height: 300px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  vertical-align: top;
}

.circle {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: white;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center center;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
}

.artists {
  background-image: url(../img/artists.png);
}

.about-us .intro {
  max-width: 550px;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 65px;
}

.persons {
  margin-top: 35px;
}

.bg-grey {
  background-color: #eeeeee;
}

.contact {
  background-color: #f1f3ed;
  padding-bottom: 0;
}

.contact h1 {
  margin-bottom: 100px;
}

footer {
  padding-top: 400px;
  padding-bottom: 25px;
  background-color: black;
  color: white;
  font-size: 15px;
}

footer a,
footer a:hover {
  color: white;
  text-decoration: underline;
}

h5 {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 27px;
}

h6 {
  text-transform: uppercase;
  font-size: 21px;
}

.address {
  font-size: 17px;
  margin-bottom: 50px;
}

.news-more {
  display: none;
}

a.show-more,
a.show-more:hover,
a.show-less,
a.show-less:hover {
  color: black;
  font-weight: 500;
  cursor: pointer !important;
  text-decoration: none;
}

.more,
.less {
  width: 25px;
  margin-top: 5px;
}

.mob-hide {
  display: block;
}

.mob-show {
  display: none;
}

h3 a,
h3 a:hover {
  color: black;
  text-decoration: none;
}

/*
#news, #contact, #services, #about-us{
  display: none;
}
*/

.fadeIn {
  opacity: 0;
  animation: fadein 1s ease forwards;
  animation-iteration-count: 1;
}

.socials a:hover {
  text-decoration: none !important;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeOut {
  opacity: 0;
  animation: fadeout 0.2s linear forwards;
  animation-iteration-count: 1;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@media only screen and (max-width: 1124px) {
  header {
    height: 75%;
  }
}

@media only screen and (max-width: 700px) {
  nav {
    position: fixed;
    min-height: 65px;
    background-color: white;
  }

  nav a {
    display: block;
    margin-top: 15px;
    font-size: 32px;
  }

  nav a:first-child {
    margin-top: 60px;
  }

  nav a:hover {
    border-bottom: 3px solid transparent;
  }

  .nav-wrap {
    display: none;
    padding-bottom: 30px;
  }

  .hamburger {
    display: block !important;
    cursor: pointer;
  }

  header {
    height: 270px;
    margin-top: 50px;
  }

  .wrap,
  .wrap-med,
  .wrap-small {
    padding: 20px;
  }

  article {
    margin-bottom: 30px;
  }

  #sl-logo {
    margin-top: 30px;
  }

  .contact {
    padding-top: 50px;
  }

  #news article {
    padding: 0;
  }

  section {
    padding-top: 35px;
    padding-bottom: 65px;
  }

  .mob-hide {
    display: none;
  }

  .mob-show {
    display: block;
  }

  .client {
    width: 130px;
    height: 220px;
    margin-left: 15px;
    margin-right: 15px;

    margin-bottom: 15px;
  }

  .circle {
    width: 130px;
    height: 130px;
  }

  #item-1614037838632 .circle {
    margin-top: 35px !important;
  }

  footer .text-center {
    width: 75%;
    margin: 0 auto;
  }

  .address {
    margin-bottom: 80px;
  }
}