@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Athiti:wght@200;300;400;500;600;700&display=swap');
@import url("https://use.typekit.net/fbk2bph.css");
* {
  outline: none !important;
  -webkit-appearance: none;
}

body {
  font-family: canto, serif;
  border-radius: 0;
}

select {
  border-radius: 0 !important;
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.8s;
  height: 120px;
}
nav img {
  height: 80px;
}
@media (max-width: 1440px) {
  nav img {
    height: 70px;
  }
}
@media (max-width: 992px) {
  nav img {
    height: 42px;
  }
}
@media (max-width: 992px) {
  nav {
    transform: translateY(-100%);
  }
}
@media (max-width: 576px) {
  nav {
    height: 70px;
  }
}
nav img {
  transition: all 0.5s;
}
nav .btn-regis {
  color: #f0562c;
  background-color: #343437;
  transition: all 0.5s;
  border: 1px solid #343437;
}
nav .btn-regis:hover {
  color: #343437;
  background-color: #f0562c;
  border: 1px solid #f0562c;
}
nav.scrolling, nav.dark {
  background-color: rgba(52, 52, 55, 0.9);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  height: 100px;
}
@media (max-width: 1440px) {
  nav.scrolling, nav.dark {
    height: 80px;
  }
}
@media (max-width: 576px) {
  nav.scrolling, nav.dark {
    height: 70px;
  }
}
@media (max-width: 992px) {
  nav.scrolling, nav.dark {
    transform: translateY(0%);
  }
}
nav.scrolling img, nav.dark img {
  height: 60px;
}
@media (max-width: 1440px) {
  nav.scrolling img, nav.dark img {
    height: 50px;
  }
}
@media (max-width: 576px) {
  nav.scrolling img, nav.dark img {
    height: 42px;
  }
}
nav.scrolling .btn-regis, nav.dark .btn-regis {
  border-color: #f0562c;
}

section.banner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  opacity: 0.7;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 1024px) {
  section.banner:before {
    display: none;
  }
}
section.banner p {
  font-family: "Athiti", sans-serif;
}

section#registration {
  background-image: url(/assets/images/water-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section#location ul.toggle li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #808285;
}
section#location ul.toggle li svg {
  stroke: #808285;
}
section#location ul.toggle li.active {
  color: #f0562c;
}
section#location ul.toggle li.active svg {
  stroke: #f0562c;
}
section#location iframe {
  pointer-events: none;
  opacity: 0;
}
section#location iframe.active {
  opacity: 1;
  pointer-events: all;
}

footer {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

#registration form {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

#registration form input[type=submit] {
  font-family: canto, serif;
}

section.privacy-policy p,
section.privacy-policy h3,
section.privacy-policy h4,
section.privacy-policy a {
  font-family: "Roboto", sans-serif;
}
section.privacy-policy ul.l-1, section.privacy-policy ul.l-2, section.privacy-policy ul.l-3 {
  padding-left: 40px;
}
@media (max-width: 768px) {
  section.privacy-policy ul.l-1, section.privacy-policy ul.l-2, section.privacy-policy ul.l-3 {
    padding-left: 20px;
  }
}
section.privacy-policy ul.l-1 li, section.privacy-policy ul.l-2 li, section.privacy-policy ul.l-3 li {
  margin-bottom: 10px;
}

section.thankyou:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 52, 55, 0.9);
  pointer-events: none;
}

span.drop-down {
  width: 10px;
  height: 10px;
  border-left: 1px solid #343437;
  border-bottom: 1px solid #343437;
  position: absolute;
  right: 12px;
  top: 12px;
  transform: rotate(-45deg);
}

.loading {
  opacity: 0;
  pointer-events: none;
}
.loading.active {
  opacity: 1;
  pointer-events: all;
}

#registration .box-registration {
  background-image: url(/assets/images/bg-regis.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#registration form .group {
  position: relative;
  margin-bottom: 35px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  #registration form .group {
    padding: 0 10px;
  }
}
#registration form .group:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #registration form .group {
    padding: 0;
  }
}
#registration form .group input[type=text] {
  padding: 8px 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #857a71;
  background: transparent;
  color: #343437;
  font-weight: 200;
  height: 42px;
  font-size: 14px;
  font-family: "Athiti", sans-serif;
}
#registration form .group.checkbox {
  display: flex;
  align-items: center;
}
#registration form .group.checkbox .label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  color: #343437;
}
#registration form .group.checkbox .label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#registration form .group.checkbox .label input:checked ~ .checkmark:after {
  display: block;
}
#registration form .group.checkbox .label .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #838689;
  border-radius: 5px;
  transition: 0.3s;
}
#registration form .group.checkbox .label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #211d1f;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#registration form .group.select select {
  width: 100%;
  padding: 6px 0px 10px;
  border-bottom: 1px solid #857a71;
  height: 42px;
}
@media (max-width: 576px) {
  #registration form .group.select select {
    padding: 8px 0px 10px;
  }
}
#registration form .group.select label.error {
  right: 0;
}
#registration form .group.input label:not(.error) {
  color: #343437;
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 10px;
  transition: 0.2s ease all;
}
@media (max-width: 576px) {
  #registration form .group.input label:not(.error) {
    left: 0px;
  }
}
#registration form .group label.error {
  position: absolute;
  font-size: 12px;
  bottom: -20px;
  right: 20px;
  top: unset !important;
}
@media (max-width: 576px) {
  #registration form .group label.error {
    right: 0 !important;
  }
}
#registration label.error {
  color: #ff3333 !important;
}

#registration .group.checkbox .label:hover input ~ .checkmark {
  background-color: #e3e4e5;
}

#registration .group.checkbox .label:checked ~ .checkmark {
  background-color: #2196f3;
}

#registration .accept-error {
  color: #ff3333 !important;
}

#registration .accept-error .checkmark {
  border-color: #ff3333 !important;
}

#registration input:focus ~ label:not(.error),
#registration input:valid ~ label:not(.error) {
  top: -20px !important;
  font-size: 12px;
  color: #343437;
}

#registration .bar {
  position: relative;
  display: block;
  width: 100%;
}

#registration .bar:before,
#registration .bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #343437;
  transition: 0.2s ease all;
}

#registration .bar:before {
  left: 50%;
}

#registration .bar:after {
  right: 50%;
}

#registration input:focus ~ .bar:before,
#registration input:focus ~ .bar:after {
  width: 50%;
}

#registration .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

#registration input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
  from {
    background: #343437;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.just-validate-error-label {
  text-align: right;
  font-size: 11px;
  margin-top: 3px;
}

.custom-error-message {
  color: red;
  font-size: 0.9em;
  margin-top: 4px;
}

.hide-error {
  display: none;
}

.checkbox-error label {
  color: #b81111 !important;
}
.checkbox-error .checkmark {
  border-color: #b81111 !important;
}

.accordion {
  background-color: #343437;
  color: #f0562c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.5s;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid #f0562c;
}
.accordion .more {
  position: relative;
  width: 15px;
  height: 14px;
}
.accordion .more > span {
  position: absolute;
  transition: all 0.3s;
  background-color: #f0562c;
}
.accordion .more > span:first-child {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.accordion .more > span:last-child {
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active,
.accordion:hover {
  background-color: #f0562c;
  color: #fff;
}
.accordion.active svg,
.accordion:hover svg {
  stroke: white;
}
.accordion.active .more span,
.accordion:hover .more span {
  background: #fff;
}

.accordion.active .more span:last-child {
  transform: rotate(90deg);
}

.accordion.active + .panel {
  background-color: #fff;
  border: 1px solid #f0562c;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 40px 18px 0;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-top: -32px;
}
.panel li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #343437;
  margin-bottom: 10px;
}
.panel li:last-child {
  margin-bottom: 18px;
}
.panel li p {
  font-size: 14px;
}
.panel li p:first-child {
  width: calc(100% - 60px);
}
.panel li p:last-child {
  width: 60px;
}/*# sourceMappingURL=style.css.map */