@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
html {
  background-color: #ffffff;
  color: #101010;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media (min-width: 1280px) {
  body {
    font-size: 16px;
  }
}

ul, li, ol, dl, dt, dd, form, p, img, video a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  border: none;
  box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

button:focus, video:focus, input:focus, textarea:focus, select:focus, select:focus-visible {
  outline: none !important;
  outline-width: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

::selection {
  background-color: #b5a5e2;
  color: #ffffff;
}

:focus {
  outline: 0 !important;
}

a, label, span, ul, input, textarea, button, div, li, ol, p {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

button {
  cursor: pointer;
  padding: 0;
  outline: none;
  border: none;
}

input, select, textarea, button {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

input, textarea {
  font-size: 16px;
}

textarea {
  resize: none;
}

svg, picture, img {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.grecaptcha-badge {
  right: -260px !important;
}

.hidden {
  display: none;
}

.innerIntro__pic__img, .announcements__pic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer__main__container, .header__container, .page404__container, .innerIntro__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.innerIntro {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .innerIntro {
    margin-bottom: 80px;
  }
}
@media (min-width: 1280px) {
  .innerIntro {
    margin-bottom: 100px;
  }
}

.announcements__btn__link {
  position: relative;
  background-color: #957ed6;
  color: #ffffff;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .announcements__btn__link {
    font-size: 15px;
    height: 52px;
    padding: 0 28px;
  }
}
.announcements__btn__link .shade {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #403146;
  transition: width 0.5s, left 0.5s, right 0.5s;
}
.announcements__btn__link .text {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .announcements__btn__link:hover .shade {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.stickyCookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 8px;
  width: calc(100% - 40px);
  max-width: 400px;
  padding: 20px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
}
.stickyCookies.visible {
  opacity: 1;
  pointer-events: all;
}
.stickyCookies p {
  font-size: 13px;
  line-height: 1.5;
}
.stickyCookies__btns {
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
.stickyCookies__btns__link {
  border-radius: 6px;
  padding: 7px 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.stickyCookies__btns__link:nth-child(1) {
  color: #ffffff;
  background-color: #2e2e2e;
}
@media (min-width: 1280px) {
  .stickyCookies__btns__link:nth-child(1):hover {
    background-color: #6ab04c;
  }
}
.stickyCookies__btns__link:nth-child(2) {
  border: 1px solid #101010;
  color: #101010;
}
@media (min-width: 1280px) {
  .stickyCookies__btns__link:nth-child(2):hover {
    border-color: #b5a5e2;
    color: #b5a5e2;
  }
}

.announcements {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 40px 30px;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.5s;
}
@media (min-width: 768px) {
  .announcements {
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .announcements {
    padding: 60px;
  }
}
.announcements.visible {
  opacity: 1;
  pointer-events: all;
}
.announcements__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.announcements__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
}
@media (min-width: 1280px) {
  .announcements__container {
    padding: 20px 20px 25px;
  }
}
.announcements__close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffa800;
  cursor: pointer;
  transition: background-color 0.5s;
}
.announcements__close .icon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  transition: transform 0.5s;
}
@media (min-width: 1280px) {
  .announcements__close:hover {
    background-color: #2e2e2e;
  }
}
@media (min-width: 1280px) {
  .announcements__close:hover .icon {
    transform: rotate(90deg);
  }
}
.announcements__pic {
  height: 280px;
  margin-bottom: 20px;
}
@media (min-width: 400px) {
  .announcements__pic {
    height: 300px;
  }
}
@media (min-width: 540px) {
  .announcements__pic {
    height: 340px;
  }
}
@media (min-width: 768px) {
  .announcements__pic {
    height: 400px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1280px) {
  .announcements__pic {
    height: 450px;
    margin-bottom: 30px;
  }
}
.announcements__title {
  text-align: center;
  color: #403146;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
}
@media (min-width: 768px) {
  .announcements__title {
    font-size: 28px;
  }
}
@media (min-width: 1280px) {
  .announcements__title {
    font-size: 32px;
  }
}
.announcements__text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .announcements__text {
    margin-top: 12px;
  }
}
@media (min-width: 1280px) {
  .announcements__text {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 15px;
  }
}
.announcements__btn {
  display: flex;
  justify-content: center;
  padding: 20px 0 5px;
}
.innerIntro {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.innerIntro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.innerIntro__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.innerIntro__container {
  position: relative;
  z-index: 1;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .innerIntro__container {
    height: 320px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__container {
    height: 360px;
  }
}
.innerIntro__title {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  display: flex;
}
@media (min-width: 768px) {
  .innerIntro__title {
    font-size: 36px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__title {
    font-size: 40px;
  }
}
.innerIntro__title span {
  position: relative;
  z-index: 1;
  background-color: #b5a5e2;
  padding: 10px 24px 10px 0;
  border-radius: 0 5px 5px 0;
}
@media (min-width: 768px) {
  .innerIntro__title span {
    padding: 12px 32px 12px 0;
  }
}
.innerIntro__title:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 1000px;
  background-color: #b5a5e2;
}
.innerIntro__breadcrumb {
  font-size: 13px;
  padding-top: 24px;
}
@media (min-width: 1280px) {
  .innerIntro__breadcrumb {
    font-size: 14px;
  }
}
.innerIntro__breadcrumb__link {
  color: #ffa800;
  font-weight: 500;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .innerIntro__breadcrumb__link:hover {
    color: #b5a5e2;
  }
}

.whatsApp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}
.whatsApp__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #128c7e;
  transition: background-color 0.5s;
}
.whatsApp__icon .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
@media (min-width: 1280px) {
  .whatsApp__icon:hover {
    background-color: #25d366;
  }
}

.quickLinksIcon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background-color: #ffa800;
}
.quickLinksIcon__line {
  width: 22px;
  height: 3px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: width 0.5s;
}
.quickLinksIcon__line.line-2 {
  margin: 4px 0;
  width: 12px;
}
.quickLinksIcon.active .quickLinksIcon__line.line-2 {
  width: 22px;
}
@media (min-width: 1280px) {
  .quickLinksIcon:hover .quickLinksIcon__line.line-2 {
    width: 22px;
  }
}

.quickLinkOptions {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 78px;
  z-index: 5;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #F7F7F7;
  color: #403146;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  .quickLinkOptions {
    padding: 30px;
  }
}
.quickLinkOptions__title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 16px;
}
@media (min-width: 1280px) {
  .quickLinkOptions__title {
    font-size: 24px;
  }
}
.quickLinkOptions__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
.quickLinkOptions__contact__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.quickLinkOptions__contact__item .icon {
  width: 16px;
  height: 16px;
  fill: #403146;
}
.quickLinkOptions__contact__item span {
  font-size: 14px;
  font-weight: 500;
}
.quickLinkOptions__contact__item span a {
  color: #403146;
  text-decoration: none;
}
.quickLinkOptions__contact__item span.last {
  max-width: 270px;
}
.quickLinkOptions__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quickLinkOptions__social__item {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
.quickLinkOptions__social__item .icon {
  width: 16px;
  height: 16px;
  fill: #403146;
  transition: fill 0.5s;
}
@media (min-width: 1280px) {
  .quickLinkOptions__social__item:hover {
    background-color: #957ed6;
  }
}
@media (min-width: 1280px) {
  .quickLinkOptions__social__item:hover .icon {
    fill: #ffffff;
  }
}

.animate {
  opacity: 0;
}
.animate__leftToRight {
  transform: translateX(-150px);
}
.animate__leftToRight.animated {
  transform: translateX(0);
}
.animate__rightToLeft {
  transform: translateX(150px);
}
.animate__rightToLeft.animated {
  transform: translateX(0);
}
.animate__slideInDown {
  transform: translateY(-80px);
}
.animate__slideInDown.animated {
  transform: translateY(0);
}
.animate__slideInUp {
  transform: translateY(80px);
}
.animate__slideInUp.animated {
  transform: translateY(0);
}
.animate.animated {
  opacity: 1;
  transition: opacity 0.75s, transform 0.75s;
}

.page404 {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .page404 {
    padding: 80px 0;
  }
}
@media (min-width: 1280px) {
  .page404 {
    padding: 100px 0;
  }
}
.page404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page404__title {
  font-size: 40vw;
  color: #957ed6;
}
@media (min-width: 768px) {
  .page404__title {
    font-size: 30vw;
  }
}
@media (min-width: 1280px) {
  .page404__title {
    font-size: 20vw;
  }
}
@media (min-width: 1440px) {
  .page404__title {
    font-size: 15vw;
  }
}
.page404__title span {
  color: #403146;
}
.page404__text {
  font-size: 5vw;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page404__text {
    font-size: 4vw;
  }
}
@media (min-width: 1280px) {
  .page404__text {
    font-size: 3vw;
  }
}
@media (min-width: 1440px) {
  .page404__text {
    font-size: 2.5vw;
  }
}
.page404__btn {
  display: flex;
}
.page404__btn__link {
  background-color: #957ed6;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .page404__btn__link:hover {
    background-color: #403146;
  }
}

/* Default */
.glf-button-default {
  background: transparent !important;
  font-family: "Montserrat", sans-serif !important;
  margin: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  position: relative;
  left: -200px;
  height: 50px;
  opacity: 0;
  animation-delay: 0.25s;
  animation-name: headerLogo;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transition: height 0.5s;
}
@media (min-width: 1280px) {
  .header__logo img {
    height: 70px;
  }
}
.header__right {
  margin-right: -20px;
  opacity: 0;
  display: flex;
  align-items: center;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.75s;
}
@media (min-width: 1280px) {
  .header__right {
    margin-right: 0;
  }
}
.header__right__reservation {
  display: none;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 540px) {
  .header__right__reservation {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header__right__reservation {
    margin-right: 0;
  }
}
.header__right__reservation .icon {
  width: 42px;
  height: 42px;
  background-color: #7557ca;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .header__right__reservation .icon {
    width: 48px;
    height: 48px;
  }
}
.header__right__reservation .icon .icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
@media (min-width: 1280px) {
  .header__right__reservation .icon .icon {
    width: 28px;
    height: 28px;
  }
}
.header__right__reservation .text {
  background-color: #957ed6;
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .header__right__reservation .text {
    font-size: 15px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  .header__right__reservation:hover .icon {
    background-color: #322737;
  }
}
@media (min-width: 1280px) {
  .header__right__reservation:hover .text {
    background-color: #403146;
  }
}
.header__right__link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5b4664;
}
@media (min-width: 1280px) {
  .header__right__link {
    display: none;
  }
}
.header__right__link .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.header__navTrigger {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #403146;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .header__navTrigger {
    display: none;
  }
}
.header__navTrigger__line {
  position: relative;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 6px;
  background-color: #ffffff;
}
.header__navTrigger__line:nth-child(1) {
  top: 0;
  transition: top 0.5s, opacity 0.5s;
}
.header__navTrigger__line:nth-child(2) {
  margin: 4px 0;
  transition: opacity 0.5s;
}
.header__navTrigger__line:nth-child(3) {
  bottom: 0;
  transition: bottom 0.5s, opacity 0.5s;
}
.header__navTrigger .icon {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  opacity: 0;
  width: 16px;
  height: 16px;
  fill: #ffffff;
  transition: opacity 0.5s;
}
.header__navTrigger.active .header__navTrigger__line {
  opacity: 0;
}
.header__navTrigger.active .header__navTrigger__line:nth-child(1) {
  top: -50px;
  transition: top 0.5s, opacity 0.5s;
}
.header__navTrigger.active .header__navTrigger__line:nth-child(3) {
  bottom: -50px;
}
.header__navTrigger.active .icon {
  opacity: 1;
  transition: opacity 0.5s 0.5s;
}
.header__nav {
  display: none;
}
@media (min-width: 1280px) {
  .header__nav {
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    animation-delay: 0.75s;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
}
.header__nav__item--dropdown {
  position: relative;
}
.header__nav__item--dropdown .header__nav__subNav {
  position: absolute;
  top: 120px;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  overflow: hidden;
  padding: 7px 0;
  pointer-events: none;
  transition: top 0.5s, opacity 0.5s;
}
.header__nav__item--dropdown .header__nav__subNav__link {
  padding: 8px 15px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2e2e2e;
  transition: background-color 0.5s, color 0.5s;
}
.header__nav__item--dropdown .header__nav__subNav__link:hover {
  background-color: #b5a5e2;
  color: #ffffff;
}
.header__nav__item--dropdown .header__nav__subNav__link.active-sub-nav {
  background-color: #403146;
  color: #ffffff;
}
.header__nav__item--dropdown:hover .header__nav__subNav {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.header__nav__link, .header__nav .glf-button-default {
  position: relative;
  text-transform: uppercase;
  height: 100px;
  line-height: 100px;
  display: block;
  font-size: 14px;
  color: #957ed6;
  font-weight: 600;
  transition: color 0.5s;
}
.header__nav__link:before, .header__nav .glf-button-default:before {
  content: "";
  position: absolute;
  top: 65px;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #957ed6;
  transition: width 0.5s, left 0.5s, right 0.5s;
}
.header__nav__link:hover:before, .header__nav .glf-button-default:hover:before {
  left: 0;
  right: auto;
  width: 100%;
}
.header__nav__link.active-nav, .header__nav .glf-button-default.active-nav {
  color: #403146;
}
.header__nav__link.active-nav:before, .header__nav .glf-button-default.active-nav:before {
  width: 100%;
  background-color: #403146;
}
.header__nav .glf-button-default {
  color: #957ed6 !important;
  padding: 0;
}
.header__nav .glf-button-default:hover {
  color: #957ed6 !important;
}

.sideNav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  opacity: 0;
  pointer-events: none;
  background-color: #251c28;
  transform: scale(1.2);
  overflow-y: auto;
  padding: 80px 0 100px;
  transition: transform 0.5s, opacity 0.25s;
}
.sideNav.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.sideNav__list {
  width: 100%;
  max-width: 300px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 500;
}
.sideNav__list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sideNav__list__link, .sideNav__list .glf-button-default {
  color: #ffffff;
  text-align: center;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
}
.sideNav__list__link.active-nav, .sideNav__list .glf-button-default.active-nav {
  color: #ffa800;
}
.sideNav__list__dropdown {
  display: flex;
  align-items: center;
}
.sideNav__list__dropdown.active-nav .sideNav__list__link {
  color: #ffa800;
}
.sideNav__list__dropdown.active-nav .sideNav__list__dropdown__arrow .icon {
  fill: #ffa800;
}
.sideNav__list__dropdown__arrow {
  padding: 5px;
  margin-top: 2px;
}
.sideNav__list__dropdown__arrow.opened .icon {
  transform: rotateX(180deg);
}
.sideNav__list__dropdown__arrow .icon {
  width: 12px;
  height: 12px;
  fill: #ffffff;
  transition: transform 0.5s;
}
.sideNav__list__subNav {
  display: none;
  padding-bottom: 5px;
}
.sideNav__list__subNav__link {
  display: block;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  margin-top: 14px;
}
.sideNav__list__subNav__link.active-sub-nav {
  color: #ffa800;
}
.sideNav__order-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sideNav__order-btn__link {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  border-radius: 6px;
  padding: 0 6px 0 20px;
  color: #ffffff;
  font-size: 14px;
  border: 1px solid #ffffff;
  font-weight: 500;
}
@media (min-width: 540px) {
  .sideNav__order-btn__link {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sideNav__order-btn__link {
    margin-right: 15px;
  }
}
@media (min-width: 1280px) {
  .sideNav__order-btn__link {
    margin-right: 0;
  }
}
.sideNav__order-btn__link span {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.sideNav__order-btn__link span .icon {
  width: 10px;
  height: 10px;
}
.sideNav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.sideNav__social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sideNav__social__link .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.sideNav__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  color: #ffffff;
  padding: 0 20px;
}
.sideNav__address__item:last-child {
  max-width: 250px;
}
@media (min-width: 540px) {
  .sideNav__address__item:last-child {
    max-width: none;
  }
}
.sideNav__address__item a {
  color: #ffffff;
  text-decoration: none;
}

@keyframes headerLogo {
  0% {
    opacity: 0;
    left: -200px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer__logo {
  position: relative;
  display: flex;
  justify-content: center;
}
.footer__logo:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #403146;
}
.footer__logo__link {
  position: relative;
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer__logo__link__img {
  height: 90px;
}
.footer .footerLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .footer .footerLinks {
    gap: 16px 20px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .footer .footerLinks {
    gap: 30px;
    padding-bottom: 36px;
  }
}
.footer .footerLinks__item, .footer .footerLinks .glf-button-default {
  color: #ffffff;
  font-size: 14px;
  padding: 2px 0;
  font-weight: 500;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .footer .footerLinks__item:hover, .footer .footerLinks .glf-button-default:hover {
    color: #b5a5e2;
  }
}
.footer .footerLinks__item.active-nav, .footer .footerLinks .glf-button-default.active-nav {
  color: #ffa800;
}
@media (min-width: 1280px) {
  .footer .footerLinks .glf-button-default:hover {
    color: #b5a5e2 !important;
  }
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .footer__social {
    padding-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .footer__social {
    padding-bottom: 36px;
  }
}
.footer__social__link {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .footer__social__link:hover {
    background-color: #b5a5e2;
  }
}
.footer__social__link .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}
.footer__contact__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1280px) {
  .footer__contact__item {
    font-size: 15px;
  }
}
.footer__contact__item .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.footer__contact__item span {
  color: #ffffff;
  font-weight: 500;
  flex: 1;
}
.footer__contact__item span.last {
  max-width: 270px;
}
@media (min-width: 540px) {
  .footer__contact__item span.last {
    max-width: none;
  }
}
.footer__contact__item span a {
  color: #ffffff;
  text-decoration: none;
}
.footer__main {
  background-color: #403146;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .footer__main {
    padding: 55px 0;
  }
}
@media (min-width: 1280px) {
  .footer__main {
    padding: 70px 0;
  }
}
.footer__last {
  background-color: #322737;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px 0;
  color: #ffffff;
}
.footer__last__text {
  font-size: 13px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.footer__last__text a {
  color: #b5a5e2;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .footer__last__text a:hover {
    color: #957ed6;
  }
}
.footer__last__top {
  width: 50px;
  height: 60px;
  background-color: #403146;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 1024px) {
  .footer__last__top {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .footer__last__top:hover {
    background-color: #b5a5e2;
  }
}
.footer__last__top .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
@media (min-width: 1024px) {
  .footer__last__top .icon {
    width: 14px;
    height: 14px;
  }
}

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