/**
 * @file
 * Header Styles
 */
/* Header */
.header-wrapper {
  position: relative;
  z-index: 15;
  /* background: #ffffff; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.header-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  z-index: 10;
  background: #ffffff;
}

.is-sticky .header-wrapper::after {
  opacity: 0.85;
}

.header {
  position: relative;
  display: flex;
  height: 75px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .logo {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 140px;
  height: 125px;
  z-index: 12;
  padding: 1rem;
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 1280px) {
  .header .logo {
    left: 31px;
  }
}

@media only screen and (max-width: 960px) {
  .header .logo {
    left: 1rem;
    background-color: transparent;
  }
}

@media only screen and (max-width: 900px) {
  .header .logo {
    width: 120px;
    height: 110px;
  }
}

@media only screen and (max-width: 768px) {
  .header .logo {
    width: 105px;
    height: 95px;
    background-color: #fff;
  }
}

@media only screen and (max-width: 600px) {
  .header .logo {
    width: 80px;
    height: 80px;
    left: 1rem;
  }
}

@media only screen and (max-width: 500px) {
  .header .logo {
    width: 70px;
    height: 60px;
  }
}

.header .logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 2;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 500px) {
  .header .logo::after {
    display: none;
  }
}

.header .logo a {
  position: relative;
  z-index: 3;
  display: block;
  text-decoration: none;
  width: 140px;
  height: 140px;
  text-indent: -9999px;
  background: url("../../images/4s-logo.png") no-repeat center;
  background-size: contain;
}

@media only screen and (max-width: 900px) {
  .header .logo a {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width: 768px) {
  .header .logo a {
    width: 105px;
    height: 110px;
  }
}

@media only screen and (max-width: 600px) {
  .header .logo a {
    width: 85px;
    height: 95px;
  }
}

@media only screen and (max-width: 500px) {
  .header .logo a {
    width: 70px;
    height: 80px;
  }
}
