* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Saira", sans-serif;
  letter-spacing: 1px;
}

p {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

a {
  font-family: "Saira", sans-serif;
  text-decoration: none;
  color: #000000;
}

a:visited {
  color: #000;
}

section {
  width: 100%;
  margin: 0 auto;
}

header {
  width: 100%;
}

nav {
  position: relative;
  z-index: 9;
  width: 100%;
  background-color: #ffffff !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
  -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.16);
}

nav .nav__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav__left .nav__left--logo {
  width: 116px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 100px 0 15px;
}

nav .nav__left .nav__left--link {
  font-family: "Saira", sans-serif;
  font-size: 1.3rem;
  color: #000;
  padding: 0 45px;
}

nav .nav__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
}

nav .nav__right .nav__right__button--green {
    height: 41px !important;
    padding: 0 15px;
    line-height: 27px;
  color: #3E9B2E;
  border: 1px solid #3E9B2E;
  border-radius: 5px;
  padding: 7px 15px;
  margin: 0 10px;
}

nav .nav__right .nav__right__button--black {
    height: 41px !important;
    padding: 0 15px;
    line-height: 27px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 7px 15px;
  margin: 0 10px;
}

nav .nav__right .nav__right__menu {
  display: none;
}

nav .menu {
    overflow: hidden;
  width: 0;
  display: none;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 540px;
  position: relative;
}

.hero_kalk {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 740px;
  position: relative;
}

.hero__textbox {
  position: relative;
  z-index: 8;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
}

.hero__img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 509px;
  margin-top: 0px;
  top:0;
}

.hero__img--kalk {
    position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 740px;
  margin-top: 0px;
  top:0;

}

.hero__title {
  font-size: 3rem;
  margin: 0 0 5px 0;
}

.hero__title.kalk {
  color: #fff;
}

.hero__textfield {
    margin:auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.field-container {
  position: relative;
  border-radius: 15px;
  background-color: #ffffff;
  height: 60px;
  width: 320px;
  padding-left: 12px;
  margin: 0 15px;
}

.field-placeholder {
  position: absolute;
  font-family: "Saira", sans-serif;
  top: 50%;
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
  pointer-events: none;
  -webkit-transition: all .14s ease-in-out;
  transition: all .14s ease-in-out;
  font-size: 1.3rem;
  color: #000;
}

input[type="text"].field-input {
  color: #000;
  border: none;
  padding: 5px;
  margin-top: 25px;
  font-size: 1.3rem;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  bottom: 0px;
  border-radius: 15px;
}

input[type="text"].field-input:focus {
  outline: none;
}

input[type="text"].field-input.c-fix, input[type="text"].field-input:focus, input[type="text"].field-input:not(:placeholder-shown) {
  border-color: transparent;
}

input[type="text"].field-input.c-fix ~ label, input[type="text"].field-input:focus ~ label, input[type="text"].field-input:not(:placeholder-shown) ~ label {
  color: #646669;
  font-size: 0.9rem;
  top: calc(26% - .5rem);
  -webkit-transform: translate(5px, 0%);
          transform: translate(5px, 0%);
}

input[type="text"].field-input::-webkit-input-placeholder {
  color: transparent;
}

input[type="text"].field-input::-moz-placeholder {
  color: transparent;
}

input[type="text"].field-input:-ms-input-placeholder {
  color: transparent;
}

.hero__textfield--submit {
-webkit-appearance:none;
padding: 0;
  background-color: #3E9B2E;
  width: 80px;
  height: 80px;
  color: #ffffff;
  font-family: "Saira", sans-serif;
  font-size: 1.1rem;
  border-radius: 80px;
  border: none;
  margin: 25px 0;
  -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.hero__textfield--submit:hover {
  background-color: #65c155;
  cursor: pointer;
}

.destinations {
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 1400px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 600px;
}

.destinations .destination__card {
  width: 100%;
  margin: 0 15px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.destinations .destination__card:hover {
  margin-bottom: 45px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.26);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.26);
}

.destinations .destination__card .card__img {
  width: 100%;
  height: 311px;
  -o-object-fit: cover;
     object-fit: cover;
}

.destinations .destination__card .card__textbox {
  padding: 15px;
}

.destinations .destination__card .card__textbox .card__title {
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-top: 5px;
}

.destinations .destination__card .card__textbox .card__location {
  font-size: 1rem;
  color: #7E8EAA;
  line-height: 14px;
}

.destinations .destination__card .card__textbox .card__date {
  font-size: 1.2rem;
  color: rgba(21, 28, 42, 0.65);
  margin: 25px 0 20px 0;
}

.destinations .destination__card .card__textbox .card__date .icon {
  color: #F2552D;
  margin: 0 5px;
}

.destinations .destination__card .card__divider {
  border-top: 1px solid #D8D8D8;
  height: 1px;
  width: 100%;
}

.destinations .destination__card .card__lower-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 15px;
}

.destinations .destination__card .card__lower-row .card__price {
  font-size: 1rem;
  color: #7E8EAA;
  line-height: 14px;
  margin: 0;
}

.destinations .destination__card .card__lower-row .icon {
  color: #F2552D;
  font-size: 1.4rem;
}

#img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 80px auto;
  max-width: 1400px;
}

#img-text .imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 50%;
  height: 215px;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#img-text .imgbox:first-child {
  margin-right: 10px;
}

#img-text .imgbox:last-child {
  margin-left: 10px;
}

#img-text .imgbox a {
  width: 100%;
  height: 215px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#img-text .imgbox a:hover .imgbox__title {
  text-shadow: 3px 5px 5px rgba(71, 71, 71, 0.47);
}

#img-text .imgbox a:hover .imgbox__img-shadow {
  opacity: 0.2;
}

#img-text .imgbox a .imgbox__title {
  color: #ffffff;
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#img-text .imgbox a .imgbox__img-shadow {
  background-color: #000;
  opacity: 0.4;
  -webkit-transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: absolute;
  top: 0;
  width: 100%;
  height: 250px;
  z-index: 2;
}

#img-text .imgbox a .imgbox__img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
  top: 0;
}

.vip {
  margin: 80px 0;
  width: 100%;
  max-width: 1920px;
  height: 463px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.vip .vip__textbox {
  position: relative;
  z-index: 5;
  text-align: center;
}

.vip .vip__textbox .vip__title {
  color: #ffffff;
  font-size: 3.3rem;
  margin: 20px 0;
  text-shadow: 3px 5px 5px rgba(71, 71, 71, 0.47);
}

.vip .vip__textbox .vip__ingress {
    max-width: 990px;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 3px 5px 5px rgba(71, 71, 71, 0.47);
}

.vip .vip__textbox .vip__button {
  background-color: #F2552D;
  color: #ffffff;
  padding: 15px 13px;
  border-radius: 5px;
  font-size: 1.4rem;
  -webkit-box-shadow: 3px 5px 5px rgba(71, 71, 71, 0.47);
          box-shadow: 3px 5px 5px rgba(71, 71, 71, 0.47);
  -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.vip .vip__textbox .vip__button:hover {
  background-color: #ff734f;
}

.vip .vip__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 465px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 1400px;
  margin: 80px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__paragraph ul {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding-left: 20px;
}

.about .about__img {
  width: 100%;
  max-width: 633px;
  height: 565px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about .about__textbox {
  padding: 20px 0 20px 60px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about .about__textbox .about__title {
  font-size: 2.1rem;
  margin: 0 0 30px 0;
}

.about .about__textbox .about__paragraph {
  width: 100%;
  max-width: 680;
  line-height: 30px;
  font-size: 1.3rem;
  margin: 0 0 20px 0;
}

.about .about__textbox .about__button {
  background-color: #F2552D;
  color: #ffffff;
  padding: 15px 13px;
  border-radius: 5px;
  font-size: 1.4rem;
  -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.about .about__textbox .about__button:hover {
  background-color: #ff734f;
}

.bus__cards {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 80px auto;
  height: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bus__cards .bus__card {
  margin: 0 15px;
  width: 450px;
  height: 426px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.bus__cards .bus__card:hover {
  margin-bottom: 45px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.26);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.26);
}

.bus__cards .bus__card:first-child {
  margin-left: 0;
}

.bus__cards .bus__card:last-child {
  margin-right: 0;
}

.bus__cards .bus__card a .bus__img {
  width: 100%;
  height: 311px;
  -o-object-fit: cover;
     object-fit: cover;
}

.bus__cards .bus__card a .bus__textbox {
  padding: 10px;
}

.bus__cards .bus__card a .bus__textbox .bus__title {
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.bus__cards .bus__card a .bus__textbox .bus__paragraph--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bus__cards .bus__card a .bus__textbox .bus__paragraph--row .bus__paragraph {
  font-size: 1rem;
  width: 90%;
  color: rgba(21, 28, 42, 0.65);
}

.bus__cards .bus__card a .bus__textbox .bus__paragraph--row .bus__icon {
  color: #F2552D;
  font-size: 1.3rem;
  padding-right: 10px;
}

.footer__top-img {
  width: 100%;
  background: url(assets/jensen_footer.png);
  background: url(assets/jensen_footer.svg), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background: url(assets/jensen_footer.svg), linear-gradient(transparent, transparent);
  height: 15vw;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: -10px;
  margin-top: 80px;
}

footer {
  width: 100%;
  background-color: #45A526;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .footer__textbox {
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 500px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .footer__textbox .footer__textbox--left {
  max-width: 540px;
}

footer .footer__textbox .footer__textbox--left .footer__logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .footer__textbox .footer__textbox--left .footer__paragraph {
  margin: 120px 0 0 0;
  font-size: 1.1rem;
  padding-right: 30px;
}

footer .footer__textbox .footer__textbox--right {
  width: 55%;
}

footer .footer__textbox .footer__textbox--right .footer__right-title {
  font-size: 1.4rem;
  font-weight: 100;
  margin-top: 0;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  padding: 30px 0;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon:nth-child(even) {
  padding-left: 45px;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .icon {
  font-size: 2rem;
  padding: 0 40px 0px 0;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .footer__icon__textbox .footer__icon__label {
  font-size: 1rem;
  font-family: "Saira", sans-serif;
}

footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .footer__icon__textbox .footer__icon__paragraph {
  font-family: "Saira", sans-serif;
  color: #fff;
  font-size: 1.2rem;
}

@media only screen and (max-width: 1400px) {
  .destinations {
    max-width: 1180px;
  }
  .destinations .destination__card {
    width: 373px;
  }
  .destinations .destination__card:first-child {
    margin-left: 0;
  }
  .destinations .destination__card:last-child {
    margin-right: 0;
  }
  .destinations .destination__card .card__img {
    width: 373px;
    height: 270px;
  }
  #img-text {
    max-width: 1180px;
  }
  #img-text .imgbox {
    width: 50%;
    margin: 0 auto;
  }
  #img-text .imgbox a .imgbox__title {
    color: #ffffff;
    font-size: 2.8rem;
  }
  .vip .vip__textbox .vip__ingress {
      max-width: 990px;
    font-size: 1.5rem;
    margin-bottom: 45px;
  }
  .about {
    max-width: 1180px;
  }
  .about .about__img {
    max-width: 553px;
    height: 545px;
  }
  .about .about__textbox {
    padding: 20px 0 20px 60px;
  }
  .about .about__textbox .about__title {
    margin-bottom: 20px;
  }
  .about .about__textbox .about__paragraph {
    font-size: 1rem;
    width: 520px;
  }
  .bus__cards {
    max-width: 1180px;
  }
  .bus__cards .bus__card {
    width: 400px;
  }
}

@media only screen and (max-width: 1024px) {
  nav .nav__left .nav__left--logo {
    margin-right: 20px;
  }
  nav .nav__left .nav__left--link {
    padding: 0 20px;
  }
  nav .nav__right {
    padding-left: 20px;
  }
  .destinations {
    margin: 80px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .destinations .destination__card {
    margin: 20px;
    width: 450px;
  }
  .destinations .destination__card:first-child {
    margin-left: 20px;
  }
  .destinations .destination__card .card__img {
    width: 450px;
    height: 270px;
  }
  #img-text {
    margin: 40px 0;
  }
  #img-text .imgbox {
    margin: 0 20px;
  }
  .vip .vip__textbox .vip__ingress {
    font-size: 1.3rem;
  }
  .about {
    margin: 80px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about .about__img {
    max-width: 453px;
    height: 645px;
  }
  .about .about__textbox {
    padding: 20px 0 20px 40px;
    height: 645px;
  }
  .about .about__textbox .about__title {
    margin-bottom: 20px;
  }
  .about .about__textbox .about__paragraph {
    font-size: 1rem;
    max-width: 450px;
  }
  .bus__cards {
    margin: 40px 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .bus__cards .bus__card {
    width: 463px;
    height: auto;
    margin: 20px;
  }
  .bus__cards .bus__card:first-child {
    margin-left: 20px;
  }
  footer .footer__textbox {
    height: auto;
    padding: 40px 20px;
  }
  footer .footer__textbox .footer__textbox--left {
    width: 30%;
  }
  footer .footer__textbox .footer__textbox--left .footer__paragraph {
    margin: 40px 0 0 0;
    font-size: 0.9rem;
    padding-right: 10px;
  }
  footer .footer__textbox .footer__textbox--right {
    width: 64%;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon:nth-child(even) {
    padding-left: 25px;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .icon {
    font-size: 1.8rem;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .footer__icon__textbox .footer__icon__label {
    font-size: 0.8rem;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon .footer__icon__textbox .footer__icon__paragraph {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 768px) {
  nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
  }
  nav .nav__left .nav__left--logo {
    margin-right: 20px;
  }
  nav .nav__left .nav__left--link {
    display: none;
  }
  nav .nav__right {
    padding-left: 20px;
  }
  nav .nav__right .nav__right__menu {
    display: block;
    padding: 5px 0 0 20px;
  }
  nav .nav__right .nav__right__menu .menu__icon {
    font-size: 1.7rem;
    color: #3E9B2E;
  }
  nav .menu {
      overflow: hidden;
    display: block;
    height: 100vh;
    background-color: #3E9B2E;
    padding: 0;
    position: absolute;
    z-index: 999;
    top: 70px;
    right: 0;
    -webkit-transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  nav .menu .menu-container {
    padding: 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav .menu .menu-container .menu__link {
    font-family: "Saira", sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    padding: 15px 0;
    margin: 0 10px;
  }
  nav .menu .menu-container .menu__link--mobile {
    display: none;
  }
  .hero .hero__textbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero .hero__textbox .hero__textfield .field-container {
    margin: 15px 0;
    width: 85%;
  }
  .destinations {
    margin: 80px 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .destinations .destination__card {
    margin: 25px auto;
  }
  .destinations .destination__card:first-child {
    margin-left: auto;
  }
  .destinations .destination__card:last-child {
    margin-right: auto;
  }
  #img-text {
    margin: 40px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #img-text .imgbox {
    width: 100%;
  }
  #img-text .imgbox:first-child {
    margin: 20px;
  }
  #img-text .imgbox:last-child {
    margin: 20px;
  }
  .vip .vip__textbox .vip__title {
    font-size: 2.5rem;
  }
  .vip .vip__textbox .vip__ingress {
    font-size: 1rem;
  }
  .vip .vip__textbox .vip__button {
    font-size: 1rem;
  }
  .about {
    margin: 0;
    padding: 80px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
  .about .about__img {
    max-width: 760px;
    height: 345px;
  }
  .about .about__textbox {
    padding: 0;
    height: auto;
    width: 100%;
  }
  .about .about__textbox .about__title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about .about__textbox .about__paragraph {
    font-size: 1rem;
    max-width: 760px;
    width: 100%;
  }
  .about .about__textbox .about__button {
    font-size: 1rem;
  }
  .bus__cards {
    margin: 40px 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  .bus__cards .bus__card {
    width: 463px;
    height: auto;
    margin: 20px;
  }
  .bus__cards .bus__card:first-child {
    margin-left: 20px;
  }
  footer .footer__textbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer__textbox .footer__textbox--left {
    width: 100%;
  }
  footer .footer__textbox .footer__textbox--right {
    width: 100%;
    padding-top: 40px;
  }
  footer .footer__textbox .footer__textbox--right .footer__right-title {
    font-size: 1.4rem;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon {
    width: 100%;
  }
  footer .footer__textbox .footer__textbox--right .footer__icongroup .footer__icon:nth-child(even) {
    padding-left: 0;
  }
}

@media only screen and (max-width: 450px) {
  nav .nav__right .nav__right__button--green {
    font-size: 0.8rem;
  }
  nav .nav__right .nav__right__button--black {
    display: none;
  }
  .hero .hero__textbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero .hero__textbox .hero__title {
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
  }
  .hero .hero__textbox .hero__textfield {
    width: 100%;
  }
  .hero .hero__img {
    height: 560px;
  }
  .destinations {
    margin: 0;
    padding: 80px 20px 40px 20px;
  }
  .destinations .destination__card {
    width: 100%;
  }
  .destinations .destination__card .card__img {
    width: 100%;
  }
  .destinations .destination__card .card__textbox .card__date {
    font-size: 1rem;
  }
  .destinations .destination__card .card__lower-row {
    padding: 20px;
  }
  #img-text {
    margin: 40px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #img-text .imgbox a .imgbox__title {
    font-size: 2rem;
  }
  .vip {
    margin-bottom: 0;
  }
  .vip .vip__textbox .vip__ingress {
    font-size: 1rem;
    padding: 0 20px;
  }
}

a.flexlink{display:flex;}
/*# sourceMappingURL=style.css.map */
