@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fullheight {
  height: calc(var(--vh, 1vh) * 100);
}

.hero {
  min-height: 100vh;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to right, rgba(55, 64, 110, 0.4), rgba(236, 118, 90, 0.3)), url("../img/hero-bg.jpg") center top;
  background-size: cover;
  position: relative;
}
.hero .mobile-only {
  display: none;
}
.hero .hero-title {
  padding-right: 2rem;
  display: block;
  width: 100%;
}
.hero .hero-title h1 {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #fff;
}
.hero .hero-title .name-text {
  color: #fff;
}
.hero .hero-title .award-sticker-mobile {
  display: none;
}
.hero .award-sticker img {
  height: 250px;
  opacity: 0.8;
  border-radius: 10%;
}
.hero .bottom-banner {
  background-color: #fff;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 90%;
}
.hero .bottom-banner .info-container {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
}
.hero .bottom-banner .info-container .info {
  font-weight: 700;
  color: #37406e;
}
.hero .bottom-banner .info-container .info i {
  color: #37406e;
  padding-left: 10px;
}
.hero .bottom-banner .info-container .info-btn {
  padding: 0.5rem;
  color: #EC765A;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.hero .bottom-banner .info-container .info-btn:hover {
  transform: scale(1.2);
  color: #37406e;
}

@media screen and (max-width: 768px) {
  .hero .hero-title {
    padding: 0;
  }
  .hero .hero-title h1 {
    font-size: 35px !important;
  }
  .hero .bottom-banner .info-container .info, .hero .bottom-banner .info-container .info-btn {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .hero .hero-title .hero-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .hero .hero-title .award-sticker-mobile {
    display: block !important;
    padding-top: 1rem;
  }
  .hero .hero-title .award-sticker-mobile img {
    width: 200px !important;
    opacity: 0.8;
    border-radius: 10%;
  }
  .hero .award-sticker {
    display: none;
  }
  .hero .bottom-banner {
    padding: 1rem;
  }
  .hero .bottom-banner .info-container {
    display: block;
  }
  .hero .bottom-banner .info-container .info {
    padding: 0.5rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .hero .hero-title h1 {
    font-size: 25px !important;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-title h1 {
    font-size: 25px !important;
  }
}
.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  width: 100vw;
  padding: 0 5vw;
  color: #fff;
  z-index: 3;
  transition: 0.4s ease-out;
}
.main-header .logo {
  display: flex;
  color: #fff;
  font-size: 18px;
  align-items: center;
}
.main-header .logo a {
  display: flex;
  align-items: center;
}
.main-header .logo img {
  width: 40px;
}
.main-header a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.main-header .nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.main-header .nav-links .active {
  color: #37406e;
  font-weight: 600;
}
.main-header .nav-links .nav-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-header .nav-links .nav-link:nth-of-type(2) {
  transition-delay: 0.8s;
}
.main-header .nav-links .nav-link:nth-of-type(3) {
  transition-delay: 0.9s;
}
.main-header .nav-links .nav-link:nth-of-type(4) {
  transition-delay: 1s;
}
.main-header .nav-links .nav-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header .nav-links .nav-link a:hover {
  color: #37406e;
  border-bottom: 3px solid #37406e;
}
.main-header .nav-links .nav-link2 {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-header .nav-links .nav-link2:nth-of-type(2) {
  transition-delay: 0.8s;
}
.main-header .nav-links .nav-link2:nth-of-type(3) {
  transition-delay: 0.9s;
}
.main-header .nav-links .nav-link2:nth-of-type(4) {
  transition-delay: 1s;
}
.main-header .nav-links .nav-link2 a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #EC765A;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #EC765A;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  position: absolute;
  top: -100px;
}
.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::before {
  transform: translateY(-7px);
}
.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::after {
  transform: translateY(7px);
}
.main-header.scrolled {
  height: 60px;
  background-color: #EC765A;
  color: #fff;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: #37406e;
}

@-webkit-keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@-webkit-keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@-webkit-keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@-webkit-keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.animations-disabled, .animations-disabled [data-animation] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.fadeOut {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomOut {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.zoomReverseOut {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}

#footer {
  width: 100vw;
  padding: 1rem 0;
  background-color: #EC765A;
  margin-top: 2rem;
}
#footer .container {
  max-width: 1170px;
  margin: auto;
}
#footer .container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0 0;
  color: #37406e;
}
#footer .container .logo img {
  width: 40px;
}
#footer .container .copyright {
  text-align: center;
  color: #fff;
  font-size: 10px;
}
#footer .container a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
#footer .container .quick-links {
  padding: 1rem 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
#footer .container .quick-links .quick-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#footer .container .quick-links .quick-link:nth-of-type(2) {
  transition-delay: 0.8s;
}
#footer .container .quick-links .quick-link:nth-of-type(3) {
  transition-delay: 0.9s;
}
#footer .container .quick-links .quick-link:nth-of-type(4) {
  transition-delay: 1s;
}
#footer .container .quick-links .quick-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
#footer .container .quick-links .quick-link a:hover {
  color: #37406e;
  border-bottom: 3px solid #37406e;
}
#footer .container .row {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#footer .container .row .footer-col {
  padding: 1rem 0;
}
#footer .container .row .footer-col p {
  color: #fff;
}
#footer .container .row .footer-col .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .container .row .footer-col .footer-socials i {
  color: #fff;
  height: 60px;
  width: 60px;
  background-color: #EC765A;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#footer .container .row .footer-col .footer-socials i:hover {
  color: #fff;
  background-color: #37406e;
}

@media screen and (max-width: 425px) {
  .footer-socials {
    display: block !important;
    margin: 2rem !important;
    text-align: center !important;
  }
}
@media screen and (max-width: 375px) {
  #footer .container .quick-links {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 375px) {
  #footer .container .quick-links {
    font-size: 8px !important;
  }
}
@media screen and (max-width: 768px) {
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    -webkit-animation: closedMid 0.8s backwards;
            animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    -webkit-animation: closedTop 0.8s backwards;
            animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    -webkit-animation: closedBtm 0.8s backwards;
            animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #37406e;
    background: #EC765A;
    transition: opacity 0.8s 0.5s;
    -webkit-clip-path: 1s 0.5s;
            clip-path: 1s 0.5s;
    -webkit-clip-path: circle(200px at top right);
            clip-path: circle(200px at top right);
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }
  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    -webkit-animation: pulse 1s;
            animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #37406e;
    -webkit-animation: openMid 0.8s forwards;
            animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: #37406e;
    -webkit-animation: openTop 0.8s forwards;
            animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: #37406e;
    -webkit-animation: openBtm 0.8s forwards;
            animation: openBtm 0.8s forwards;
  }
}
@media screen and (max-width: 320px) {
  .title h3 {
    font-size: 1rem;
  }
  .nav-link a {
    padding: 1rem 0 !important;
  }
}
#about {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .box {
  display: flex;
  margin-bottom: 2rem;
}
#about .box .sub-text {
  width: 70%;
  color: #37406e;
  font-size: 16px;
}
#about .box .details {
  color: #37406e;
  font-size: 16px;
  width: 30%;
  margin-left: 2rem;
}
#about .box .details img {
  width: 100%;
}
#about .box .about-socials {
  padding-top: 1rem;
}
#about .box .about-socials i {
  display: block;
  color: #fff;
  height: 30px;
  width: 30px;
  background-color: #EC765A;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#about .box .about-socials i:hover {
  color: #fff;
  background-color: #37406e;
}

@media screen and (max-width: 768px) {
  .about-banner .slogan h1 {
    font-size: 35px !important;
  }
  .box .sub-header {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 425px) {
  .about-banner {
    display: block !important;
  }
  .about-banner .slogan h1 {
    font-size: 25px !important;
  }
  .about-banner .about-img {
    text-align: center;
  }
  .box {
    display: block !important;
  }
  .box .sub-text {
    width: 100% !important;
  }
  .box .about-socials {
    display: flex;
  }
  .box .details {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .about-banner .slogan h1 {
    font-size: 20px !important;
  }
  .about-banner .about-img img {
    height: 200px !important;
  }
}
#tarieven {
  display: flex;
  justify-content: center;
  align-items: center;
}
#tarieven .tarieven-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#tarieven .tarieven-banner .slogan {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #EC765A;
}
#tarieven .tarieven-banner .slogan p {
  font-size: 1.3rem;
}
#tarieven .tarieven-banner .tarieven-img img {
  height: 300px;
}

#reserveren {
  display: flex;
  align-items: center;
  justify-content: center;
}
#reserveren .reserveren-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#reserveren .reserveren-banner .slogan {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #37406e;
}
#reserveren .booking-form {
  background-color: #37406e;
  margin-top: 1rem;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.5s ease;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#reserveren .sub-header-dark {
  color: #fff;
}

@media screen and (max-width: 425px) {
  .reserveren-banner {
    display: block !important;
  }
  .reserveren-banner .slogan h1 {
    font-size: 25px !important;
  }
  .sub-header-dark {
    color: #37406e !important;
  }
  .booking-form {
    background: none !important;
    box-shadow: none !important;
    margin-top: 1rem;
    padding: 1rem 0 !important;
  }
}
@media screen and (max-width: 375px) {
  .reserveren-banner .slogan h1 {
    font-size: 20px !important;
  }
}
#contact .contact-banner {
  min-height: 100vh;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10vw;
  background: linear-gradient(to right, rgba(55, 64, 110, 0.4), rgba(236, 118, 90, 0.3)), url("../img/contact-banner.jpg") center top;
  background-size: cover;
  position: relative;
}
#contact .contact-banner .mobile-only {
  display: none;
}
#contact .contact-banner .hero-title {
  padding-right: 2rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-banner .hero-title h1 {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #fff;
}
#contact .contact-banner .hero-title .name-text {
  color: #fff;
}
#contact .contact-banner .btn-mobile {
  display: none;
}
#contact .contact-banner .bottom-banner {
  background-color: #fff;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 90%;
}
#contact .contact-banner .bottom-banner .info-container {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
}
#contact .contact-banner .bottom-banner .info-container .info {
  font-weight: 700;
  color: #37406e;
}
#contact .contact-banner .bottom-banner .info-container .info i {
  color: #37406e;
  padding-left: 10px;
}
#contact .contact-banner .bottom-banner .info-container .info-btn {
  color: #EC765A;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
#contact .contact-banner .bottom-banner .info-container .info-btn:hover {
  transform: scale(1.2);
  color: #37406e;
}
#contact .message-box {
  display: flex;
  background-color: #37406e;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.5s ease;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
#contact .message-box .left {
  padding-right: 2rem;
}
#contact .message-box hr {
  border: 1px solid #EC765A;
}
#contact .message-box .right {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  width: 100%;
}
#contact .message-box .input-box {
  height: 50px;
  width: 100%;
  margin: 1rem 0;
}
#contact .message-box .input-box input, #contact .message-box .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #fff;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
  color: #EC765A;
}
#contact .message-box .input-box textarea {
  padding-top: 15px;
  color: #EC765A;
}
#contact .message-box .messagebox {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#contact .message-box button[type=submit] {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  background: #EC765A;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
#contact .message-box button[type=submit]:hover {
  background: #ce6146;
}
#contact .message-box .contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
#contact .message-box .contact-socials i {
  color: #fff;
  height: 60px;
  width: 60px;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#contact .message-box .contact-socials i:hover {
  background-color: #EC765A;
}

@media screen and (max-width: 768px) {
  .hero .hero-title h1 {
    font-size: 35px !important;
  }
  .hero .bottom-banner .info-container .info, .hero .bottom-banner .info-container .info-btn {
    font-size: 13px;
  }
  .message-box {
    display: block !important;
  }
  .message-box .left {
    display: none;
  }
  .message-box .left .mapouter iframe {
    display: none;
  }
  .message-box .right {
    padding: 0 !important;
  }
  .message-box hr {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  #contact .contact-banner .hero-content {
    display: block;
  }
  #contact .contact-banner .hero-content .hero-title h1 {
    padding-top: 8rem;
  }
  #contact .contact-banner .hero-content .hero-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  #contact .contact-banner .hero-content .btn-mobile {
    display: block !important;
    background-color: #EC765A;
    color: #fff;
    padding: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 10px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  #contact .contact-banner .bottom-banner {
    padding: 1rem;
  }
  #contact .contact-banner .bottom-banner .info-container {
    display: block;
  }
  #contact .contact-banner .bottom-banner .info-container .info {
    padding: 0.5rem;
    font-size: 16px;
  }
  #contact .contact-banner .bottom-banner .info-btn {
    display: none;
  }
  #contact .message-box .contact-socials {
    display: block !important;
    text-align: center !important;
  }
  #contact .message-box .sub-header {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .hero-title h1 {
    font-size: 2rem !important;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-title h1 {
    font-size: 1.8rem !important;
  }
}
#thanks {
  display: flex;
  justify-content: center;
  align-items: center;
}
#thanks .wrapper {
  padding: 2rem;
  height: 100%;
  background-color: #37406e;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
}
#thanks .wrapper .sub-header {
  text-align: start;
}
#thanks .wrapper button {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  background: #EC765A;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
#thanks .wrapper button:hover {
  background: #ce6146;
}

.banner {
  min-height: 100vh;
  width: 100vw;
  min-height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background: linear-gradient(to right, rgba(55, 64, 110, 0.4), rgba(236, 118, 90, 0.3)), url("../img/Bed naast raam2.jpg") center top;
  background-size: cover;
  position: relative;
}
.banner .mobile-only {
  display: none;
}
.banner .hero-title {
  padding-right: 2rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner .hero-title h1 {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: start;
  border-radius: 20px 0;
  color: #fff;
}
.banner .hero-title .name-text {
  color: #fff;
}
.banner .btn-mobile {
  display: none;
}
.banner .bottom-banner {
  background-color: #fff;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 90%;
}
.banner .bottom-banner .info-container {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  justify-content: space-between;
}
.banner .bottom-banner .info-container .info {
  font-weight: 700;
  color: #37406e;
}
.banner .bottom-banner .info-container .info i {
  color: #37406e;
  padding-left: 10px;
}
.banner .bottom-banner .info-container .info-btn {
  color: #EC765A;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.banner .bottom-banner .info-container .info-btn:hover {
  transform: scale(1.2);
  color: #37406e;
}

@media screen and (max-width: 768px) {
  .hero .hero-title h1 {
    font-size: 35px !important;
  }
  .hero .bottom-banner .info-container .info, .hero .bottom-banner .info-container .info-btn {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .banner .hero-content {
    display: block;
  }
  .banner .hero-content .hero-title h1 {
    padding-top: 8rem;
  }
  .banner .hero-content .hero-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .banner .hero-content .btn-mobile {
    display: block !important;
    background-color: #EC765A;
    color: #fff;
    padding: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 10px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  .banner .bottom-banner {
    padding: 1rem;
  }
  .banner .bottom-banner .info-container {
    display: block;
  }
  .banner .bottom-banner .info-container .info {
    padding: 0.5rem;
    font-size: 16px;
  }
  .banner .bottom-banner .info-btn {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .hero-title h1 {
    font-size: 2rem !important;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-title h1 {
    font-size: 1.8rem !important;
  }
}
#kamer {
  display: flex;
  justify-content: center;
  align-items: center;
}
#kamer .photo {
  padding-top: 1rem;
}
#kamer .box {
  display: flex;
}
#kamer .box .details {
  color: #37406e;
  font-size: 16px;
  width: 30%;
  margin-left: 2rem;
}
#kamer .box .sub-text {
  width: 70%;
  color: #37406e;
  font-size: 16px;
}
#kamer .box .sub-text .tarieven {
  margin-top: 1rem;
}
#kamer .box .sub-text .tarieven h2 {
  color: #EC765A;
}
#kamer .box .sub-text .kosten {
  display: block;
}
#kamer .box .sub-text .kosten h2 {
  padding-left: 10px;
}
#kamer .box .sub-text .kosten .cost-row {
  display: flex;
  align-items: center;
}
#kamer .box .sub-text .flex-container {
  padding: 2rem;
  display: flex;
}
#kamer .box .sub-text .flex-container .block-container {
  margin-right: 10rem;
  text-align: center;
}
#kamer .box .sub-text .flex-container .block-container .numbers {
  color: #EC765A;
  font-size: 3rem;
  font-weight: 700;
}
#kamer .box .sub-text .flex-container .block-container .text {
  color: #37406e;
  font-size: 16px;
  font-weight: 700;
}
#kamer .video {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .flex-container {
    display: block !important;
  }
}
@media screen and (max-width: 425px) {
  .flex-container {
    display: block !important;
  }
  .video iframe {
    width: 340px !important;
    height: 197px !important;
  }
}
@media screen and (max-width: 375px) {
  .video iframe {
    width: 300px !important;
    height: 174px !important;
  }
}
@media screen and (max-width: 320px) {
  .video iframe {
    width: 256px !important;
    height: 177px !important;
  }
}
body {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  font-family: "Playfair Display", serif;
  background-color: #fff;
}

a {
  text-decoration: none;
}

.text-container {
  width: 90%;
  margin: 2rem auto;
}
.text-container p {
  margin: 1rem 0;
  line-height: 1.5;
}
.text-container .header {
  font-size: 30px;
  font-weight: 700;
  color: #EC765A;
  margin-bottom: 35px;
  position: relative;
  text-transform: uppercase;
}
.text-container .header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #37406e;
  height: 4px;
  box-sizing: border-box;
  width: 50px;
  border-radius: 10px;
}
.text-container .sub-header {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 35px;
  position: relative;
}
.text-container .sub-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #EC765A;
  height: 4px;
  box-sizing: border-box;
  width: 50px;
  border-radius: 10px;
}
.text-container .sub-header-dark {
  font-size: 20px;
  font-weight: 700;
  color: #37406e;
  margin-bottom: 35px;
  position: relative;
}
.text-container .sub-header-dark::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #EC765A;
  height: 4px;
  box-sizing: border-box;
  width: 50px;
  border-radius: 10px;
}
.text-container .sub-text {
  margin: 1rem 0;
  line-height: 1.5;
}/*# sourceMappingURL=main.css.map */