*, html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nav-padding {
  padding: 16px;
}
@media (min-width: 1024px) {
  .nav-padding {
    padding: 24px 75px;
  }
}

.m-top-menu {
  margin-top: 82px;
}
@media (min-width: 1024px) {
  .m-top-menu {
    margin-top: 82px;
  }
}

@media (min-width: 1024px) {
  .site-margin {
    margin-left: 300px;
  }
}

.site-padding {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .site-padding {
    padding: 32px 48px;
  }
}
@media (min-width: 1024px) {
  .site-padding {
    padding: 64px;
  }
}

.cta {
  display: inline-block;
  border-radius: 50px;
  padding: 14px 31px;
  color: black;
  text-align: center;
  font-family: argent-cf, serif;
  font-size: 17px;
  font-weight: 300;
  margin-top: 1rem;
  transition: 0.4s;
  text-decoration: none;
}

.yellow-cta {
  background-color: #F2A900;
}
.yellow-cta:hover {
  background-color: #FFCD00;
}

.outline-cta {
  border-radius: 50px;
  border: 1px solid #F2A900;
}
.outline-cta:hover {
  background-color: #DCD7D3;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu {
  position: fixed;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 40;
  border-bottom: 1px solid #EEEAE6;
}
.menu .menu-wrapper {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .menu .menu-wrapper {
    z-index: 60;
  }
}

.logo-mobile {
  display: flex;
  flex-grow: 2;
  justify-content: center;
  margin-right: 50px;
}
@media (min-width: 1024px) {
  .logo-mobile {
    display: none;
  }
}

.logo-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .logo-desktop {
    display: flex;
    justify-content: flex-start;
  }
}

.hamburgemeny {
  position: relative;
  width: 40px;
  height: 50px;
  top: 0;
  right: 0;
  z-index: 60;
  margin-right: 12px;
}
@media (min-width: 1024px) {
  .hamburgemeny {
    display: none;
  }
}
.hamburgemeny span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 50px;
  background-color: black;
  position: absolute;
  transition: 0.4s;
}
.hamburgemeny span:first-child {
  top: 13px;
  left: 5px;
}
.hamburgemeny span:nth-child(2) {
  top: 24px;
  left: 5px;
}
.hamburgemeny span:last-child {
  top: 35px;
  left: 5px;
}
.hamburgemeny.exit span:first-child {
  transform: rotate(45deg);
  top: 24px;
  background-color: black;
}
.hamburgemeny.exit span:nth-child(2) {
  opacity: 0;
}
.hamburgemeny.exit span:last-child {
  transform: rotate(-45deg);
  top: 24px;
  background-color: black;
}

.menu-extra {
  background-color: white;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 50;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-extra.show {
  visibility: visible;
  right: 0;
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .desktop-menu {
    visibility: visible;
    left: 0;
    opacity: 1;
    max-width: 300px;
    z-index: 0;
    box-shadow: 6px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

.ul-menu {
  text-align: center;
}
@media (min-width: 1024px) {
  .ul-menu {
    text-align: left;
    position: absolute;
    top: 128px;
    left: 75px;
  }
}
.ul-menu li {
  list-style: none;
  margin-bottom: 48px;
}
.ul-menu a {
  text-decoration: none;
  font-family: argent-cf, serif;
  font-weight: 300;
}
.ul-menu .li-menu a {
  font-size: 24px;
  color: black;
}
.ul-menu .li-menu a:hover svg {
  transition: 0.4s;
  margin-left: 8px;
}
.ul-menu .chosen {
  border-bottom: 2px solid #F2A900;
}
.ul-menu .li-cta {
  background-color: black;
  border-radius: 50px;
  display: inline-block;
}
.ul-menu .li-cta a {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  font-size: 18px;
  color: white;
}
.ul-menu .li-cta a svg {
  margin-right: 8px;
}

.site-header {
  background-color: #FFCD00;
}
@media (min-width: 1024px) {
  .site-header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 850px;
    margin: auto;
  }
}
@media (min-width: 1024px) {
  .site-header .header-content {
    margin-right: 32px;
  }
}
.site-header h1, .site-header p {
  font-family: argent-cf, serif;
  font-weight: 300;
}
.site-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}
.site-header p {
  margin-bottom: 16px;
}
.site-header a {
  text-decoration: none;
  color: black;
}
.site-header img {
  display: block;
  padding-top: 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .site-header img {
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .container {
    position: relative;
  }
}

.breadcrumbs {
  display: none;
}
@media (min-width: 1024px) {
  .breadcrumbs {
    display: flex;
    position: absolute;
    top: 24px;
    left: 48px;
    border-bottom: 1px solid black;
  }
}
.breadcrumbs .crumb {
  font-family: argent-cf, serif;
  font-weight: 300;
  list-style: none;
}
.breadcrumbs .crumb a {
  text-decoration: none;
  color: black;
}
.breadcrumbs .first-crumb {
  margin-right: 13px;
}
.breadcrumbs .first-crumb::after {
  content: url(img/arrow_right.svg);
  position: relative;
  top: 0;
  margin-left: 8px;
}

.paragraph {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .paragraph {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
.paragraph h1, .paragraph h2, .paragraph p {
  font-family: argent-cf, serif;
  font-weight: 300;
  text-align: center;
}
.paragraph h1 {
  font-size: 48px;
  margin-bottom: 16px;
}
.paragraph h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.paragraph p {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .customer-service {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
.customer-service h2, .customer-service h4, .customer-service p, .customer-service .phone, .customer-service .email {
  font-family: argent-cf, serif;
  font-weight: 300;
  text-align: center;
}
.customer-service h2 {
  margin-bottom: 16px;
  font-size: 32px;
}
.customer-service a {
  text-decoration: none;
  color: black;
}
.customer-service a:hover {
  color: #F2A900;
}
.customer-service .phone {
  font-size: 21px;
  margin-bottom: 6px;
}
.customer-service .email {
  margin-bottom: 24px;
}
.customer-service h4 {
  font-size: 19px;
  margin-bottom: 8px;
}
.customer-service p {
  margin-bottom: 6px;
}

.jour-numbers {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .jour-numbers {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
.jour-numbers h4, .jour-numbers p {
  font-family: argent-cf, serif;
  font-weight: 300;
  text-align: center;
}
.jour-numbers h4 {
  font-size: 19px;
  margin-bottom: 8px;
}
.jour-numbers p {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .accordion {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
.accordion .content-acc {
  width: 100%;
  background-color: #EEEAE6;
  border-radius: 10px;
  padding: 15px 21px;
  margin-bottom: 8px;
  position: relative;
}
.accordion .label {
  font-family: argent-cf, serif;
  font-weight: 300;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.accordion .label svg {
  margin-top: 5px;
}
.accordion .label .status {
  position: absolute;
  top: 13px;
  left: 10px;
}
.accordion .label .planned svg circle {
  fill: #F2A900;
}
.accordion .label .unplanned svg circle {
  fill: #d22630;
}
.accordion .label .done svg circle {
  fill: #2ABA3F;
}
.accordion .content {
  font-family: lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 12px;
  margin-right: 10px;
}
.accordion .content .contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.accordion .content .contact span {
  margin-bottom: 5px;
}

.js-accordion {
  cursor: pointer;
}
.js-accordion .js-label svg {
  transition: 0.4s;
}
.js-accordion .js-content {
  display: none;
}
.js-accordion.active .js-content {
  display: block;
}
.js-accordion.active svg {
  transform: rotate(180deg);
}
