@charset "UTF-8";
@font-face {
  font-family: "MyCustomFont";
  src: url("../font/Lora-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MyCustomFontElegant";
  src: url("../font/Cormorant-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "MyCustomFontElegant", sans-serif;
}
* ::-moz-selection {
  background-color: rgb(216, 195, 155);
}
* ::selection {
  background-color: rgb(216, 195, 155);
}

body {
  background-color: rgb(255, 252, 242);
}

@keyframes zoomOutImg {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fromTop {
  from {
    transform: translateY(-1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromBottom {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
section {
  min-width: 100vw;
  position: relative;
  overflow: hidden;
}
section#home {
  min-height: 100vh;
}
section#home .zoom-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  animation: zoomOutImg 6s ease-out forwards;
}
section#home .hero-text {
  position: absolute;
  top: calc(50% - 15rem);
  left: 10vw;
  color: white;
  font-weight: bold;
  z-index: 1;
  opacity: 1;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.5));
}
section#home .hero-text h1 {
  opacity: 0;
  font-size: 4rem;
  animation: fromTop 1s ease forwards;
  animation-delay: 0.5s;
  margin-bottom: 1rem;
}
section#home .hero-text p {
  font-size: 2.5rem;
  opacity: 0;
  animation: fromTop 1s ease forwards;
}
section#home .hero-text p.first {
  animation-delay: 2s;
}
section#home .hero-text p.second {
  animation-delay: 3.5s;
}
section#home .hero-text .social {
  margin-top: 2rem;
  opacity: 0;
  animation: fromBottom 1s ease forwards;
  animation-delay: 5s;
}
section#home .hero-text .social a {
  margin: 0 15px;
}
section#home .hero-text .social a img {
  height: 1.5rem;
  width: auto;
  filter: grayscale(1) brightness(500%);
  transition: 0.3s;
}
section#home .hero-text .social a img:hover {
  filter: grayscale(0) brightness(100%);
  transform: scale(1.2);
}
section#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/resources/ls-res7.webp");
  background-attachment: fixed;
}
section#about .content {
  width: 80vw;
  padding: 0 10vw;
  background-color: rgb(255, 252, 242);
  opacity: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#about .content iframe {
  margin: 3rem 0;
}
section#about .content p {
  margin: 0.5rem 0;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.9);
  font-family: "MyCustomFontElegant", "Times New Roman", Times, serif;
  font-weight: 400;
}
section#about .content p.subTitle {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
section#about .content p.cta {
  color: rgb(126, 31, 31);
}
section#about .content .subcontent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
section#about .content .subcontent .half {
  width: 50%;
  background-color: black;
  color: white;
}
section#about .content .subcontent .half p {
  color: white;
}
section#about .content .subcontent .half ul {
  width: 100%;
  color: white;
  font-style: italic;
}
section#about .content .subcontent iframe {
  z-index: 1;
}
section#about .content .subcontent img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  animation: zoomOutImg 8s ease-out infinite alternate;
}
section#about .content ul {
  width: 50%;
  padding: 1rem;
  font-size: 1.2rem;
  color: black;
  text-shadow: 1px;
}
section#about .content ul li {
  margin: 0.5rem 0;
  list-style: none;
  font-style: italic;
}
section#about .content ul li:before {
  content: "✔️ ";
}
section#about .content button {
  margin: 1rem 0;
}
section#about .content .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
section#about .content .icons .icon {
  flex: 1 1 calc(33.333% - 2rem);
  box-sizing: border-box;
  max-width: calc(33.333% - 2rem);
  text-align: center;
  transition: filter 0.3s ease;
  transition: 0.3s;
}
section#about .content .icons .icon img {
  width: 40%;
  height: auto;
  transition: 0.3s;
}
section#about .content .icons .icon .title {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: rgba(255, 0, 0, 0.7);
}
section#about .content .icons .icon .desc span {
  font-weight: bold;
  color: rgba(255, 0, 0, 0.7);
  transition: 0.3s;
}
section#about .content .icons .icon:hover img {
  transform: scale(1.1);
}
section#about .content .icons .icon:hover .desc span {
  color: red;
  letter-spacing: 0.1rem;
}
section#faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/resources/ls-res5.webp");
  background-attachment: fixed;
}
section#faq .content {
  width: 80vw;
  padding: 0 10vw;
  background-color: rgb(255, 252, 242);
  opacity: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#faq .content .question {
  font-size: 1.3rem;
  margin: 1rem 0;
}
section#faq .content .question .q {
  color: rgba(255, 0, 0, 0.7);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
section#faq .content .question .q:before {
  content: "Q: ";
}
section#faq .content .question .a {
  display: none;
  font-style: italic;
}
section#faq .content .question .a:before {
  content: "A: ";
}
section#faq .content .question.active .q {
  transform: scale(1.1);
}
section#faq .content .question.active .a {
  margin-top: 1rem;
  display: block;
  animation: fromTop 0.3s ease-in-out;
  color: rgba(0, 0, 0, 0.8);
}
section#nonadult {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/resources/ls-res4.webp");
  background-attachment: fixed;
  padding-bottom: 8rem;
}
section#nonadult .content {
  width: 80vw;
  padding: 2rem 10vw;
  background-color: rgb(255, 252, 242);
  opacity: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#nonadult .content .subContent {
  display: flex;
}
section#nonadult .content .subContent .half {
  flex-grow: 50%;
  overflow: hidden;
  height: 100%;
}
section#nonadult .content .subContent .half p {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
section#nonadult .content .subContent .half img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoomOutImg 8s ease-out infinite alternate;
}
section#nonadult .content p, section#nonadult .content li {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  list-style: none;
  color: rgba(0, 0, 0, 0.8);
}
section#nonadult .content p.subTitle, section#nonadult .content li.subTitle {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 2rem 0;
  text-align: center;
}
section#gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/gallery/1.jpg");
  background-attachment: fixed;
}
section#gallery .content {
  width: 80vw;
  background-color: rgb(255, 252, 242);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
section#gallery .content .imgContainer {
  width: 33.3333333333%;
  height: 300px;
  overflow: hidden;
}
section#gallery .content .imgContainer img {
  transition: 0.5s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#gallery .content .imgContainer:hover img {
  transform: scale(1.1);
}

.slideShow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
.slideShow .up {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.3rem;
}
.slideShow .up .closeGallery {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
}
.slideShow .up .galTitle {
  color: rgb(255, 252, 242);
  text-align: center;
}
.slideShow .middle {
  flex-grow: 1;
  display: flex;
  color: white;
  min-height: 0;
  z-index: 1;
}
.slideShow .middle .galLeft, .slideShow .middle .galRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 2rem;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slideShow .middle .galLeft p, .slideShow .middle .galRight p {
  transition: 0.3s;
}
.slideShow .middle .galLeft:hover, .slideShow .middle .galRight:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.slideShow .middle .galLeft:hover p, .slideShow .middle .galRight:hover p {
  transform: scale(1.2);
}
.slideShow .middle .galLeft {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.slideShow .middle .galRight {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.slideShow .middle .mainDisplay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.slideShow .middle .mainDisplay img {
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
.slideShow .bottom {
  height: 100px;
  min-height: 100px;
  overflow-x: scroll;
  flex-wrap: nowrap;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}
.slideShow .bottom img {
  height: 90%;
  width: auto;
  transition: 0.3s;
  margin: 0 1px;
}
.slideShow .bottom img.active {
  height: 100%;
  margin: 0 1rem;
}
.slideShow .bottom img:hover {
  transform: scale(1.4);
  margin: 0 2rem;
}

.sectionTitle {
  padding: 2rem 0;
  font-size: 3rem;
  color: rgb(255, 252, 242);
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  background-color: transparent;
}

button {
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 2rem;
  border: 0;
  font-size: 1.2rem;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
button:hover {
  border: 1px solid rgba(255, 0, 0, 0.7);
  background-color: transparent;
  color: rgba(255, 0, 0, 0.7);
}

nav#desktop {
  transition: 0.5s;
  animation: fromTop 1.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}
nav#desktop #navTrigger {
  display: none;
}
nav#desktop.scrolled {
  height: 60px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav#desktop.scrolled .nav-links .nav-link a {
  color: rgba(0, 0, 0, 0.7);
}
nav#desktop.scrolled .nav-links .nav-link .sub-menu {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav#desktop.scrolled img {
  padding: 10px 0;
}
nav#desktop img {
  height: 100%;
  width: auto;
  padding: 20px 0;
  margin-left: 20vw;
  opacity: 0.8;
  transition: 0.5s;
}
nav#desktop .nav-links {
  display: flex;
  gap: 20px;
  margin-right: calc(20vw - 20px);
}
nav#desktop .nav-links .nav-link {
  position: relative;
}
nav#desktop .nav-links .nav-link a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  padding: 10px 15px;
}
nav#desktop .nav-links .nav-link a:hover {
  color: rgba(255, 0, 0, 0.7);
}
nav#desktop .nav-links .nav-link .sub-menu {
  display: none;
}
nav#desktop .nav-links .nav-link.active .sub-menu {
  display: flex;
  position: absolute;
  top: calc(100% + 19px);
  left: 0;
  flex-direction: column;
  animation: fromTop 0.3s ease;
}
nav#desktop .nav-links .nav-link.active .sub-menu a {
  text-wrap: nowrap;
  padding: 10px 15px;
}

#apply {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgb(255, 252, 242);
  padding: 2rem 5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 700px;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
  transition: 0.3s;
  z-index: 5;
}
#apply.active {
  display: flex;
}
#apply .formTitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
#apply .formItem {
  display: flex;
  flex-direction: column;
}
#apply .formItem label {
  font-size: 1.2rem;
}
#apply .formItem input, #apply .formItem textarea, #apply .formItem select {
  padding: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}
#apply .formItem.row {
  flex-direction: row;
}
#apply .formItem.row label {
  margin-left: 0.5rem;
}
#apply .formItem.row span {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  color: rgb(54, 54, 172);
  text-decoration: underline;
  cursor: pointer;
}
#apply .formItem.err {
  position: relative;
  background-color: rgb(255, 229, 229);
}
#apply .formItem.err:after {
  animation: fromBottom 0.5s ease-in-out;
  position: absolute;
  top: 0;
  right: 0.5rem;
  content: "Required";
  color: red;
}
#apply .formItem.ok {
  color: green;
  animation: fromBottom 0.5s ease-in-out;
  font-size: 1.5rem;
}
#apply .btnContainer {
  display: flex;
  justify-content: space-between;
}
#apply .btnContainer input {
  border: none;
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: 0.3s;
}
#apply .btnContainer input#send {
  background-color: green;
  color: white;
  width: 66%;
}
#apply .btnContainer input#cancel {
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
}
#apply .btnContainer input:hover {
  opacity: 0.9;
}

footer {
  background-image: url("../img/resources/footer.webp");
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
footer::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
  opacity: 0.7;
}
footer .footer-up {
  z-index: 2;
  box-sizing: border-box;
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
}
footer .footer-up p {
  font-size: 1.3rem;
  cursor: pointer;
}
footer .footer-up p.s {
  margin: 0 2rem;
  opacity: 0.5;
}
footer .social {
  box-sizing: border-box;
  padding: 2rem 0;
  z-index: 2;
}
footer .social a {
  padding: 0 3rem;
}
footer .social a img {
  height: 25px;
  width: auto;
  transition: 0.3s;
}
footer .social a:hover img {
  transform: scale(1.1);
}

.cookie {
  font-size: 1.2rem;
  position: fixed;
  top: 110vh;
  left: 10vw;
  width: 80vw;
  height: 80vh;
  overflow-y: auto;
  background-color: rgb(83, 83, 83);
  color: white;
  z-index: 998;
  display: none;
}
.cookie.active {
  top: 10vh;
  display: block;
  animation: fromBottom 0.3s ease-in-out;
}
.cookie .title {
  font-size: 1.5rem;
  text-decoration: underline;
  margin: 1rem 1rem;
  font-weight: bold;
}
.cookie p {
  margin: 1rem 3rem;
}
.cookie p.subTitle {
  margin: 1rem 2rem;
  font-weight: bold;
}
.cookie ul {
  margin: 1rem 3rem;
}
.cookie .closeCookie {
  margin: 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgb(175, 0, 0);
  color: white;
  padding: 0.5rem 3rem;
  cursor: pointer;
}

@media (max-width: 1919px) {
  nav#desktop img {
    margin-left: 10vw;
  }
  nav#desktop .nav-links {
    margin-right: calc(10vw - 10px);
  }
  section#home .hero-text {
    top: calc(50% - 8rem);
    left: 10vw;
  }
  section#home .hero-text h1 {
    font-size: 3rem;
  }
  section#home .hero-text p {
    font-size: 2rem;
  }
  section#home .hero-text p.first {
    animation-delay: 1.5s;
  }
  section#home .hero-text p.second {
    animation-delay: 3s;
  }
}
@media (max-width: 1000px) {
  footer .footer-up {
    flex-direction: column;
  }
  footer .footer-up p {
    margin: 1rem 0;
    text-align: center;
  }
  footer .footer-up p.s {
    display: none;
  }
  footer .social a {
    padding: 0 1rem;
  }
  section#home .zoom-img {
    left: -250vw;
    width: auto;
    height: 110vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#home .hero-text {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6rem;
    filter: drop-shadow(0 0 5px rgba(99, 0, 0, 0.5));
  }
  section#home .hero-text * {
    width: 100%;
    text-align: center;
  }
  section#home .hero-text p {
    font-size: 1.5rem;
  }
  section#home .hero-text p.first {
    animation-delay: 1.5s;
  }
  section#home .hero-text p.second {
    animation-delay: 3s;
  }
  section#home .hero-text .social {
    animation-delay: 4.5s;
    margin: 0 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: sticky;
    top: 60px;
  }
  section#home .hero-text .social a {
    margin: 0 0;
  }
  section#about .content, section#faq .content, section#nonadult .content {
    padding: 0 0;
    width: 100vw;
    opacity: 0.9;
  }
  section#about .content iframe, section#faq .content iframe, section#nonadult .content iframe {
    width: 100%;
    height: 300px;
  }
  section#about .content p, section#faq .content p, section#nonadult .content p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  section#about .content p.subTitle, section#faq .content p.subTitle, section#nonadult .content p.subTitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0 0.5rem;
  }
  section#about .content img, section#faq .content img, section#nonadult .content img {
    height: 100%;
    width: auto;
  }
  section#about .content ul, section#faq .content ul, section#nonadult .content ul {
    width: 100%;
  }
  section#about .content .icons .icon, section#faq .content .icons .icon, section#nonadult .content .icons .icon {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
  section#about .content .icons .icon .desc, section#faq .content .icons .icon .desc, section#nonadult .content .icons .icon .desc {
    font-size: 1rem;
  }
  section#about .content .subcontent, section#faq .content .subcontent, section#nonadult .content .subcontent {
    flex-direction: column;
    flex-wrap: wrap;
  }
  section#about .content .subcontent .half, section#faq .content .subcontent .half, section#nonadult .content .subcontent .half {
    width: 100%;
    background-color: black;
  }
  .sectionTitle {
    font-size: 2.5rem;
    text-align: center;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  nav#desktop img {
    margin-left: 0;
  }
  nav#desktop .nav-links {
    display: none;
  }
  nav#desktop #navTrigger {
    display: flex;
    height: 24px;
    width: 50px;
    position: relative;
  }
  nav#desktop #navTrigger .line {
    width: 100%;
    height: 4px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  nav#desktop #navTrigger .line.one {
    top: 0;
  }
  nav#desktop #navTrigger .line.two {
    top: 10px;
  }
  nav#desktop #navTrigger .line.three {
    top: 20px;
  }
  nav#desktop #navTrigger.active {
    width: 40px;
  }
  nav#desktop #navTrigger.active .line.one {
    top: 10px;
    transform: rotate(45deg);
  }
  nav#desktop #navTrigger.active .line.two {
    left: 100%;
    opacity: 0;
  }
  nav#desktop #navTrigger.active .line.three {
    top: 10px;
    transform: rotate(-45deg);
  }
  nav#desktop.scrolled #navTrigger .line {
    background-color: rgba(0, 0, 0, 0.5);
  }
  nav#desktop.scrolled .nav-links.active {
    top: 60px;
    background-color: white;
  }
  nav#desktop.scrolled .nav-links.active .nav-link a {
    color: rgba(0, 0, 0, 0.7);
  }
  nav#desktop.scrolled .nav-links.active .nav-link .sub-menu {
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  nav#desktop .nav-links.active {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 10px 0;
    z-index: 1000;
    animation: fromTop 0.3s ease;
    color: rgba(255, 0, 0, 0.7);
  }
  nav#desktop .nav-links.active .nav-link a {
    padding: 10px 15px;
    color: white;
  }
  nav#desktop .nav-links.active .nav-link .sub-menu {
    display: none;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  nav#desktop .nav-links.active .nav-link.active .sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: transparent;
  }
  nav#desktop .nav-links.active .nav-link.active .sub-menu a {
    padding: 0 0;
    padding-top: 10px;
    text-wrap: nowrap;
    margin-left: 30px;
  }
  #apply {
    width: 100vw;
    top: 50vh;
    left: 0;
    transform: translateX(0) translateY(-50%);
    padding: 2rem 2rem;
  }
}/*# sourceMappingURL=style.css.map */