* {
  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;
}

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

.head {
  background-color: rgba(79, 72, 62, 0.3);
  position: fixed;
  top: 0;
  width: 100vw;
  transition: all ease-in-out 1s;
}

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

.nav {
  display: none;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  background-color: rgba(79, 72, 62, 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: #d5d27e;
  -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: #c8c558;
  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: #98a5e3;
  -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: #4f483e;
  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;
}
footer .footer-top .footer-right {
  display: flex;
  flex-direction: column;
  align-items: 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: #4f483e;
}
.faq-container .faq-header {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.faq-container .faq-header h2 {
  color: #4f483e;
  font-size: 2.4em;
}
.faq-container .faq-header h3 {
  color: #e3e0dc;
  font-weight: bold;
  font-size: 1.5em;
}
.faq-container .faq-content h2, .faq-container .faq-content h3, .faq-container .faq-content h4 {
  color: #4f483e;
}
.faq-container .faq-content h2 {
  padding-block: 1em;
}
.faq-container .faq-content .faq {
  display: flex;
  flex-direction: column;
  border-top: #e3e0dc 1px solid;
  border-bottom: #e3e0dc 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: #887c6b;
}

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

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: #4f483e;
  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;
  }
}
@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);
  }
}
@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;
  }
  .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: repeat(3, 1fr);
  }
  footer .footer-top > div {
    align-items: flex-start;
  }
  .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;
  }
}
@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;
  }
  .faces-container .faces {
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .faces-container .faces .card .card-image img {
    width: 70%;
  }
  footer .footer-top {
    max-width: 1200px;
  }
  .faq-container {
    max-width: 1200px;
    margin-inline: auto;
  }
}
@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);
  }
}