@import url("https://fonts.googleapis.com/css2?family=Damion&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  font-family: "Poppins", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  border-bottom: 1px solid #507FD6;
  background: #D7E7FF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #103750;
  font-family: Damion;
  font-size: 30px;
  font-weight: 400;
  line-height: 140%;
}

.menu {
  border-radius: 10px;
  border: 1px solid #507FD6;
  background: #FFF;
  padding: 10px 24px;
}
@media (max-width: 1023px) {
  .menu {
    border: none;
    padding: 0;
    background: none;
  }
}
@media (max-width: 1023px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #507FD6;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1023px) {
  .menu__body {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 70px 0 0;
    padding: 35px 15px 0;
    background: #FFF;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__link {
  color: #0E0E0E;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  position: relative;
}
.menu__link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  background-color: #151515;
}
.menu__link:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.footer {
  background: #103750;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  color: #FFF;
  font-family: Damion;
  font-size: 30px;
  font-weight: 400;
  line-height: 140%;
}
.footer__address {
  color: #FFF;
  font-size: 13px;
  font-weight: 300;
  margin-top: 25px;
  max-width: 443px;
  width: 100%;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  color: #F7F7F7;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}
.footer__text {
  color: #ABABAB;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .footer__text {
    margin-top: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  max-width: 600px;
  width: 100%;
  border-radius: 40px;
  border: 1px solid #D7E7FF;
  background: #507FD6;
  padding: 40px;
}
@media (max-width: 575px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-family: Damion;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cookies__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cookies__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: #103750;
  padding: 14px 60px;
}
.cookies__btn-sub {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: #103750;
  padding: 14px 60px;
}

.hero {
  margin: 80px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .hero {
    padding: 40px 0;
  }
}
.hero__content {
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column-reverse;
  }
}
.hero__column {
  width: 50%;
  border-radius: 40px;
  background: #103750;
  -webkit-backdrop-filter: blur(37.6348190308px);
          backdrop-filter: blur(37.6348190308px);
  padding: 40px 30px;
}
@media (max-width: 991px) {
  .hero__column {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero__column {
    padding: 30px 20px;
  }
}
.hero__title {
  color: #FFF;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 26px;
  }
}
.hero__text {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 10px 0 24px;
}
.hero__link {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: #507FD6;
  padding: 14px 60px;
}
@media (max-width: 429px) {
  .hero__link {
    padding: 14px 50px;
  }
}
.hero__img {
  width: 50%;
  border-radius: 40px;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .hero__img {
    width: 100%;
  }
}

.search {
  background: #D7E7FF;
  padding: 40px 0;
}
.search__content {
  border-radius: 32px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 60px;
}
@media (max-width: 767px) {
  .search__content {
    padding: 40px 20px;
  }
}

.choose {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .choose {
    padding: 40px 0;
  }
}
.choose__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-radius: 40px;
  background: #507FD6;
  padding: 40px;
}
@media (max-width: 767px) {
  .choose__content {
    padding: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 10px;
  border: 1px solid #000;
  background: #FFF;
  padding: 32px;
  position: relative;
}
.choose__card_last {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .choose__card_last {
    grid-column: span 1;
  }
}
.choose__name {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-transform: uppercase;
}
.choose__text {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
}
.choose__link {
  position: absolute;
  inset: 0;
}

.about {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}
.about__title {
  color: #000;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.about__toptext {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 40px;
}
.about__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .about__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__card {
  border-radius: 40px;
  background: #D7E7FF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.about__card_bg {
  background: #507FD6;
}
.about__name {
  color: #1A1A1A;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 20px 0 12px;
}
.about__text {
  color: #1A1A1A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.restaurants {
  padding: 40px 0;
}
.restaurants__title {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.restaurants__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.restaurants__card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #507FD6;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
  .restaurants__card {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .restaurants__card_reverse {
    flex-direction: column-reverse;
  }
}
.restaurants__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.restaurants__name {
  color: #FFF;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.restaurants__text {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}
.restaurants__link {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  background: #103750;
  padding: 14px 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.restaurants__img {
  border-radius: 20px;
  overflow: hidden;
  min-width: 530px;
}
.restaurants__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .restaurants__img {
    min-width: 100%;
  }
}

.place {
  padding: 40px 0;
}
.place__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .place__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.place__card {
  border-radius: 20px;
  background: #D7E7FF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.place__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
}
.place__name {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.place__text {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.place__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  margin: 80px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__content {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .contact__content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contact__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.contact__from {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.contact__inp {
  width: 100%;
  color: #959595;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 300;
  border-radius: 20px;
  border: 2px solid #507FD6;
  background: rgba(214, 214, 214, 0.4);
  padding: 14px 20px;
}
.contact__inp::-moz-placeholder {
  color: #959595;
}
.contact__inp::placeholder {
  color: #959595;
}
.contact__inp_message {
  height: 100px;
}
.contact__btn {
  margin-top: 14px;
  color: #FFF;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  background: #507FD6;
  padding: 10px 0;
  width: 100%;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.208);
  display: none;
  justify-content: center;
  align-items: center;
}
.popup__content {
  border-radius: 40px;
  border: 1px solid #D7E7FF;
  background: #507FD6;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .popup__content {
    padding: 40px 20px;
  }
}
.popup__title {
  color: #FFF;
  text-align: center;
  font-family: Damion;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.white {
  color: #fff;
}

.privacy {
  margin: 80px 0 0;
  padding: 40px 0;
}
.privacy__title {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.privacy__text {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}