#hamburger_checkbox {
  position: fixed;
  top: -100%;
  left: -100%;
}

label.hamburger {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  margin: 0;
  font-size: 25px;
  display: none;
}
.only-on-mobile {
  display: none;
}
.hamburger-close {
  padding: 20px;
  font-size: 30px;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 990px) {
  .cta button {
    position: unset !important;
    top: unset;
    transform: unset;
    right: unset;
    width: 100%;
  }

  .location-swiper {
    margin-left: 72px;
  }
  label.hamburger {
    display: flex;
  }

  .only-on-mobile {
    display: unset;
  }
  nav {
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;  
    transition: all 0.2s;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul li {
    margin: 5px 0;
    width: 100%;
  }
  .nav-before {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  #hamburger_checkbox:checked ~ nav {
    width: unset;
    overflow: unset;
    height: unset;
    padding: 30px 50px;
  }
  #hamburger_checkbox:checked ~ .nav-before {
    display: block;
  }
}

@media screen and (max-width: 770px) {
  .location-swiper {
    margin-left: unset;
  }

  .reverse-small .row {
    flex-direction: column-reverse;
  }

  .image-holder::after {
    top: -10px;
    left: -10px;
    bottom: unset;
    right: unset;
  }
}

@media screen and (max-width: 640px) {
  .team {
    width: 60%;
    margin: 0px auto 50px;
  }

  .team-image {
    height: 250px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  header {
    position: relative;
  }

  .page-content {
    padding-top: 0;
  }

  header .nav {
    justify-content: space-between;
    /* flex-direction: column; */
  }

  nav {
    /* margin-top: 15px; */
    justify-content: space-between;
    width: 100%;
  }

  nav ul {
    width: 100%;
    justify-content: space-between;
  }

  .section-header-title h3 {
    font-size: 35px;
  }

  .section-title h3 {
    font-size: 35px;
  }

  .section-title.mr-5 {
    margin-right: 0 !important;
  }

  .section {
    padding: 60px 10px !important;
  }

  section {
    text-align: justify;
  }

  .image-holder {
    margin-bottom: 20px;
    height: 350px;
  }
  .page-banner {
    padding: 80px 0;
  }
}
