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

* {
  box-sizing: border-box;
}

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

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: #B00404;
  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: "Outfit", 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, .page404__container, .innerIntro__container {
  width: 100%;
  max-width: 1240px;
  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;
  }
}

.stickyCookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 20px;
  width: calc(100% - 40px);
  max-width: 750px;
  padding: 20px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
}
@media (min-width: 400px) {
  .stickyCookies {
    padding: 24px;
  }
}
.stickyCookies.visible {
  opacity: 1;
  pointer-events: all;
}
.stickyCookies p {
  font-size: 14px;
  line-height: 1.5;
}
.stickyCookies__btns {
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
.stickyCookies__btns__link {
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.stickyCookies__btns__link:nth-child(1) {
  color: #ffffff;
  background-color: #222f3e;
}
@media (min-width: 1280px) {
  .stickyCookies__btns__link:nth-child(1):hover {
    background-color: #B00404;
  }
}
.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: #B00404;
    color: #B00404;
  }
}

.announcements {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 40px 20px;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.5s;
}
@media (min-width: 540px) {
  .announcements {
    padding: 40px 30px;
  }
}
@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;
}
@media (min-width: 1280px) {
  .announcements__container {
    padding: 20px 20px 25px;
  }
}
.announcements__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B00404;
  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: #222f3e;
  }
}
@media (min-width: 1280px) {
  .announcements__close:hover .icon {
    transform: rotate(90deg);
  }
}
.announcements__pic {
  height: 280px;
  margin-bottom: 25px;
}
@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: 30px;
  }
}
@media (min-width: 1280px) {
  .announcements__pic {
    height: 450px;
    margin-bottom: 35px;
  }
}
.announcements__title {
  text-align: center;
  color: #B00404;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .announcements__title {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .announcements__title {
    font-size: 36px;
  }
}
.announcements__text {
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .announcements__text {
    margin-top: 12px;
  }
}
@media (min-width: 1280px) {
  .announcements__text {
    margin-top: 15px;
    line-height: 1.6;
  }
}
.announcements__btn {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}
.announcements__btn__link {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 500;
  background-color: #B00404;
  color: #ffffff;
  font-size: 16px;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .announcements__btn__link {
    padding: 14px 20px;
  }
}
@media (min-width: 1280px) {
  .announcements__btn__link:hover {
    background-color: #222f3e;
  }
}

.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.75);
}
.innerIntro__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.innerIntro__container {
  position: relative;
  z-index: 1;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .innerIntro__container {
    height: 260px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__container {
    height: 300px;
  }
}
.innerIntro__title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .innerIntro__title {
    font-size: 60px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__title {
    font-size: 72px;
  }
}
.innerIntro__breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.innerIntro__breadcrumb__inner {
  padding: 14px 20px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 6px 6px 0 0;
}
.innerIntro__breadcrumb__link {
  color: #ffffff;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .innerIntro__breadcrumb__link:hover {
    color: #009432;
  }
}

.whatsApp {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 5;
}
.whatsApp__icon {
  width: 44px;
  height: 44px;
  border-radius: 6px 0 0 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;
  }
}
.whatsApp__list {
  position: absolute;
  right: 0;
  bottom: 46px;
  background-color: #535c68;
  border-radius: 6px 0 0 6px;
  padding: 12px;
  display: none;
}
.whatsApp__list__item {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  transition: color 0.5s;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.5s;
}
.whatsApp__list__item:nth-child(2) {
  margin-top: 2px;
}
@media (min-width: 1024px) {
  .whatsApp__list__item:hover {
    background-color: #25d366;
  }
}

.currentStatus {
  position: fixed;
  bottom: 20px;
  left: 0;
  z-index: 5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
}
.currentStatus__status {
  text-align: center;
  padding: 0 12px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.currentStatus__status.closed {
  background-color: #B00404;
}
.currentStatus__status.open {
  background-color: #009432;
}
.currentStatus__status.soon {
  background-color: #d35400;
}

.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);
  animation-delay: 5s;
}
.animate__slideInDown.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: #B00404;
}
@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: #101010;
}
.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: #B00404;
  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: #101010;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: top 0.5s;
}
.header.sm-header {
  top: -40px;
}
.header.sm-header .sideNav {
  top: 70px;
  height: calc(100% - 70px);
}
.header__top {
  background-color: #535c68;
  height: 40px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.header__top__contact {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
}
@media (min-width: 400px) {
  .header__top__contact {
    gap: 32px;
  }
}
.header__top__contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
}
.header__top__contact__item a {
  color: #ffffff;
  text-decoration: none;
}
.header__top__contact__item .icon {
  width: 15px;
  height: 15px;
  fill: #ffffff;
}
.header__top__contact__item:nth-child(3) {
  display: none;
}
@media (min-width: 768px) {
  .header__top__contact__item:nth-child(3) {
    display: flex;
  }
}
.header__mid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}
@media (min-width: 1280px) {
  .header__mid {
    background-color: #101010;
  }
}
.header__logo {
  margin-left: 20px;
}
@media (min-width: 1280px) {
  .header__logo {
    margin-left: 0;
  }
}
.header__logo img {
  position: relative;
  left: -200px;
  height: 50px;
  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;
    border-radius: 0;
  }
}
.header__right {
  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: 540px) {
  .header__right {
    gap: 1px;
  }
}
.header__right__order-online {
  display: none;
  height: 70px;
  background-color: #101010;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 20px;
  transition: background-color 0.5s;
}
@media (min-width: 540px) {
  .header__right__order-online {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .header__right__order-online {
    background-color: #009432;
    font-size: 15px;
    padding: 0 25px;
  }
}
@media (min-width: 1280px) {
  .header__right__order-online:hover {
    background-color: #B00404;
  }
}
.header__right__lang {
  opacity: 0;
  display: flex;
  flex-direction: column;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
}
.header__right__lang .lang-item {
  display: flex;
}
.header__right__lang .lang-item a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
  background-color: #222f3e;
  opacity: 0.7;
}
@media (min-width: 1280px) {
  .header__right__lang .lang-item a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.header__right__lang .lang-item.current-lang a {
  opacity: 1;
}
.header__navTrigger {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #B00404;
  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;
    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:hover .header__nav__link:before {
  height: 100%;
}
.header__nav__item--dropdown .header__nav__subNav {
  position: absolute;
  top: 100px;
  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: 7px 15px;
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #222f3e;
  transition: background-color 0.5s, color 0.5s;
}
.header__nav__item--dropdown .header__nav__subNav__link:hover {
  background-color: #fed330;
}
.header__nav__item--dropdown .header__nav__subNav__link.active-sub-nav {
  background-color: #B00404;
  color: #ffffff;
}
.header__nav__item--dropdown:hover .header__nav__subNav {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.header__nav__link {
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
  height: 70px;
  line-height: 70px;
  padding: 0 25px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.5s;
}
.header__nav__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: height 0.5s;
}
.header__nav__link:hover:before {
  height: 100%;
}
.header__nav__link.active-nav {
  color: #ffffff;
}
.header__nav__link.active-nav:before {
  height: 100%;
  background-color: #B00404;
}

.sideNav {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100% - 110px);
  opacity: 0;
  pointer-events: none;
  background-color: #222f3e;
  transform: scale(1.2);
  overflow-y: auto;
  padding: 80px 0;
  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: 16px;
}
.sideNav__list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sideNav__list__link {
  color: #ffffff;
  text-align: center;
  padding: 6px 10px;
}
.sideNav__list__link.active-nav {
  color: #fc8484;
}
.sideNav__list__dropdown {
  display: flex;
  align-items: center;
}
.sideNav__list__dropdown.active-nav .sideNav__list__link {
  color: #fc8484;
}
.sideNav__list__dropdown.active-nav .sideNav__list__dropdown__arrow .icon {
  fill: #fc8484;
}
.sideNav__list__dropdown__arrow {
  padding: 5px;
}
.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: 14px;
  margin-top: 14px;
}
.sideNav__list__subNav__link.active-sub-nav {
  color: #fc8484;
}
.sideNav__reserve-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sideNav__reserve-btn__link {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  border-radius: 6px;
  background-color: #B00404;
  padding: 0 6px 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 540px) {
  .sideNav__reserve-btn__link {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sideNav__reserve-btn__link {
    margin-right: 15px;
  }
}
@media (min-width: 1280px) {
  .sideNav__reserve-btn__link {
    margin-right: 0;
  }
}
.sideNav__reserve-btn__link span {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.sideNav__reserve-btn__link span .icon {
  width: 12px;
  height: 12px;
  fill: #B00404;
}
.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;
  gap: 18px;
  color: #ffffff;
}
.sideNav__address__item a {
  color: #ffffff;
  text-decoration: none;
}

@keyframes headerLogo {
  0% {
    left: -200px;
  }
  100% {
    left: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  font-size: 16px;
}
.footer__main {
  background-color: #222f3e;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .footer__main {
    padding: 80px 0;
  }
}
@media (min-width: 1280px) {
  .footer__main {
    padding: 100px 0;
  }
}
.footer__main .blockAbout {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__main .blockAbout {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .footer__main .blockAbout {
    gap: 48px;
    padding-bottom: 60px;
  }
}
.footer__main .blockAbout__link {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__main .blockAbout__link {
    margin-bottom: 0;
  }
}
.footer__main .blockAbout__link__logo {
  height: 80px;
}
.footer__main .blockAbout__text {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__main .blockAbout__text {
    text-align: left;
    flex: 1;
    margin-bottom: 0;
  }
}
.footer__main .blockAbout__list {
  display: flex;
  gap: 8px;
}
.footer__main .blockAbout__list__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__main .blockAbout__list__link:hover {
    background-color: #B00404;
  }
}
.footer__main .blockAbout__list__link .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.footer__main .footerLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__main .footerLinks {
    padding: 24px 0;
  }
}
@media (min-width: 1280px) {
  .footer__main .footerLinks {
    gap: 35px;
    margin-bottom: 60px;
    padding: 28px 0;
  }
}
.footer__main .footerLinks__item {
  color: #ffffff;
  transition: color 0.5s;
  padding: 4px 0;
  font-size: 14px;
}
@media (min-width: 1280px) {
  .footer__main .footerLinks__item:hover {
    color: #fc8484;
  }
}
.footer__main .footerLinks__item.active-nav {
  color: #fc8484;
}
.footer__main .blockContact {
  padding-bottom: 40px;
}
@media (min-width: 1280px) {
  .footer__main .blockContact {
    padding-bottom: 60px;
  }
}
.footer__main .blockContact__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}
.footer__main .blockContact__list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
}
@media (min-width: 400px) {
  .footer__main .blockContact__list__item {
    font-size: 15px;
  }
}
.footer__main .blockContact__list__item .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.footer__main .blockContact__list__item span a {
  color: #ffffff;
  text-decoration: none;
}
.footer__main .blockTiming__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.footer__main .blockTiming__list__item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}
@media (min-width: 540px) {
  .footer__main .blockTiming__list__item {
    width: auto;
  }
}
.footer__main .blockTiming__list__item.day-today {
  background-color: #009432;
}
.footer__last {
  background-color: #101010;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px 0;
  color: #d0d1d3;
}
.footer__last__text {
  font-size: 14px;
  margin: 5px 0 35px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer__last__text {
    margin: 0 0 15px;
  }
}
.footer__last__text a {
  color: #ffffff;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .footer__last__text a:hover {
    color: #d35400;
  }
}
.footer__last__top {
  width: 40px;
  height: 40px;
  background-color: #B00404;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .footer__last__top:hover {
    background-color: #d35400;
  }
}
.footer__last__top .icon {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}

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