@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..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: "Raleway", sans-serif;
}

.lock {
  overflow: hidden;
}

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

[class*=__container] {
  max-width: 1110px;
  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;
  background: #0BBE94;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #FFF;
  font-family: Lora;
  font-size: 30px;
  font-weight: 400;
  line-height: 140%;
}

.menu {
  border-radius: 10px;
  background: #FFF;
  padding: 10px 24px;
}
@media (max-width: 1023px) {
  .menu {
    padding: 0;
    background: none;
    border-radius: 0;
  }
}
@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: #fff;
  }
  .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: Raleway;
  font-size: 14px;
  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: #0E62BE;
  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: Lora;
  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-size: 13px;
  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: 20px;
  border: 1px solid #FFD7D7;
  background: #0E62BE;
  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;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: #0BBE94;
  padding: 14px 20px;
}
.cookies__btn-sub {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border-radius: 10px;
  background: #0BBE94;
  padding: 14px 20px;
}

.home {
  margin: 76px 0 0;
}
.home__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home__img {
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
}
.home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__column {
  border-radius: 20px;
  background: #0E62BE;
  -webkit-backdrop-filter: blur(37.6348190308px);
          backdrop-filter: blur(37.6348190308px);
  padding: 40px 30px;
}
.home__title {
  color: #FFF;
  text-align: center;
  font-family: Raleway;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .home__title {
    font-size: 36px;
  }
}
.home__text {
  color: #FFF;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 10px 0 24px;
}
.home__link {
  display: flex;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: #FFF;
  padding: 14px 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.search {
  background: url(../img/banner.png) no-repeat center/cover;
  padding: 40px 0;
}
.search__content {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .search__content {
    padding: 40px 20px;
  }
}

.restaurants {
  padding: 40px 0;
}
.restaurants__title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.restaurants__slide {
  position: relative;
  min-height: 362px;
  height: 100%;
}
.restaurants__row {
  border-radius: 20px;
  background: #0BBE94;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 20px 84px;
  display: flex;
  gap: 20px;
  min-height: 362px;
}
@media (max-width: 991px) {
  .restaurants__row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .restaurants__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .restaurants__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.restaurants__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.restaurants__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.restaurants__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}
.restaurants__link {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #0E62BE;
  padding: 14px 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.restaurants__btns {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 120px;
}
@media (max-width: 767px) {
  .restaurants__btns {
    left: 20px;
    transform: none;
    bottom: 40px;
  }
}
@media (max-width: 575px) {
  .restaurants__btns {
    bottom: 20px;
  }
}
@media (max-width: 429px) {
  .restaurants__btns {
    bottom: 60px;
  }
}
.restaurants__prev, .restaurants__next {
  border-radius: 100px;
  border: 1px solid #FFF;
  background: rgba(255, 252, 251, 0.2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info__title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.info__text {
  color: #000;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 10px 0 40px;
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info__card {
  border-radius: 10px;
  background: #0E62BE;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.info__name {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px 0 12px;
}
.info__subtext {
  color: #FFF;
  font-family: Raleway;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.place__row {
  min-height: 381px;
}

.choose {
  background: url(../img/banner-1.png) no-repeat center/cover;
  padding: 40px 0;
}
.choose__titie {
  color: #FFF;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.choose__text {
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.hotel {
  padding: 40px 0;
}
.hotel__title {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hotel__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .hotel__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hotel__card {
  border-radius: 20px;
  background: #0BBE94;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.hotel__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel__name {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.hotel__text {
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hotel__link {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #0E62BE;
  padding: 14px 60px;
}

.about__title {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.about__text {
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin: 10px 0 40px;
}
.about__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .about__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .about__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__card {
  border-radius: 10px;
  background: #0BBE94;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about__name {
  color: #FFF;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.about__subtext {
  color: #FFF;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 563px;
  width: 100%;
  margin: 0 auto;
}
.form__inp {
  border-radius: 10px;
  border: 1px solid #D7D7D7;
  background: rgba(214, 214, 214, 0.4);
  color: #959595;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 14px 20px;
  width: 100%;
}
.form__inp:focus {
  border: 2px solid #0E62BE;
}
.form__inp_message {
  height: 100px;
}
.form__btn {
  width: 100%;
  margin-top: 14px;
  color: #FFF;
  text-align: center;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  background: #0E62BE;
  padding: 10px 0;
}

.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: 76px 0 0;
}
.privacy__title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.privacy__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.swiper-slide {
  min-height: 362px;
}

.p-60 {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .p-60 {
    padding: 40px 0;
  }
}