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

.appear:first-child, .appear:nth-child(odd) {
  animation: fromLeft 2s;
  opacity: 1;
}

.appear2:first-child {
  animation: fromBelow 2s;
  opacity: 1;
}

.appear:last-child, .appear:nth-child(even) {
  animation: fromRight 2s;
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: opacity 1s ease-in;
}

@keyframes fromLeft {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromRight {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromBelow {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: translateY(-200px);
    opacity: 1;
  }
}
h3.location::before {
  content: url("../img/icons/location-lt.png");
}

ul.foot li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

li.tel::before {
  content: url("../img/icons/telephone-lt.png");
  padding-right: 1em;
}

li.email::before {
  content: url("../img/icons/email-lt.png");
  padding-right: 1em;
}

li.gallery::before {
  content: url("../img/icons/gallery-lt.png");
  padding-right: 1em;
}

li.access::before {
  content: url("../img/icons/access-lt.png");
  padding-right: 1em;
}

ul.main li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

li.tel-dk::before {
  content: url("../img/icons/telephone-dk.png");
  padding-right: 1em;
}

li.email-dk::before {
  content: url("../img/icons/email-dk.png");
  padding-right: 1em;
}

ul.about-dd {
  position: absolute;
  top: 110px;
  background: rgba(23, 30, 49, 0.3);
  padding: 1em;
  opacity: 0;
  left: 420px;
}
ul.about-dd li {
  list-style-type: none;
  line-height: 2em;
}

ul.about-dd .open {
  opacity: 1;
}

body {
  height: 100%;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #171e31;
  padding: 1em;
  gap: 2em;
  z-index: 10;
}
header .logo {
  display: flex;
}
header .logo img {
  width: 120px;
}

.head {
  background-color: rgba(23, 30, 49, 0.3);
  position: fixed;
  top: 0;
  width: 100vw;
  transition: all ease-in-out 1s;
  overflow: hidden;
}

.head-alt {
  background-color: #171e31;
  position: fixed;
  width: 100vw;
  top: 0;
  transition: all ease-in-out 1s;
  overflow: visible;
}

.nav {
  display: none;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 30, 49, 0.95);
  flex-direction: column;
  gap: 2em;
  opacity: 0;
  transition: all 2s ease-in;
}
.nav img {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 64px;
}
.nav img:hover {
  cursor: pointer;
}
.nav ul {
  display: flex;
  flex-direction: column;
}
.nav ul li {
  list-style-type: none;
  font-size: 1.6em;
  line-height: 2.4em;
  text-align: center;
}

.nav.open {
  display: flex;
  opacity: 1;
  left: 0;
  transition: all ease-in-out 2.5s;
}
.nav.open:hover {
  cursor: pointer;
}

.navi.desk {
  display: none;
}

.welcome {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2em;
  width: 100vw;
  height: 56.25vw;
  z-index: 1;
}
.welcome h1.welcome-title {
  color: rgba(255, 255, 255, 0.6);
}
.welcome h3.welcome-title {
  color: rgba(255, 255, 255, 0.6);
  line-height: 2em;
}

.video-welcome {
  width: 100vw;
  height: 56.25vw;
  z-index: -1;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100vw;
  padding: 2em;
  justify-content: center;
  align-items: center;
}
main .camp-type {
  width: 80vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4em;
  justify-content: center;
}
main .camp-type .card {
  background-color: #cb9a7b;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
main .camp-type .card .card-title {
  text-transform: uppercase;
  padding: 1em;
}
main .camp-type .card .card-image img {
  width: 100%;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
main .camp-type .card .card-content {
  padding: 1em;
}
main .camp-type .card .card-content p {
  line-height: 2em;
}

.faces-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100vw;
  padding: 2em;
  justify-content: center;
  align-items: center;
}
.faces-container .faces {
  width: 80vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4em;
  justify-content: center;
}
.faces-container .faces .card {
  background-color: #bd7e56;
  padding: 2em;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.faces-container .faces .card .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
}
.faces-container .faces .card .card-image img {
  width: 50vw;
}

.things-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 3em;
}
.things-container .todo {
  width: 80vw;
  gap: 2em;
  display: grid;
  grid-template-columns: 1fr;
}
.things-container .todo .card {
  background-color: #00b300;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.things-container .todo .card .card-image img {
  width: 100%;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.things-container .todo .card .card-title {
  padding: 0.6em 1em;
}
.things-container .todo .card .card-content {
  padding: 0.4em 1em;
}

footer {
  background-color: #171e31;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2em;
  padding: 2em;
  justify-content: center;
  align-items: center;
}
footer h3 {
  line-height: 2em;
  font-weight: bold;
}
footer ul li {
  list-style-type: none;
  line-height: 1.6em;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
footer .footer-top .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-top .footer-left img {
  width: 200px;
}
footer .footer-top .footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
footer .footer-top .footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  align-items: center;
}
footer .footer-bottom .social {
  display: flex;
  justify-content: center;
  gap: 2em;
}
footer .footer-bottom .social img {
  height: 30px;
}
footer .footer-bottom .logo {
  display: flex;
  justify-content: center;
}
footer .footer-bottom .logo img {
  width: 200px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  padding: 3em;
  margin-top: 100px;
  background-color: #FFFFFF;
  color: #171e31;
}
.faq-container .faq-header {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.faq-container .faq-header h2 {
  color: #171e31;
  font-size: 2.4em;
}
.faq-container .faq-header h3 {
  color: #a5b2d5;
  font-weight: bold;
  font-size: 1.5em;
}
.faq-container .faq-content h2, .faq-container .faq-content h3, .faq-container .faq-content h4 {
  color: #171e31;
}
.faq-container .faq-content h2 {
  padding-block: 1em;
}
.faq-container .faq-content .faq {
  display: flex;
  flex-direction: column;
  border-top: #a5b2d5 1px solid;
  border-bottom: #a5b2d5 1px solid;
  padding-block: 1em;
}
.faq-container .faq-content .faq h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-container .faq-content .faq h3::after {
  content: url("../img/plus.png");
}
.faq-container .faq-content .faq h3.open::after {
  content: url("../img/minus.png");
}
.faq-container .faq-content h4 {
  opacity: 0;
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 0em;
  transition: all 0.6s ease-in-out;
}
.faq-container .faq-content h4.open {
  opacity: 1;
  padding: 1em;
  height: 100%;
  color: #384976;
}

.google-map {
  margin-top: 110px;
}

.gallery-title {
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 2em;
}
.gallery-title h2 {
  color: #171e31;
}
.gallery-title p {
  line-height: 2em;
}

.gallery-main {
  display: grid;
  grid-template-column: 1fr;
  gap: 1em;
  justify-content: center;
  padding: 2em;
}
.gallery-main .gallery-image {
  display: flex;
  box-shadow: #171e31 2px 2px 10px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.gallery-main .gallery-image img {
  width: 100%;
}
.gallery-main .gallery-image img:hover {
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  top: -110%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  height: 0;
  transform: all 2s ease-in-out;
}
.gallery-overlay .gallery-hero {
  display: flex;
  justify-content: center;
  padding: 2em;
}
.gallery-overlay .gallery-hero img {
  width: 100%;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}

.gallery-thumbs {
  padding: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}
.gallery-thumbs .gallery-thumb {
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.gallery-thumbs .gallery-thumb img {
  width: 100%;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.gallery-thumbs .gallery-thumb img:hover {
  cursor: pointer;
}

.gallery-overlay.open {
  opacity: 1;
  top: 0;
  min-height: 100vh;
}

#gallery-close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  cursor: pointer;
}

.tourers-hero {
  background-image: url("../img/tourers-bg.webp");
  height: 50vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 4em;
}
.tourers-hero h2 {
  font-size: 4em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
}

.tourers-welcome {
  background-color: #e8d2c4;
  display: flex;
  flex-direction: column;
  padding: 2em;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.tourers-welcome .tourer-title {
  display: flex;
}
.tourers-welcome .tourer-title h2 {
  color: #171e31;
}
.tourers-welcome .tourer-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
.tourers-welcome .tourer-inc {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}
.tourers-welcome .tourer-inc h3 {
  font-size: 0.8em;
  color: #171e31;
}
.tourers-welcome .tourer-footer h3 {
  color: #171e31;
  line-height: 2em;
}

.content-container {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
}
.content-container aside#touring {
  position: sticky;
  align-self: flex-start;
  top: 100px;
}
.content-container aside#touring .service {
  padding: 2em;
  display: flex;
  align-items: center;
}
.content-container aside#touring .service .service-text {
  padding-left: 1em;
}
.content-container aside#touring .service h2, .content-container aside#touring .service h3 {
  display: flex;
  flex-direction: column;
  color: #171e31;
}

.tourers-detail {
  background-color: #171e31;
  background-image: url(../img/motorhome-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  gap: 2em;
  width: 100%;
  padding: 2em;
}
.tourers-detail > div {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2em;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.tourers-detail > div h3 {
  color: #171e31;
}

.reviews {
  display: flex;
  flex-direction: column;
}
.reviews .review-title {
  background-color: #171e31;
  padding: 2em;
}
.reviews .google-reviews {
  display: grid;
  grid-template-columns: 1fr;
  padding: 3em;
  gap: 2em;
}
.reviews .google-reviews .g-review {
  display: flex;
  flex-direction: column;
  background-color: #171e31;
  color: #c48c68;
  padding: 2em;
  gap: 0.6em;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  box-shadow: 1px 10px 20px 2px #171e31;
}
.reviews .google-reviews .g-review .reviewer {
  display: flex;
  gap: 1em;
  align-items: center;
}
.reviews .google-reviews .g-review .reviewer img {
  width: 60px;
}

p, a {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5em;
}

h1, h2, h3, h4, h5, li {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #FFFFF0;
}

a {
  text-decoration: none;
  color: #FFFFF0;
}
a:hover {
  color: #999;
}

h2.title {
  color: #171e31;
  font-weight: bold;
  font-size: 3em;
}

p.sub-title {
  width: 60vw;
}

@media screen and (min-width: 600px) {
  .faces-container .faces {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
  .faces-container .faces .card {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1em;
  }
  .faces-container .faces .card .card-image img {
    width: 50%;
  }
  .faces-container .faces .card .card-title {
    font-size: 0.75em;
  }
  .gallery-main {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 900px) {
  main {
    background-image: url("../img/relax.svg");
    background-repeat: no-repeat;
    background-size: 50vw;
    background-position-x: 50%;
    background-position-y: 20%;
  }
  main .camp-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
  .things-container .todo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-main {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }
  .tourers-welcome .tourer-title h2 {
    font-weight: bold;
    font-size: 3em;
    padding-top: 1em;
  }
  .tourers-welcome .tourer-detail {
    grid-template-columns: repeat(6, 1fr);
    padding-block: 2em;
  }
  .tourers-welcome .tourer-detail .tourer-inc {
    text-align: center;
  }
  .tourers-welcome .tourer-footer {
    max-width: 80vw;
  }
  .tourers-welcome .tourer-footer h3 {
    font-size: 1.5em;
  }
  .reviews .google-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .welcome {
    justify-content: center;
  }
  .welcome h3.welcome-title {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.6);
  }
  .welcome h1.welcome-title {
    line-height: 2em;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3em;
  }
  header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    justify-content: space-around;
    gap: 2em;
    align-items: center;
    padding-inline: 2em;
  }
  header .logo img {
    width: 120px;
  }
  header nav.mob {
    display: none;
  }
  header .navi.desk {
    display: flex;
    align-items: space-around;
    opacity: 1;
  }
  header .navi.desk ul {
    display: flex;
    justify-contents: flex-end;
    gap: 3em;
    align-items: flex-end;
  }
  header .navi.desk ul li {
    display: flex;
    align-items: flex-end;
    text-align: center;
    font-size: 0.9em;
  }
  .content-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .faces-container .faces {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .faces-container .faces .card .card-image img {
    width: 70%;
  }
  footer .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    width: 80vw;
    margin-inline: auto;
    border-bottom: #e8d2c4 solid 2px;
  }
  footer .footer-top .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  footer .footer-top .footer-left img {
    width: 200px;
  }
  footer .footer-top .footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .footer-top .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-content: center;
  }
  footer .footer-top .footer-right ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
  }
  .faq-container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2em;
  }
  .faq-container .faq-header h2 {
    font-size: 3em;
    line-height: 2em;
  }
  .faq-container .faq-header h3 {
    font-size: 1.2em;
  }
  .faq-container .faq-content {
    padding: 2em;
  }
  .gallery-title h2 {
    font-size: 3em;
  }
  .gallery-title p {
    font-size: 1.2em;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1260px) {
  .gallery-main {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-thumbs {
    grid-template-columns: repeat(8, 1fr);
  }
  .reviews .google-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    justify-self: center;
  }
  .welcome {
    justify-content: center;
  }
  .welcome h3.welcome-title {
    font-size: 3em;
    color: rgba(255, 255, 255, 0.6);
  }
  .welcome h1.welcome-title {
    line-height: 2em;
    color: rgba(255, 255, 255, 0.6);
    font-size: 6em;
    font-weight: bold;
  }
  main .camp-type {
    width: 1200px;
  }
  p.sub-title {
    width: 75vw;
    line-height: 2.6em;
    font-size: 1.6em;
  }
  .content-container {
    max-width: 1400px;
    justify-self: center;
    align-self: center;
    margin-inline: auto;
  }
  .faces-container .faces {
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .faces-container .faces .card .card-image img {
    width: 70%;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  footer .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    width: 80vw;
  }
  .faq-container {
    width: 1200px;
    margin-inline: auto;
  }
  .gallery-main {
    margin-inline: auto;
    max-width: 1500px;
    gap: 2em;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(10, 1fr);
    padding-inline: 4em;
  }
}
@media screen and (min-width: 2000px) {
  header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-self: center;
  }
  main .camp-type {
    width: 1600px;
  }
  .faces-container .faces {
    width: 1600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .faces-container .faces .card .card-image img {
    width: 70%;
  }
  .things-container .todo {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}