* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Lato", sans-serif;
}

nav #hamburger {
  display: none;
  position: fixed;
  right: 0;
  font-size: 40px;
  justify-content: right;
}
nav #hamburger i {
  padding: 10px;
  position: absolute;
  z-index: 1;
}
nav #hamburger #menu {
  position: absolute;
  flex-flow: column;
  transition: margin 150ms ease-in-out;
  display: flex;
  gap: 1vh;
  width: 50vw;
  padding: 10vh 0 0 2vw;
  height: 100vh;
  background-color: rgb(242, 242, 242);
}
nav #hamburger #menu div {
  border-bottom: 2px solid #006ba6;
}
nav #hamburger #menu a {
  font-size: 1.5rem;
  color: #006ba6;
  text-decoration: none;
}
nav .row1 {
  display: flex;
  justify-content: center;
  gap: 5vw;
}
nav .row1 .container {
  display: flex;
  justify-content: center;
  gap: 2vw;
}
nav .row1 .container .icon {
  height: 20vh;
  width: 5vw;
  align-items: center;
  display: flex;
  background-image: url(../imgs/base_icon_transparent_background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: auto;
}
nav .row1 .container .logo {
  height: 20vh;
  width: 30vw;
  align-items: center;
  display: flex;
  background-image: url(../imgs/base_textlogo_transparent_background1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
}
nav .row1 #navItems {
  display: flex;
  justify-content: right;
  flex-flow: column;
}
nav .row1 #navItems .links {
  display: flex;
  text-transform: uppercase;
  justify-content: right;
  justify-items: right;
  gap: 25px;
  margin: 3.5em 0 0 0;
}
nav .row1 #navItems .links hr {
  height: 2.5vh;
  width: 1px;
  background-color: #006ba6;
}
nav .row1 #navItems .links a {
  text-decoration: none;
  color: #006ba6;
}
nav .row1 #navItems .phone {
  display: flex;
  align-items: center;
  margin-top: 4vh;
}
@media (max-width: 1279px) {
  nav .row1 {
    justify-content: left;
    margin-left: 0.5em;
  }
  nav .row1 .container .icon {
    width: 8vw;
    height: 6em;
  }
  nav .row1 .container .logo {
    width: 75vw;
    height: 6em;
  }
  nav .row1 #navItems {
    display: none;
  }
  nav #hamburger {
    display: flex;
  }
  nav .hide {
    margin-right: -50vw;
  }
  nav .show {
    margin-right: 0;
  }
}

div.parallax {
  height: 70vh;
  overflow: hidden;
  background-image: url("../imgs/massage.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
div.parallax .parallaxImg {
  height: inherit;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
}
div.parallax .parallaxImg .text {
  display: flex;
  flex-flow: column;
  text-align: left;
  margin-left: 25vw;
}
div.parallax .parallaxImg .text p {
  letter-spacing: 3px;
}
div.parallax .parallaxImg .text h1 {
  font-family: "Rozha one", serif;
  font-weight: 400;
  font-size: 3.5rem;
  letter-spacing: 2px;
  width: 70%;
}
div.parallax .parallaxImg .links {
  display: flex;
  text-align: left;
  justify-content: left;
  margin: 5vh 0 0 25vw;
}
div.parallax .parallaxImg .links a, div.offers .links a{
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  background-color: #006ba6;
  color: white;
  padding: 15px 30px;
  margin-right: 1.25em;
  font-weight: 700;
  opacity: 1;
  transition: opacity ease-in-out 200ms;
}
div.parallax .parallaxImg .links a:hover, div.offers .links a:hover {
  opacity: 0.8;
}
@media (max-width: 1279px) {
  div.parallax {
    background-attachment: scroll;
  }
  div.parallax .parallaxImg .text {
    margin-left: 5vw;
  }
  div.parallax .parallaxImg .text p {
    letter-spacing: 2px;
    padding-bottom: 2vh;
  }
  div.parallax .parallaxImg .text h1 {
    font-size: 2rem;
    width: 100%;
  }
  div.parallax .parallaxImg .links {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2em 0 0 0;
    gap: 1.5em;
  }
}

div.desc {
  display: flex;
  padding: 10vh 0;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
div.desc .wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 50%;
}
div.desc .wrapper h2 {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 10vh;
}
div.desc .wrapper p {
  font-size: 1.25rem;
  text-align: center;
}
div.desc .wrapper a {
  font-weight: 800;
  margin-top: 10vh;
  text-align: center;
  text-decoration: none;
  color: #006ba6;
}
@media (max-width: 1279px) {
  div.desc .wrapper {
    width: 90%;
  }
  div.desc .wrapper h2 {
    font-size: 2rem;
  }
}

div.offers {
  display: flex;
  background-color: rgba(108, 120, 129, 0.05);
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10vh 0;
}

div.offers .links a {
  position: relative;
  top: -30px;
}
div.offers p {
  letter-spacing: 5px;
  margin: 0 0 2vh 0;
  color: #787878;
}
div.offers h1 {
  font-family: "Rozha one", serif;
  font-weight: 400;
  font-size: 2.5rem;
}
div.offers .wrapper {
  padding: 10vh 0;
  color: black;
  text-decoration: none;
  transition: transform 200ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
div.offers .wrapper h2 {
  padding: 3vh;
}
div.offers .wrapper .img {
  width: 20vw;
  height: 25vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}
div.offers .wrapper .fascia {
  background-image: url(../imgs/IMG_9491-small.jpg);
}
div.offers .wrapper .klassisk {
  background-image: url(../imgs/massage2.jpg);
}
div.offers .wrapper .postural {
  background-image: url(../imgs/postural.jpg);
}
div.offers .wrapper .kinesio {
  background-image: url(../imgs/kinesiotape.jpg);
}
div.offers .wrapper .idrott {
  background-image: url(../imgs/idrott01.jpg);
}
div.offers .wrapper .gravid {
  background-image: url(../imgs/massage_head.jpg);
}
div.offers .wrapper:hover {
  cursor: pointer;
  transform: scale(1.01, 1.01);
}
@media (max-width: 1279px) {
  div.offers h2 {
    width: 80%;
    text-align: center;
    font-size: 1.5rem;
  }
  div.offers .wrapper {
    flex-wrap: wrap;
  }
  div.offers .wrapper div {
    overflow: hidden;
  }
  div.offers .wrapper div .img {
    background-position: center;
    background-size: cover;
    width: 40vw;
    height: 30vh;
    border-radius: 0;
  }
}

div.divider {
  background-image: url("../imgs/customer.jpg");
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1279px) {
  div.divider {
    display: none;
  }
}

#certs {
  display: flex;
  flex-direction: column;
  padding: 10vh 10vw;
}

#certs h2 {
  margin-bottom: 5vh;
}

#certs h3 {
  opacity: .8;
  margin-bottom: 2vh;
  font-weight: 400;
}

#certs h3:before {
  content: "";
  display: block;
  background: url("../imgs/quality.png") no-repeat;
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 6px 0 0;
  background-size: cover;
}

.section {
  display: flex;
  background-color: rgba(108, 120, 129, 0.05);
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10vh 50px;
}

.section p {
  white-space: pre-line;
  margin-top: 50px;
  opacity: .6;
  width: 60%;
}

@media (max-width: 1279px) {
  .section p {
    width: 100%;
  }
}

div.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
div.footer .container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
div.footer .container .logo {
  padding: 5vh 0;
}
div.footer .container .logo img {
  height: 20vh;
}
div.footer .container .logo .socials {
  display: flex;
  justify-content: space-between;
}
div.footer .container .logo .socials a {
  text-decoration: none;
}
div.footer .container .logo .socials .fa-brands {
  display: flex;
  padding: 20px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 40px;
  border-radius: 50%;
}
div.footer .container .logo .socials .fa-facebook {
  background: #3b5998;
  color: white;
}
div.footer .container .logo .socials .fa-instagram {
  background: #125688;
  color: white;
}
div.footer .container .links {
  display: flex;
}
div.footer .container .links hr {
  height: 2.5vh;
  width: 1px;
  margin-bottom: 4.5vh;
  background-color: #006ba6;
}
div.footer .container .links a {
  margin: 0 2vw 5vh 2vw;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
}

div.footer .info {
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

div.footer .info h4{
  opacity: 0.8;
  font-weight: 400;
}

@media (max-width: 1279px) {
  div.footer .links a {
    font-size: 0.8rem;
  }
  div.footer .links hr {
    height: 2vh !important;
  }
}/*# sourceMappingURL=index-1.6.css.map */