img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  text-decoration: none;
  list-style-type: none;
}

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

input,
button {
  border: none;
  outline: none;
}

button {
  font-family: inherit;
}

.container {
  max-width: 1728px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@keyframes shadowPulse {
  0% {
    text-shadow: 0 0 5px rgba(233, 115, 0, 0);
  }
  50% {
    text-shadow: 0 0 15px rgba(233, 115, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgb(233, 115, 0);
  }
}
body {
  font-family: "Quicksand", sans-serif;
}

.header {
  padding: 40px 244px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
}

.header__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0em;
  color: #000;
  margin-right: 304px;
}
.header__title::before {
  content: "";
  display: inline-block;
  width: 74px;
  height: 74px;
  background-image: url(../images/header-logo.svg);
  margin-right: 4px;
  vertical-align: middle;
}
.header__title--text {
  transition: 0.5s;
}
.header__title--text:hover {
  text-shadow: 0px 0px 20px #ce540e;
  color: #ff6f40;
  transition: 0.5s;
}

.header__list {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}

.header__list--item {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
  transition: 0.3s;
}
.header__list--item:hover {
  cursor: pointer;
  color: #ff6f40;
  transition: 0.3s;
}

.header__buttons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.header__buttons .header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 110px;
  height: 56px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
}
.header__buttons .header__button .header__button--span {
  display: inline-block;
  transition: 0.3s;
}
.header__buttons .header__button:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
.header__buttons .header__button:hover .header__button--span {
  transform: scale(1.2);
  transition: 0.3s;
}
.header__buttons .header__button--first {
  border: 1px solid #ff6f40;
  background: transparent;
  color: #ff6f40;
  transition: 0.3s;
}
.header__buttons .header__button--second {
  background: #ff6f40;
  color: #fff;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  transition: 0.3s;
}

.organic {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.organic__info {
  margin-bottom: 100px;
}

.organic__title {
  font-weight: 600;
  font-size: 64px;
  line-height: 106%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #1c1b1f;
  padding-bottom: 40px;
}

.organic__title--orange {
  font-weight: 700;
  color: #ff6f40;
  display: inline-block;
  animation: shadowPulse 1s infinite alternate;
}

.organic__info--text {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #616161;
}

.organic__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  margin-bottom: 100px;
}

.organic__button {
  border-radius: 8px;
  padding: 18px 36px;
  width: 212px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.organic__button .organic__button--span {
  display: inline-block;
  transition: 0.3s;
}
.organic__button:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.organic__button:hover .organic__button--span {
  transform: scale(1.2);
}

.organic__button--first {
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background-color: #5a9a5b;
  color: #fff;
}

.organic__button--second {
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  color: #1c1b1f;
}

.organic__photos {
  display: flex;
  gap: 20px;
}

.organic__img {
  border-radius: 48px;
  transition: 0.3s;
}
.organic__img:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
}

.benefits {
  padding: 100px 244px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 300px;
  background-color: #f6f9f6;
}

.benefits__texts {
  max-width: 604px;
}

.benefits__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
  padding-bottom: 40px;
}

.benefits__title--orange {
  font-weight: 600;
  color: #ff6f40;
  display: inline-block;
  animation: shadowPulse 1s infinite alternate;
}

.benefits__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
  padding-bottom: 60px;
}

.benefits__extra--title {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: #000;
}

.benefits__extra--subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.benefits__info {
  display: flex;
  gap: 32px;
}

.benefits__photo {
  display: flex;
  border-radius: 24px;
}

.benefits__photo--first {
  border-radius: 24px;
  width: 498px;
  height: 329px;
  display: block;
  position: relative;
  z-index: 1;
}

.benefits__photo--star::after {
  content: "";
  position: absolute;
  right: 150px;
  width: 70px;
  height: 70px;
  background-image: url(../images/benefits/stars.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}

.benefits__photo--second {
  border-radius: 24px;
  width: 181px;
  height: 270px;
  position: absolute;
  top: 1650px;
  right: 150px;
  z-index: 2;
}

.towards {
  padding: 100px 244px;
}

.towards__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  text-align: center;
  color: #000;
  margin-bottom: 60px;
}

.towards__title--orange {
  font-weight: 600;
  color: #ff6f40;
  display: inline-block;
  animation: shadowPulse 1s infinite alternate;
}

.towards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 48px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.towards__list--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.towards__list--title {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #000;
  position: relative;
  padding-left: 90px;
}

.towards__list--subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
}

.towards__list--item:nth-child(1) .towards__list--title::before,
.towards__list--item:nth-child(2) .towards__list--title::before,
.towards__list--item:nth-child(3) .towards__list--title::before,
.towards__list--item:nth-child(4) .towards__list--title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 70px;
  background-size: cover;
  background-repeat: no-repeat;
}

.towards__list--item:nth-child(1) .towards__list--title::before {
  background-image: url("../images/towards/icon-1.svg");
}

.towards__list--item:nth-child(2) .towards__list--title::before {
  background-image: url("../images/towards/icon-2.svg");
}

.towards__list--item:nth-child(3) .towards__list--title::before {
  background-image: url("../images/towards/icon-3.svg");
}

.towards__list--item:nth-child(4) .towards__list--title::before {
  background-image: url("../images/towards/icon-4.svg");
}

.choose {
  background-color: #f6f9f6;
  padding: 100px 244px;
}

.choose__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
  margin-bottom: 40px;
}

.choose__title--orange {
  font-weight: 600;
  color: #ff6f40;
  display: inline-block;
  animation: shadowPulse 1s infinite alternate;
}

.choose__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
  margin-bottom: 60px;
}

.choose__items {
  display: flex;
  justify-content: space-between;
}

.choose__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 385px;
}

.choose__photo {
  width: 385px;
  height: 233px;
  border-radius: 24px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.choose__photo:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
}

.choose__title--info {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  margin-bottom: 12px;
}

.choose__subtitle--info {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.journey {
  padding: 100px 244px;
}

.journey__info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.journey__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
}

.journey__title--orange {
  font-weight: 600;
  color: #ff6f40;
  display: inline-block;
  animation: shadowPulse 1s infinite alternate;
}

.journey__info--notTitle {
  display: flex;
  flex-direction: column;
}

.journey__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
  margin-bottom: 40px;
}

.journey__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 18px 36px;
  width: 212px;
  height: 56px;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background: #5a9a5b;
  transition: 0.3s;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.journey__button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.journey__button:hover .journey__button--text {
  transform: scale(1.2);
  transition: 0.3s;
}

.journey__cards {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.journey__list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey__list--item {
  position: relative;
  width: 392px;
  height: 590px;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s;
}

.journey__list--item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, #121212 100%);
}

.journey__list--item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.journey__item--img {
  border-radius: 24px;
  width: 392px;
  height: 590px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.journey__item--title,
.journey__item--text {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 5;
  color: #fff;
}

.journey__item--title {
  bottom: 84px;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}

.journey__item--text {
  bottom: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.bowls {
  padding: 100px 244px;
  background-color: #f6f9f6;
}

.bowls__main--info {
  display: flex;
  gap: 107px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.bowls__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
  width: 391px;
  height: 53px;
}

.bowls__title--vector {
  display: inline-block;
}

.bowls__title--vector::after {
  content: "";
  display: block;
  width: 98px;
  height: 14px;
  background-image: url(../images/vector.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bowls__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
}

.bowls__button {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #5a9a5b;
  position: relative;
  display: inline-flex;
  background-color: inherit;
}

.bowls__button:hover {
  cursor: pointer;
}

.bowls__button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background-image: url("../images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bowls__button--gap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.bowls__cards {
  position: relative;
}

.bowls__list {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}

.bowls__list--item {
  border: 1px solid #bdbdbd;
  border-radius: 24px;
  max-width: 286px;
  background: #fff;
}

.bowls__list--img {
  width: 286px;
  height: 178px;
  border-radius: 24px 24px 0 0;
}

.bowls__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 206px;
}

.bowls__text {
  margin-bottom: 12px;
}

.bowls__list--title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  height: 64px;
}

.bowls__list--subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.bowls__price--info {
  display: flex;
  align-items: center;
}

.bowls__list--price {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #000;
  margin-right: 18px;
}

.bowls__list--order {
  border-radius: 4px;
  padding: 10px 16px;
  width: 147px;
  height: 40px;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background: #ff6f40;
  transition: 0.3s;
}

.bowls__list--order:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.bowls__order--text {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: 0.3s;
}

.bowls__list--order:hover .bowls__order--text {
  transform: scale(1.2);
}

.bliss {
  padding-left: 244px;
  padding-right: 244px;
  padding-bottom: 100px;
  background-color: #f6f9f6;
}

.bliss__main--info {
  display: flex;
  gap: 107px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.bliss__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
  width: 391px;
  height: 53px;
}

.bliss__title--vector {
  display: inline-block;
}

.bliss__title--vector::after {
  content: "";
  display: block;
  width: 98px;
  height: 14px;
  background-image: url(../images/vector.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bliss__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
}

.bliss__cards {
  position: relative;
}

.bliss__button--gap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.bliss__button {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #5a9a5b;
  position: relative;
  display: inline-flex;
  background-color: inherit;
}

.bliss__button:hover {
  cursor: pointer;
}

.bliss__button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background-image: url("../images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bliss__list {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}

.bliss__list--item {
  border: 1px solid #bdbdbd;
  border-radius: 24px;
  max-width: 286px;
  background: #fff;
}

.bliss__list--img {
  width: 286px;
  height: 178px;
  border-radius: 24px 24px 0 0;
}

.bliss__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 206px;
}

.bliss__text {
  display: block;
}

.bliss__list--title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  height: 64px;
}

.bliss__list--subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.bliss__price--info {
  display: flex;
}

.bliss__list--price {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #000;
  margin-right: 18px;
}

.bliss__list--order {
  border-radius: 4px;
  padding: 10px 16px;
  width: 147px;
  height: 40px;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background: #ff6f40;
  transition: 0.3s;
}

.bliss__list--order:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.bliss__list--order:hover .bliss__order--text {
  transform: scale(1.2);
  transition: 0.3s;
}

.bliss__order--text {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: 0.3s;
}

.salads {
  padding-left: 244px;
  padding-right: 244px;
  padding-bottom: 100px;
  background-color: #f6f9f6;
}

.salads__main--info {
  display: flex;
  gap: 107px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.salads__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
  width: 391px;
  height: 53px;
}

.salads__title--vector {
  display: inline-block;
}

.salads__title--vector::after {
  content: "";
  display: block;
  width: 98px;
  height: 14px;
  background-image: url(../images/vector.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.salads__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
}

.salads__cards {
  position: relative;
}

.salads__button--gap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.salads__button {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #5a9a5b;
  position: relative;
  display: inline-flex;
  background-color: inherit;
}

.salads__button:hover {
  cursor: pointer;
}

.salads__button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background-image: url("../images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.salads__list {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}

.salads__list--item {
  border: 1px solid #bdbdbd;
  border-radius: 24px;
  max-width: 286px;
  background: #fff;
}

.salads__list--img {
  width: 286px;
  height: 178px;
  border-radius: 24px 24px 0 0;
}

.salads__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 206px;
}

.salads__text {
  display: block;
}

.salads__list--title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  height: 64px;
}

.salads__list--subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.salads__price--info {
  display: flex;
}

.salads__list--price {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #000;
  margin-right: 18px;
}

.salads__list--order {
  border-radius: 4px;
  padding: 10px 16px;
  width: 147px;
  height: 40px;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background: #ff6f40;
  transition: 0.3s;
}

.salads__list--order:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.salads__list--order:hover .salads__order--text {
  transform: scale(1.2);
  transition: 0.3s;
}

.salads__order--text {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: 0.3s;
}

.customers {
  padding: 100px 244px;
}

.customers__high {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: center;
}

.customers__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
}

.customers__buttons {
  display: flex;
  gap: 12px;
}

.customers__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #bdbdbd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.customers__button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/button-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  filter: #bdbdbd;
  transition: 0.3s;
}

.customers__button--right::before {
  transform: scaleX(-1);
  background-image: url("../images/button-right.svg");
}

.customers__button:hover {
  border-color: transparent;
  background-color: #5a9a5b;
}

.customers__button:hover::before {
  filter: brightness(2);
}

.customers__bot {
  display: flex;
  justify-content: space-between;
}

.customers__photo {
  border-radius: 24px;
  width: 498px;
  height: 331px;
}

.customers__info--all {
  display: block;
}

.customers__info {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0em;
  color: #000;
  margin-top: 76.5px;
  margin-bottom: 40px;
}

.customers__info::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  top: -74px;
  left: -74px;
  background-image: url("../images/quotes.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.customers__author {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #616161;
}

.reserve {
  padding: 100px 244px;
  background-color: #f6f9f6;
}

.reserve__high {
  height: 72px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.reserve__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108%;
  color: #000;
}

.reserve__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #616161;
}

.reserve__bot {
  display: flex;
  justify-content: space-between;
}

.reserve__left {
  display: flex;
  width: 604px;
  height: 508px;
  flex-direction: column;
}

.reserve__photo {
  border-radius: 24px;
  width: 604px;
  height: 304px;
  margin-bottom: 80px;
}

.reserve__list {
  width: 604px;
  display: flex;
  justify-content: space-between;
}

.reserve__list--item {
  display: block;
}

.reserve__list--first {
  position: relative;
  margin-left: 75px;
}

.reserve__list--first::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: -65px;
  left: -65px;
  background-image: url("../images/pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.reserve__list--second {
  margin-right: 30px;
}

.reserve__list--title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #000;
}

.reserve__list--info {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #616161;
}

.reserve__right {
  display: block;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking__field {
  border: 1px solid rgba(17, 17, 19, 0.2);
  border-radius: 4px;
  padding: 13px 16px;
  width: 530px;
  height: 48px;
}

.booking__field input::-moz-placeholder, .booking__field textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(17, 17, 19, 0.6);
}

.booking__field input::placeholder,
.booking__field textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(17, 17, 19, 0.6);
}

.reserve__input {
  background-color: #f6f9f6;
}

.reserve__input--special {
  width: 510px;
  background-color: #f6f9f6;
}

.reserve__input--gmail {
  width: 510px;
}

.reserve__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 18px 36px;
  width: 530px;
  height: 56px;
  box-shadow: 0 2px 4px -1px rgba(33, 150, 243, 0.2);
  background: #5a9a5b;
  transition: 0.3s;
  margin-top: 4px;
}

.reserve__button:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
}

.reserve__button:hover .reserve__button--text {
  transform: scale(1.2);
}

.reserve__button--text {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  transition: 0.3s;
  color: #fff;
}

.footer {
  padding: 100px 244px;
  background-color: #212121;
  display: flex;
}

.footer__left {
  margin-right: 182px;
}

.footer__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 69px;
}

.footer__title::before {
  content: "";
  display: inline-block;
  width: 74px;
  height: 74px;
  background-image: url(../images/header-logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.footer__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 20px;
}

.footer__right {
  display: flex;
}

.footer__info-right {
  margin-right: 82px;
}

.footer__info-left {
  margin-right: 132px;
}

.footer__list--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 50px;
}

.footer__list--item {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  transition: 0.3s;
}
.footer__list--item:hover {
  cursor: pointer;
  color: #ff6f40;
  transition: 0.3s;
}

.footer__list--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__social {
  display: block;
}

.footer__social--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 20px;
}

.footer__list--links {
  display: flex;
  gap: 20px;
}

.footer__links--item a svg {
  width: 40px;
  height: 40px;
  display: block;
  transition: 0.3s;
}

.footer__links--item a svg:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #5a9a5b;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.scroll-top-btn:hover {
  transform: scale(1.1);
}
.scroll-top-btn.active {
  opacity: 1;
  pointer-events: auto;
}

#joinModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#joinModal .modal__content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  color: #1c1b1f;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
#joinModal .modal__content h2.modal__title {
  color: #5a9a5b;
  margin-bottom: 0.5rem;
}
#joinModal .modal__content p.modal__subtitle {
  color: #212121;
  margin-bottom: 1.5rem;
}
#joinModal .modal__content .modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#joinModal .modal__content .modal__form .modal__input {
  padding: 0.75rem 1rem;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  font-size: 1rem;
}
#joinModal .modal__content .modal__form .modal__button {
  background-color: #ff6f40;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}
#joinModal .modal__content .modal__form .modal__button:hover {
  background-color: rgb(255, 72.5497382199, 13);
}
#joinModal .modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #616161;
  cursor: pointer;
  transition: all 0.3s;
}
#joinModal .modal__close:hover {
  color: #5a9a5b;
}