* {
  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.offers {
  display: flex;
  background-color: rgba(108, 120, 129, 0.05);
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
div.offers .wrapper {
  text-align: left;
  margin: 10vh 0;
  padding: 10vh;
  background-color: white;
  width: 60%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  text-align: left;
}
div.offers .wrapper hr {
  height: 3px;
  width: 5vw;
  margin-bottom: 4.5vh;
  background-color: #006ba6;
}
div.offers .wrapper h1 {
  padding: 5vh 5vh 5vh 0;
  font-weight: 700;
  font-size: 2.5rem;
}
div.offers .wrapper p {
  letter-spacing: 2px;
  line-height: 2rem;
  margin-bottom: 2vh;
  font-size: 1.2rem;
}
div.offers .wrapper .img {
  width: 30vw;
  height: 40vh;
  background-image: url(../imgs/JonathanLjungbjorn.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20vw;
  border-radius: 10px;
}
@media (max-width: 1279px) {
  div.offers h1 {
    font-size: 1.5rem;
  }
  div.offers .wrapper {
    flex-flow: column;
    width: 100%;
    border-radius: 0;
  }
  div.offers .wrapper .img {
    width: 80vw;
    height: 50vh;
    background-size: 100vw;
    border-radius: 15px;
  }
}

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=about-1.6.css.map */