@font-face {
  font-family: "Caladea";
  src: url("font/Caladea-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Caladea";
  src: url("font/Caladea-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Neutraface";
  src: url("font/Neutraface-Condensed.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Patung";
  src: url("font/Patung.otf") format("opentype");
  font-weight: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #f5e7c6;
}

a.btn,
input#submit-button {
  text-decoration: none;
  background-color: #0e4739;
  border: 1px solid #0e4739;
  color: #ffffff;
  text-align: center;
  font-family: "Neutraface", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 500px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 1;
  transition: all 300ms ease-in-out;
}
a.btn:hover,
input#submit-button:hover {
  background-color: #f5e7c6;
  color: #0e4739;
}
a.btn img,
input#submit-button img {
  width: 12px;
  height: 12px;
}
a.btn-light,
input#submit-button-light {
  background-color: #ffffff;
  color: #0e4739;
  cursor: default;
}
a.btn-light:hover,
input#submit-button-light:hover {
  background-color: #ffffff;
  color: #0e4739;
}

header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}
header .cta {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}
@media screen and (max-width: 550px) {
  header .cta {
    display: none;
  }
}
header .cta img {
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}
header .cta:hover img {
  filter: none;
}
header .cta-mobile {
  display: none;
}
@media screen and (max-width: 550px) {
  header .cta-mobile {
    top: 16px;
    right: 16px;
    display: block;
  }
}
header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
header .content {
  z-index: 2;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .content .logo {
  max-width: 730px;
}
@media screen and (max-width: 850px) {
  header .content .logo {
    max-width: 500px;
  }
}
@media screen and (max-width: 550px) {
  header .content .logo {
    max-width: 72%;
  }
}
header .content .btn-light {
  margin-bottom: 32px;
}
@media screen and (max-width: 550px) {
  header .content .btn-light {
    margin-bottom: 60px;
  }
}
header .content .arrow-scroll {
  margin: 24px 0;
  height: 54px;
}
@media screen and (max-width: 550px) {
  header .content .arrow-scroll {
    margin: 40px 0 60px 0;
  }
}
header .content h1 {
  font-family: "Caladea", serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin: 22px 0 18px 0;
  cursor: default;
}
@media screen and (max-width: 850px) {
  header .content h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 550px) {
  header .content h1 {
    font-size: 20px;
    margin-top: 60px;
    padding: 0 45px;
  }
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/570;
}
@media screen and (max-width: 550px) {
  .slider {
    aspect-ratio: 390/244;
    margin-bottom: 45px;
  }
}
.slider .slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.slider .slide.fade-out::before {
  opacity: 0;
}
.slider .slide-1::before {
  background-image: url("images/slider-desktop/1.jpg");
}
.slider .slide-2::before {
  background-image: url("images/slider-desktop/2.jpg");
}
.slider .slide-3::before {
  background-image: url("images/slider-desktop/3.jpg");
}
.slider .slide-4::before {
  background-image: url("images/slider-desktop/4.jpg");
}
.slider .slide-5::before {
  background-image: url("images/slider-desktop/5.jpg");
}
.slider .slide-6::before {
  background-image: url("images/slider-desktop/6.jpg");
}
.slider .slide-7::before {
  background-image: url("images/slider-desktop/7.jpg");
}
.slider .slide-8::before {
  background-image: url("images/slider-desktop/8.jpg");
}
.slider .slide-9::before {
  background-image: url("images/slider-desktop/9.jpg");
}
.slider .slide-10::before {
  background-image: url("images/slider-desktop/10.jpg");
}
.slider .slide-11::before {
  background-image: url("images/slider-desktop/11.jpg");
}
.slider .slide-12::before {
  background-image: url("images/slider-desktop/12.jpg");
}
.slider .slide-13::before {
  background-image: url("images/slider-desktop/13.jpg");
}
@media screen and (max-width: 550px) {
  .slider .slide-1::before {
    background-image: url("images/slider-mobile/1.jpg");
  }
  .slider .slide-2::before {
    background-image: url("images/slider-mobile/2.jpg");
  }
  .slider .slide-3::before {
    background-image: url("images/slider-mobile/3.jpg");
  }
  .slider .slide-4::before {
    background-image: url("images/slider-mobile/4.jpg");
  }
  .slider .slide-5::before {
    background-image: url("images/slider-mobile/5.jpg");
  }
  .slider .slide-6::before {
    background-image: url("images/slider-mobile/6.jpg");
  }
  .slider .slide-7::before {
    background-image: url("images/slider-mobile/7.jpg");
  }
  .slider .slide-8::before {
    background-image: url("images/slider-mobile/8.jpg");
  }
  .slider .slide-9::before {
    background-image: url("images/slider-mobile/9.jpg");
  }
  .slider .slide-10::before {
    background-image: url("images/slider-mobile/10.jpg");
  }
  .slider .slide-11::before {
    background-image: url("images/slider-mobile/11.jpg");
  }
  .slider .slide-12::before {
    background-image: url("images/slider-mobile/12.jpg");
  }
  .slider .slide-13::before {
    background-image: url("images/slider-mobile/13.jpg");
  }
}
.slider .pagination {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.slider .gallery-prev,
.slider .gallery-next {
  position: absolute;
  top: 50%;
  width: 32px;
  cursor: pointer;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
  transform: translateY(-50%);
}
.slider .gallery-prev:hover,
.slider .gallery-next:hover {
  filter: none;
}
.slider .gallery-next {
  right: 30px;
  transform: translateY(-50%) rotate(180deg);
}
.slider .gallery-prev {
  left: 30px;
}
.slider .pagination__lines {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 550px) {
  .slider .pagination__lines {
    bottom: -30px;
  }
}
.slider .pagination__lines div {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 550px) {
  .slider .pagination__lines div {
    border: 1px solid #0e4739;
  }
}
.slider .pagination__lines div.active::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 550px) {
  .slider .pagination__lines div.active::after {
    background: #0e4739;
  }
}

section#informations {
  display: flex;
  background-color: #f5e7c6;
}
@media screen and (max-width: 850px) {
  section#informations {
    flex-direction: column-reverse;
  }
}
section#informations div.contact {
  flex: 1;
  padding: 30px 10% 0 10%;
}
@media screen and (max-width: 850px) {
  section#informations div.contact {
    padding: 40px 30px;
    flex: 1;
  }
}
@media screen and (max-width: 550px) {
  section#informations div.contact {
    padding: 40px 20px;
  }
}
section#informations div.contact h2 {
  font-size: 60px;
  font-family: "Patung", serif;
  font-weight: 400;
  margin-bottom: -8px;
  color: #000000;
  line-height: 0.6em;
  cursor: default;
}
@media screen and (max-width: 850px) {
  section#informations div.contact h2 {
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 550px) {
  section#informations div.contact h2 {
    margin-bottom: 0px;
    font-size: 40px;
  }
}
section#informations div.contact h3 {
  font-size: 40px;
  font-family: "Neutraface", sans-serif;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  color: #0e4739;
  cursor: default;
}
@media screen and (max-width: 850px) {
  section#informations div.contact h3 {
    font-size: 30px;
    line-height: 1em;
  }
}
@media screen and (max-width: 550px) {
  section#informations div.contact h3 {
    font-size: 20px;
    line-height: 1em;
  }
}
section#informations div.map {
  flex: 1;
  background-image: url(images/map.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 850px) {
  section#informations div.map {
    height: 550px;
    flex: none;
  }
}

form {
  padding-top: 10px;
  font-family: "Caladea", serif;
  font-size: 16px;
  color: #0e4739;
}
form .form-group {
  padding: 20px 0;
}
@media screen and (max-width: 550px) {
  form .form-group {
    padding: 15px 0;
  }
}
form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 550px) {
  form .form-row {
    display: block;
    margin-bottom: 0;
  }
}
form .form-row div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
form .form-row div label {
  transition: all 300ms ease-in-out;
}
form .form-row div input {
  border: 1px solid #0e4739;
  color: #0e4739;
  padding: 12px;
  transition: all 200ms ease-in-out;
  background-color: #f5e7c6;
}
form .form-row div input:focus {
  outline: none;
  box-shadow: none;
}
form .form-row div input:-webkit-autofill, form .form-row div input:-webkit-autofill:hover, form .form-row div input:-webkit-autofill:focus, form .form-row div input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px #f5e7c6 inset !important;
  -webkit-text-fill-color: #0e4739 !important;
  caret-color: #0e4739;
}
@media screen and (max-width: 550px) {
  form .form-row div input {
    margin-bottom: 15px;
  }
}
form .form-row div:has(input.is-invalid) label {
  color: #c03739;
}
form .form-row div:has(input.is-invalid) input {
  border-color: #c03739;
}
form .form-row div:has(input.is-valid) label {
  color: #0e4739;
}
form .form-row div:has(input.is-valid) input {
  border-color: #0e4739;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding: 0 20px 0 22px;
}
form input[type=radio] + label:before, form input[type=radio] + label:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50px;
}
form input[type=radio] + label:before {
  bottom: 1px;
  left: 0;
  border: 1px solid #0e4739;
  width: 14px;
  height: 14px;
}
form input[type=radio] + label:after {
  bottom: 5px;
  left: 4px;
  width: 8px;
  height: 8px;
}
form input[type=radio]:checked + label:after {
  background-color: #0e4739;
}
form p.mentions {
  margin: 10px 0 30px 0;
  font-size: 14px;
  cursor: default;
}
@media screen and (max-width: 550px) {
  form p.mentions {
    margin: 10px 0 20px 0;
  }
}
form p.mentions a {
  color: #0e4739;
}

#feedback {
  color: #c03739;
  margin-bottom: 10px;
}

footer {
  background-color: #f5e7c6;
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 550px) {
  footer {
    flex-direction: column;
    padding: 15px;
  }
}
footer .placeholder {
  flex: 2;
}
footer .ref {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding-right: 16px;
}
@media screen and (max-width: 550px) {
  footer .ref {
    flex-direction: column;
  }
}
footer .ref__card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media screen and (max-width: 550px) {
  footer .ref__card {
    flex-direction: column;
    gap: 5px;
  }
}
footer .ref p {
  cursor: default;
}
footer .ref img {
  height: 105px;
}
footer .ref img:nth-child(1) {
  height: 89px;
}
footer .ref a {
  margin-bottom: -4px;
}

#cookies {
  background-color: #0e4739;
  display: flex;
  flex-direction: row;
  padding: 20px 60px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
#cookies p,
#cookies a {
  text-align: center;
  color: #f5e7c6;
  font-family: "Caladea", serif;
}
#cookies .btn {
  background-color: #f5e7c6;
  color: #0e4739;
  border: 1px solid #f5e7c6;
  font-family: "Neutraface", sans-serif;
}
#cookies .btn:hover {
  background-color: #0e4739;
  color: #f5e7c6;
}
@media screen and (max-width: 550px) {
  #cookies {
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
  }
}

#confirmation {
  text-align: center;
  background-color: #0e4739;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#confirmation img {
  max-width: 500px;
}
@media screen and (max-width: 550px) {
  #confirmation img {
    max-width: 72%;
  }
}
#confirmation h2 {
  font-size: 40px;
  font-family: "Neutraface", sans-serif;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: default;
  margin: 50px 0;
}
@media screen and (max-width: 550px) {
  #confirmation h2 {
    font-size: 20px;
    line-height: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */