@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: #fff;
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  padding-top: calc(80px + 32px + 40px);
}
@media (max-width: 1024px) {
  main {
    padding-top: calc(80px + 32px);
  }
}
@media (max-width: 767px) {
  main {
    padding-top: calc(80px + 32px);
  }
}

h1 {
  font-size: 3.3rem;
  line-height: 3.5rem;
  font-weight: 800;
  font-family: "Marcellus", sans-serif;
}

h2 {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 400;
  font-family: "Marcellus", sans-serif;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 600;
  font-family: "Marcellus", sans-serif;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: 600;
  font-family: "Marcellus", sans-serif;
}

h5 {
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 600;
  font-family: "Marcellus", sans-serif;
}

p {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
}

u {
  color: #E3BDB2;
}

ul {
  margin: 0;
  padding: 10px 0;
}
ul li {
  list-style-type: none;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  height: 1rem;
  width: 1rem;
  -webkit-mask-image: url(../../img/green-check.svg);
  mask-image: url(../../img/green-check.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #E3BDB2;
}

.lightbox .lb-image, .lb-outerContainer {
  border-radius: 30px !important;
}

.lb-data {
  padding: 0 25px !important;
}

#special-message {
  position: fixed;
  top: 0;
  border-radius: 0;
  height: 46px;
  max-height: 46px;
  box-sizing: border-box;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  width: 100%;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  z-index: 1000;
  gap: 16px;
  font-size: 0.8rem;
  background-color: #B85656;
  color: #fff;
}
@media (max-width: 767px) {
  #special-message {
    display: none;
  }
}
#special-message a {
  text-decoration: none;
  color: #fff;
}
#special-message a:hover {
  text-decoration: underline;
}
#special-message #special-message-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
  object-position: center;
}
#special-message #close-special-message {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100%;
  top: -5px;
  right: -30px;
  position: absolute;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
#special-message #close-special-message::before, #special-message #close-special-message::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #000;
  border-radius: 1px;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
}
#special-message #close-special-message::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#special-message #close-special-message:hover {
  opacity: 0.9;
}

.special-message-on #top-menu {
  top: 46px;
}

#top-menu {
  position: fixed;
  top: 0;
  border-radius: 0;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  height: 80px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
}
#top-menu #top-menu-inside-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 10px 40px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  max-width: 1500px;
}
#top-menu #top-menu-logo {
  padding-top: 5px;
  height: 40px;
  object-fit: contain;
  object-position: left;
}
#top-menu #menu-items {
  opacity: 0;
  display: flex;
  flex-flow: row;
  justify-content: end;
  gap: 40px;
  align-items: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
#top-menu #menu-items .more-button {
  position: relative;
}
#top-menu #menu-items .more-button::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.8em;
  line-height: 1;
}
#top-menu #menu-social-sites {
  display: flex;
  gap: 24px;
}
#top-menu #hamburger-wrapper {
  background: linear-gradient(0deg, #111 0%, #111 100%), #91F00A;
  border-radius: 16px;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
}
#top-menu #hamburger-wrapper #hamburger {
  display: inline-block;
  cursor: pointer;
}
#top-menu #hamburger-wrapper #hamburger .bar1, #top-menu #hamburger-wrapper #hamburger .bar2, #top-menu #hamburger-wrapper #hamburger .bar3 {
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#top-menu #hamburger-wrapper #hamburger .bar1 {
  width: 24px;
}
#top-menu #hamburger-wrapper #hamburger .bar2 {
  width: 15px;
}
#top-menu #hamburger-wrapper #hamburger .bar3 {
  width: 20px;
}
#top-menu #hamburger-wrapper #hamburger.active .bar1 {
  transform: translate(0, 7px) rotate(-45deg);
}
#top-menu #hamburger-wrapper #hamburger.active .bar2 {
  opacity: 0;
}
#top-menu #hamburger-wrapper #hamburger.active .bar3 {
  width: 24px;
  transform: translate(0, -7px) rotate(45deg);
}
@media (max-width: 767px) {
  #top-menu {
    height: 72px;
    padding: 10px 20px;
  }
  #top-menu #top-menu-logo {
    height: 30px;
  }
  #top-menu #CTA-button {
    display: none;
  }
  #top-menu #menu-items {
    display: none;
  }
  #top-menu #hamburger-wrapper {
    display: flex;
  }
}

.menu-item {
  white-space: nowrap;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.menu-item:before {
  content: "";
  display: block;
  height: 2px;
  background-color: #E3BDB2;
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -3px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.menu-item:hover, .menu-item.active {
  color: #E3BDB2;
}
.menu-item:hover:before, .menu-item.active:before {
  width: 100%;
  left: 0;
}

#mobile-menu-items {
  display: none;
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0 0 29.584px 0 rgba(0, 0, 0, 0.1);
  width: 90%;
  z-index: 1000;
  position: fixed;
  max-width: 1400px;
  height: fit-content;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#mobile-menu-items .menu-item {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: wrap;
  padding: 0 20px;
}

#secondary-menu {
  position: fixed;
  display: none;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 220px;
  z-index: 1100;
}
#secondary-menu .secondary-menu-list {
  margin: 0;
  padding: 1.5rem;
}
#secondary-menu .secondary-menu-list a.menu-item {
  display: block;
  width: fit-content;
  padding-bottom: 10px;
  margin-right: 10px;
}
#secondary-menu .secondary-menu-list a.menu-item:before {
  bottom: 7px;
}

#footer {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  padding: 40px 0 40px 0;
  margin-top: auto;
  background-color: #FFF;
}
#footer #footer-wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  padding: 40px 20px 0 20px;
  border-top: 1px solid #E3BDB2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  font-size: 1.7rem;
  line-height: 1.9rem;
  position: relative;
}
#footer #footer-wrapper #footer-logo {
  height: 72px;
  object-fit: contain;
  object-position: center;
}
#footer #footer-wrapper #footer-text {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
#footer #footer-wrapper #footer-contacts {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
#footer #footer-wrapper #copyrights {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
#footer #footer-wrapper #copyrights #footer-copyright-text {
  grid-column: 2;
  justify-self: center;
  font-size: 0.8rem;
  line-height: 1rem;
  color: #767676;
}
#footer #footer-wrapper #copyrights #creator {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  grid-column: 3;
  justify-self: end;
}
#footer #footer-wrapper #copyrights #creator span {
  color: #124E65;
  font-size: 0.8rem;
  line-height: 1rem;
  white-space: nowrap;
}
#footer #footer-wrapper #copyrights #creator img {
  width: 60px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1024px) {
  #footer #footer-wrapper {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
}
@media (max-width: 767px) {
  #footer {
    margin-bottom: 40px;
  }
  #footer #footer-wrapper {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.social-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #D7907B;
}
.social-icon.instagram {
  -webkit-mask: url("../icons/instagram.svg") center/contain no-repeat;
  mask: url("../icons/instagram.svg") center/contain no-repeat;
}
.social-icon.facebook {
  -webkit-mask: url("../icons/facebook.svg") center/contain no-repeat;
  mask: url("../icons/facebook.svg") center/contain no-repeat;
}

.button {
  border-radius: 30px;
  display: flex;
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.btn-black {
  background-color: #000;
  color: #FFF;
}
.btn-black:hover {
  background-color: #333;
  color: #FFF;
}

.btn-primary {
  background-color: #D7907B;
  border: 1px solid #D7907B;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(226.8604651163, 176.9127906977, 162.1395348837);
}

.btn-secondary {
  background-color: #FFF;
  border: 1px solid #D7907B;
  color: #D7907B;
}
.btn-secondary:hover {
  background-color: rgb(226.8604651163, 176.9127906977, 162.1395348837);
  color: #fff;
}

.btn-dark {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-dark:hover {
  opacity: 0.8;
}

.btn-link {
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  color: #E3BDB2;
}
.btn-link:hover {
  color: rgb(240.6, 221.0571428571, 215.4);
}

.blocks {
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}

.block {
  padding: 40px 0;
}

.buttons-holder {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.back-link {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  color: #3F3F3F;
  font-weight: 400;
  width: fit-content;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.back-link img {
  height: 5px;
  margin-top: 4px;
  object-position: center;
  object-fit: contain;
}
.back-link:hover {
  opacity: 0.9;
}

.block.text-block {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.block.text-block.narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.block.text-block.left {
  margin-left: 0;
}
.block.text-block.left .buttons-holder {
  justify-content: start;
}
.block.text-block.center .buttons-holder {
  justify-content: center;
}
.block.text-block.right {
  margin-right: 0;
}
.block.text-block.right .buttons-holder {
  justify-content: end;
}
.block.text-block .text-wrapper iframe {
  width: 100% !important;
  height: 750px !important;
}
@media (max-width: 1024px) {
  .block.text-block .text-wrapper iframe {
    height: 400px !important;
  }
}
@media (max-width: 767px) {
  .block.text-block .text-wrapper iframe {
    height: 200px !important;
  }
}

.image-wrapper.big {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-wrapper.big .image {
  border-radius: 300px 300px 0 300px;
  height: 700px;
}
.image-wrapper.big:before {
  content: "";
  position: absolute;
  border-radius: 300px 300px 0 300px;
  border: 2px solid #D7907B;
  width: 100%;
  height: 100%;
  left: -20px;
  top: -20px;
}

.image-wrapper.small {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-wrapper.small .image {
  border-radius: 0 300px 300px 300px;
  height: 450px;
}
.image-wrapper.small:before {
  content: "";
  position: absolute;
  border-radius: 300px 300px 0 300px;
  border: 2px solid #D7907B;
  width: 80%;
  height: 125%;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.block.image-with-text {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.block.image-with-text.blurred {
  position: relative;
}
.block.image-with-text.blurred:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 826px;
  background: rgba(227, 189, 178, 0.2);
  filter: blur(100px);
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
}
.block.image-with-text .image-wrapper {
  width: 40%;
}
.block.image-with-text .image-wrapper .image {
  object-fit: cover;
  object-position: center;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -ms-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.block.image-with-text .text-wrapper {
  width: 60%;
}
.block.image-with-text .text-wrapper p {
  width: 80%;
}
@media (max-width: 1024px) {
  .block.image-with-text .text-wrapper p {
    width: auto;
  }
}
.block.image-with-text .text-wrapper .buttons-holder {
  justify-content: start;
}
.block.image-with-text.right .text-wrapper {
  order: -1;
}
.block.image-with-text.bottom, .block.image-with-text.top {
  flex-flow: column-reverse;
  gap: 20px;
}
.block.image-with-text.bottom .text-wrapper, .block.image-with-text.top .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center;
}
.block.image-with-text.bottom .image-wrapper, .block.image-with-text.top .image-wrapper {
  width: unset;
}
.block.image-with-text.bottom .image-wrapper .image, .block.image-with-text.top .image-wrapper .image {
  max-height: unset;
}
.block.image-with-text.top {
  flex-flow: column;
}
@media (max-width: 1024px) {
  .block.image-with-text {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  .block.image-with-text .image-wrapper {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
  }
  .block.image-with-text .image-wrapper .image {
    max-height: 400px;
  }
  .block.image-with-text .text-wrapper {
    order: -1;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
  }
}

.block.gallery .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin-bottom: 48px;
}
.block.gallery .text-wrapper .text {
  text-align: center;
}
.block.gallery .gallery-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.block.gallery .gallery-images a {
  height: min-content;
}
.block.gallery .gallery-images a:first-child img {
  border-top-left-radius: 50px;
}
.block.gallery .gallery-images a:last-child img {
  border-bottom-right-radius: 50px;
}
.block.gallery .gallery-images img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.block.gallery .gallery-images img:hover {
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .block.gallery .gallery-images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .block.gallery .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.block.employees-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center;
  margin: 20px auto;
}
.block.employees-block .employees-wrapper:not(:first-child) {
  margin-top: 60px;
}
.block.employees-block .employees-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 64px;
}
.block.employees-block .employees-wrapper .employee-card {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.block.employees-block .employees-wrapper .employee-card .image-wrapper {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: 490px;
  max-width: 500px;
}
.block.employees-block .employees-wrapper .employee-card .image-wrapper .image {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.block.employees-block .employees-wrapper .employee-card .text-wrapper {
  display: flex;
  flex-flow: column;
  gap: 24px;
  text-align: left;
}
.block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-name {
  text-decoration: underline;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-position {
  color: #E3BDB2;
}
.block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-bio {
  font-weight: 400;
}
.block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-email {
  color: #E3BDB2;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .block.employees-block .employees-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .block.employees-block .employees-wrapper .employee-card {
    max-width: 500px;
  }
  .block.employees-block .employees-wrapper .employee-card .image-wrapper {
    height: 300px;
  }
}

.block.faq-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: left;
  padding: 40px;
  margin-left: 0;
}
.block.faq-block .questions-wrapper {
  display: block;
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 1024px) {
  .block.faq-block .questions-wrapper {
    column-count: 1;
  }
}
.block.faq-block .questions-wrapper .question-card {
  display: inline-block;
  margin: 0 0 40px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  flex-flow: column;
  padding: 40px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.block.faq-block .questions-wrapper .question-card .answer {
  height: 0;
  overflow: hidden;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.block.faq-block .questions-wrapper .question-card .question {
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
  cursor: pointer;
}
.block.faq-block .questions-wrapper .question-card .question:before {
  content: "";
  display: block;
  height: 2px;
  background-color: #D7907B;
  position: absolute;
  width: 72px;
  left: 0;
  bottom: 0px;
}
.block.faq-block .questions-wrapper .question-card.active, .block.faq-block .questions-wrapper .question-card:hover {
  background-color: #3D3F3E;
}
.block.faq-block .questions-wrapper .question-card.active .question, .block.faq-block .questions-wrapper .question-card:hover .question {
  color: #D7907B;
}

.block.socials-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center;
  margin: 20px auto 80px auto;
}
.block.socials-block .socials-wrapper {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.block.socials-block .socials-wrapper .social-card {
  width: fit-content;
  text-decoration: none;
  display: flex;
}
.block.socials-block .socials-wrapper .social-card .social-image {
  width: 80px;
  height: 80px;
  background-color: #D7907B;
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  padding-top: 40px;
}
.block.socials-block .socials-wrapper .social-card .social-text {
  border-radius: 20px;
  border: 1px solid #D7907B;
  padding: 20px;
  box-shadow: 0 0 100px 0 rgba(135, 191, 65, 0.3);
  color: #111;
  background-color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  height: fit-content;
  margin-left: -20px;
  z-index: 2;
}

.block.header-image-block {
  position: relative;
  height: 450px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.block.header-image-block .image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.block.header-image-block .image-wrapper img {
  border-radius: 300px 300px 0 300px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block.header-image-block .image-wrapper:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 105%;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #D7907B;
  border-radius: 300px 300px 0 300px;
}
.block.header-image-block .text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block.header-image-block .text-wrapper .text {
  text-align: center;
}
.block.header-image-block .text-wrapper .text > * {
  color: #FFF;
}

.block.columns-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin-bottom: 48px;
}
.block.columns-block .text-wrapper .text {
  text-align: center;
}
.block.columns-block .columns {
  --columns-gap: 100px;
  display: flex;
  flex-flow: row;
  gap: var(--columns-gap);
}
.block.columns-block .columns .column {
  position: relative;
  flex: 1;
}
.block.columns-block .columns .column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--columns-gap) / -2);
  width: 1px;
  height: 80%;
  background-color: #D7907B;
}
.block.columns-block .columns .column .column-icon {
  width: 50px;
  height: 50px;
  background-color: #D7907B;
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .block.columns-block .columns {
    --columns-gap: 50px;
  }
}
@media (max-width: 767px) {
  .block.columns-block .columns {
    flex-flow: column;
  }
  .block.columns-block .columns .column:not(:last-child)::after {
    display: none;
  }
}

.block.contact-form-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.block.contact-form-block .text-wrapper {
  margin: 20px auto 40px auto;
}
.block.contact-form-block #contact-form {
  display: flex;
  flex-flow: column;
  gap: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
.block.contact-form-block #contact-form .form-group-row {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.block.contact-form-block #contact-form .form-group-row .form-group {
  display: flex;
  flex-flow: column;
  gap: 4px;
  flex: 1;
}
.block.contact-form-block #contact-form .form-group-row .form-group label {
  font-weight: 400;
  font-size: 0.8rem;
  color: #000;
  padding-left: 16px;
}
.block.contact-form-block #contact-form .form-group-row .form-group input, .block.contact-form-block #contact-form .form-group-row .form-group textarea, .block.contact-form-block #contact-form .form-group-row .form-group select {
  border-radius: 20px;
  border: 1px solid #91F00A;
  padding: 16px;
  box-shadow: 0 0 100px 0 rgba(135, 191, 65, 0.1);
}
.block.contact-form-block #contact-form .form-group-row .form-group input:focus, .block.contact-form-block #contact-form .form-group-row .form-group input:focus-visible, .block.contact-form-block #contact-form .form-group-row .form-group textarea:focus, .block.contact-form-block #contact-form .form-group-row .form-group textarea:focus-visible, .block.contact-form-block #contact-form .form-group-row .form-group select:focus, .block.contact-form-block #contact-form .form-group-row .form-group select:focus-visible {
  border-color: #000;
  outline: none;
}
.block.contact-form-block #contact-form .form-group-row .submit-button {
  cursor: pointer;
}

html.gallery .gallery-categories {
  display: flex;
  flex-flow: row;
  justify-content: center;
  flex-wrap: wrap;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin: 24px 0;
  gap: 16px;
}
html.gallery .gallery-category-button {
  cursor: pointer;
}
html.gallery .gallery-category-button.active {
  pointer-events: none;
}
html.gallery .gallery.gallery-images {
  margin-bottom: 20px;
}
html.gallery .gallery.gallery-images a img {
  border-radius: 0 !important;
}
html.gallery .gallery.gallery-images.hidden {
  display: none;
}

html.food-menu .food-menu-categories {
  display: flex;
  flex-flow: row;
  justify-content: center;
  flex-wrap: wrap;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin: 24px 0;
  gap: 16px;
}
html.food-menu .food-menu-category-button {
  cursor: pointer;
}
html.food-menu .food-menu-category-button.active {
  pointer-events: none;
}
html.food-menu .food-menus {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin-bottom: 60px;
}
html.food-menu .food-menu-items.hidden {
  display: none;
}

.food-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.food-menu-item:last-child {
  border-bottom: none;
}
.food-menu-item .food-menu-item-texts {
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.food-menu-item .food-menu-item-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.food-menu-item .food-menu-item-description {
  font-weight: 400;
  font-size: 0.8rem;
  color: #666;
  white-space: pre-line;
}
.food-menu-item .food-menu-item-price {
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.block.food-menu {
  position: relative;
  overflow: visible;
}
.block.food-menu:before {
  content: "";
  border-radius: 100%;
  background: rgba(227, 152, 78, 0.2);
  filter: blur(100px);
  max-width: 530px;
  height: 70%;
  width: auto;
  aspect-ratio: 1/1;
  position: absolute;
  right: 5%;
  top: 10%;
  z-index: –1;
}
.block.food-menu .food-menu-grid-container {
  display: grid;
  grid-template-columns: 1fr 600px 1fr;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 1024px) {
  .block.food-menu .food-menu-grid-container {
    display: flex;
    flex-flow: column;
    gap: 20px;
  }
}
.block.food-menu .menu-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 2;
}
.block.food-menu .menu-content .text-wrapper .text {
  text-align: center;
}
.block.food-menu .decorative-column {
  display: flex;
}
@media (max-width: 1024px) {
  .block.food-menu .decorative-column {
    display: none;
  }
}
.block.food-menu .decorative-column.left {
  justify-content: center;
  align-items: flex-end;
}
.block.food-menu .decorative-column.right {
  justify-content: center;
  align-items: flex-start;
}
.block.food-menu .decorative-image-1 {
  width: 100%;
  max-width: 375px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.block.food-menu .decorative-image-2 {
  width: 100%;
  max-width: 250px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/*# sourceMappingURL=styles.css.map */
