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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: #1b2a34;
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.main-container {
  padding: 0 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #5784a4;
  color: #f9faff;
  transition: background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(87, 132, 164, 0.88);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 80px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: #f9faff;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  opacity: 0.78;
}

.main-nav__dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid #f9faff;
  border-bottom: 2px solid #f9faff;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.main-nav__item--dropdown::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  display: none;
  width: max(100%, 260px);
  height: 14px;
}

.main-nav__item--dropdown:hover::after,
.main-nav__item--dropdown.is-open::after {
  display: block;
}

.main-nav__dropdown {
  position: absolute;
  top: 58px;
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: #edf2f5;
  color: #5784a4;
  box-shadow: 0 18px 40px rgba(24, 55, 76, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.main-nav__dropdown a {
  display: block;
  padding: 8px 12px;
  color: #5784a4;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.main-nav__dropdown a:hover,
.main-nav__dropdown a:focus-visible {
  background: rgba(87, 132, 164, 0.1);
}

.main-nav__item--dropdown:not(.is-click-closed):hover .main-nav__dropdown,
.main-nav__item--dropdown.is-open .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav__item--dropdown:not(.is-click-closed):hover
  .main-nav__dropdown-toggle::after,
.main-nav__item--dropdown.is-open .main-nav__dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.header-contact {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid #f9faff;
  border-radius: 10px;
  color: #f9faff;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: #5784a4;
  background: #edf2f5;
}

.burger,
.main-nav__close {
  display: none;
}

.hero {
  padding: 30px 0 0;
  background: #ffffff;
}

.hero__title {
  margin: 0 0 50px;
  color: #5684a4;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1.06;
  text-align: center;
}

.hero__title span {
  display: block;
}

.hero__title span:first-child {
  font-size: 70px;
}

.hero__title span:last-child {
  margin-top: 8px;
  font-size: 40px;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
  background: #d8e3ea;
}

.hero__image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  left: 40px;
  bottom: 100px;
  max-width: 760px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.12);
  padding: 10px;
  border-radius: 10px;
}

.directions {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  margin: 0 0 58px;
  color: #5684a4;
  font-family: "Cambria Math", Cambria, Georgia, serif;
  font-size: 55px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.directions__grid {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  gap: 0;
}

.direction-card {
  position: relative;
  display: block;
  overflow: hidden;
  max-height: 480px;
  color: #ffffff;
  background: #d8e3ea;
}

.direction-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.direction-card__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.direction-card:hover .direction-card__image,
.direction-card:focus-visible .direction-card__image {
  transform: scale(1.08);
}

.direction-card__content {
  position: absolute;
  left: 30px;
  bottom: 44px;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.direction-card__title {
  color: #ffffff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  background-color: rgba(80, 80, 80, 0.25);
  padding: 10px;
  border-radius: 10px;
}

.direction-card__line {
  width: 75px;
  height: 2px;
  margin-top: 14px;
  margin-left: 10px;
  background: #ffffff;
}

.services {
  padding: 0 0 100px;
  background: #ffffff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  display: block;
  min-height: 280px;
  color: #ffffff;
  perspective: 1200px;
  outline: none;
}

.service-card__inner {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.service-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  background: #d8e3ea;
}

.service-card__face::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-card__face--back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.service-card.is-mobile-open .service-card__face--back {
  opacity: 1;
  visibility: visible;
}

.service-card__face--back::after {
  background: rgba(77, 77, 77, 0.52);
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  background-color: rgba(80, 80, 80, 0.25);
  padding: 2px;
  border-radius: 10px;
}

.service-card__description {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.excursions-catalog {
  padding: 80px 0 100px;
  background: #ffffff;
}

.excursions-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.excursion-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  color: #ffffff;
  background: #d8e3ea;
}

.excursion-tile__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.excursion-tile:hover .excursion-tile__image,
.excursion-tile:focus-visible .excursion-tile__image {
  transform: scale(1.08);
}

.excursion-tile__title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: calc(100% - 40px);
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  background-color: rgba(80, 80, 80, 0.25);
  padding: 10px;
  border-radius: 10px;
}

.excursion-tile--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  color: #716c6a;
  background: #ffffff;
  text-align: center;
}

.excursion-tile--text p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.excursion-tile--text p + p {
  margin-top: 18px;
}

.excursion-tile__accent {
  font-weight: 600;
}

.excursion-tile--text a {
  color: #5784a4;
  text-underline-offset: 4px;
}

.excursion-card__line {
  width: 120px;
  height: 2px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background: #716c6a;
}

.about {
  padding: 0 0 120px;
  background: #ffffff;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) minmax(360px, 45%);
  align-items: stretch;
  gap: 100px;
  padding: 0 120px;
}

.about__content,
.about__image-wrap {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.about__image-wrap {
  transition-delay: 0.14s;
}

.about.is-visible .about__content,
.about.is-visible .about__image-wrap {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .about__content,
  .about__image-wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about__title {
  margin: 0 0 30px;
  color: #5684a4;
  font-family: Georgia, serif;
  font-size: 55px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.about__text {
  max-width: 720px;
  color: #716c6a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.about__text p {
  margin: 0 0 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  max-height: 580px;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts {
  padding: 50px 0 120px;
  background: #ffffff;
  text-align: center;
}

.contacts__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts__title {
  margin: 0 0 70px;
  color: #5684a4;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.1;
}

.contacts__link {
  display: inline-flex;
  color: #716c6a;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.contacts__link + .contacts__link {
  margin-top: 20px;
}

.contacts__link:hover,
.contacts__link:focus-visible {
  color: #5684a4;
}

.contacts__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.contacts__social {
  display: inline-flex;
  width: 42px;
  height: 42px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contacts__social:hover,
.contacts__social:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}

.contacts__social img {
  width: 100%;
  height: 100%;
}

.hero__image-excursions {
  width: 100%;
  height: 700px;
  object-fit: fill;
}

.hero__caption-excursions {
  left: 80px;
  bottom: 100px;
}

.hero__image-boat {
  object-fit: cover;
  height: 750px;
}

.second-title {
  color: #5684a4;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 40px;
}

.boat-list {
  color: #716c6a;
  font-family: "Montserrat";
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
  padding-right: 40px;
}

.board-card__line {
  margin-bottom: 20px;
  margin-top: 0;
}

.boat-tile {
  min-height: 200px;
}

.gallery {
  padding: 0 0 110px;
  background: #ffffff;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.s-gal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excursion-gallery__btn {
  margin-bottom: 0;
}

.program {
  margin-top: 80px;
}

.program-tile {
  min-height: auto !important;
  margin-bottom: 80px;
  padding: 0;
  margin-top: -20px;
}

.program-tile p {
  font-size: 16px;
  max-width: 750px;
  margin: auto;
}

.program-list-block {
  margin-bottom: 80px;
}

.program-list {
  margin-bottom: 22px;
  font-size: 15px;
}

.program-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin: 0 auto 28px;
  padding: 0 22px;
  border: 1px solid #716c6a;
  border-radius: 10px;
  color: #716c6a;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.program-more:hover,
.program-more:focus-visible {
  color: #ffffff;
  background: #716c6a;
  transform: translateY(-1px);
}

.program-list li {
  transition: opacity 0.25s ease;
}

.program-tile-detail {
  text-align: left;
  min-height: auto;
}

.reserve-btn {
  width: fit-content;
  margin: 40px auto 100px;
  border: 1px solid #5784a4;
  color: #5784a4;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.reserve-btn:hover,
.reserve-btn:focus-visible {
  color: #ffffff;
  background: #5784a4;
}

.boat-title {
  max-width: 1200px !important;
}

.s-text {
  margin-top: -20px;
  font-size: 25px;
  margin-bottom: 20px;
}

@media (min-width: 981px) {
  .about__text {
    text-align-last: left;
  }

  .boat__hero {
    bottom: 50px;
  }

  .desk-none {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .service-card__inner {
    transform-style: preserve-3d;
    transition: transform 1.15s ease;
    will-change: transform;
  }

  .service-card:hover .service-card__inner,
  .service-card:focus-visible .service-card__inner {
    transform: rotateY(180deg);
  }

  .service-card__face {
    transform: translateZ(0);
  }

  .service-card__face--back {
    opacity: 1;
    visibility: visible;
    transition: none;
    transform: rotateY(180deg) translateZ(1px);
  }
}

@media (max-width: 1180px) {
  .container {
    padding: 0 40px;
  }

  .site-header__inner {
    gap: 20px;
    padding: 0 40px;
  }

  .main-nav__list {
    gap: 16px;
  }

  .main-nav__link,
  .header-contact {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .burger__line {
    display: block;
    width: 30px;
    height: 2px;
    margin-left: auto;
    background: #f9faff;
  }

  .main-nav__item--dropdown::after {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 200;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 92px 40px 42px;
    background: #5784a4;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav__close {
    position: absolute;
    top: 24px;
    right: 40px;
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .main-nav__close::before,
  .main-nav__close::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 7px;
    width: 30px;
    height: 2px;
    background: #f9faff;
  }

  .main-nav__close::before {
    transform: rotate(45deg);
  }

  .main-nav__close::after {
    transform: rotate(-45deg);
  }

  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .main-nav__item {
    width: 100%;
  }

  .main-nav__link {
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    font-size: 24px;
  }

  .main-nav__dropdown {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 18px;
    color: #f9faff;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .main-nav__item--dropdown.is-open .main-nav__dropdown {
    display: block;
  }

  .main-nav__dropdown a {
    padding: 9px 0;
    color: #f9faff;
    font-size: 17px;
  }

  .main-nav__dropdown a:hover,
  .main-nav__dropdown a:focus-visible {
    background: transparent;
    opacity: 0.78;
  }

  .header-contact {
    min-height: 52px;
    margin-top: 24px;
    padding: 0 28px;
    font-size: 16px;
  }

  .directions__grid {
    grid-template-columns: 100%;
    gap: 24px;
    justify-content: normal;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .excursions-catalog__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card {
    min-height: 320px;
  }

  .service-card__description {
    font-size: 20px;
  }

  .hero__image {
    max-height: 450px;
  }

  .hero--home .hero__image {
    max-width: none;
    height: 450px;
    object-fit: cover;
    object-position: center;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__content {
    order: 1;
  }

  .about__image-wrap {
    order: 2;
    height: auto;
    min-height: 520px;
  }

  .hero__caption {
    left: 30px;
    bottom: 60px;
    font-size: 30px;
  }

  .site-header__inner {
    justify-content: end;
  }
}

@media (max-width: 640px) {
  .hero--home .hero__image {
    width: 300%;
    max-width: none;
    animation: mobileHeroPanFull 8s ease-in-out 0.7s 1 both;
  }

  @keyframes mobileHeroPanFull {
    0% {
      transform: translateX(-2%);
    }

    48% {
      transform: translateX(-65%);
    }

    100% {
      transform: translateX(-2%);
    }
  }

  .mob-none {
    display: none;
  }

  .reserve-btn {
    margin: 40px auto 60px;
  }

  .container {
    padding: 0 20px;
  }

  .container-excursions {
    padding: 0;
  }

  .site-header__inner {
    min-height: 68px;
    padding: 0 20px;
  }

  .main-nav {
    padding: 92px 20px 42px;
  }

  .main-nav__close {
    right: 20px;
  }

  .site-header__logo {
    font-size: 20px;
  }

  .hero {
    padding: 44px 0 64px;
  }

  .hero__title {
    margin-bottom: 40px;
  }

  .hero__title span:first-child {
    font-size: 46px;
  }

  .hero__title span:last-child {
    font-size: 30px;
  }

  .hero__image-wrap {
    min-height: 320px;
  }

  .hero__caption {
    left: 20px;
    bottom: 24px;
    max-width: 85%;
    font-size: 24px;
  }

  .directions {
    padding: 0px 0 72px;
  }

  .section-title {
    margin-bottom: 34px;
    font-size: 38px;
  }

  .direction-card {
    min-height: 320px;
  }

  .direction-card__content {
    left: 24px;
    bottom: 24px;
  }

  .direction-card__title {
    font-size: 26px;
  }

  .services {
    padding-bottom: 72px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .excursions-catalog {
    padding-bottom: 72px;
  }

  .gallery {
    padding-bottom: 72px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card__title {
    left: 24px;
    bottom: 24px;
    font-size: 24px;
  }

  .excursion-tile {
    min-height: 300px;
  }

  .excursion-tile__title {
    left: 24px;
    bottom: 24px;
    font-size: 24px;
  }

  .excursion-tile--text {
    order: 10;
    padding: 24px;
  }

  .excursion-tile--text p {
    font-size: 18px;
  }

  .service-card__description {
    max-width: 92%;
    font-size: 18px;
  }

  .about {
    padding-bottom: 72px;
  }

  .about__title {
    margin-bottom: 24px;
    font-size: 38px;
    text-align: center;
  }

  .about__text {
    font-size: 16px;
    line-height: 1.55;
  }

  .about__text p {
    margin-bottom: 14px;
  }

  .about__image-wrap {
    height: auto;
    min-height: 420px;
  }

  .contacts {
    padding: 50px 0 100px;
  }

  .contacts__title {
    margin-bottom: 46px;
    font-size: 38px;
  }

  .contacts__link {
    font-size: 18px;
  }

  .contacts__link + .contacts__link {
    margin-top: 15px;
  }

  .contacts__socials {
    margin-top: 48px;
  }

  .contacts__social {
    width: 38px;
    height: 38px;
  }

  .hero__image-excursions {
    height: 600px;
    object-fit: cover;
    object-position: 30% center;
  }

  .second-title {
    font-size: 27px;
    padding-bottom: 30px;
  }

  .boat-list {
    padding-inline-start: 20px;
    padding-right: 0;
  }

  .program-tile {
    margin-bottom: 20px;
  }

  .program-list-block {
    margin-bottom: 70px;
    padding-bottom: 0;
  }

  .program-tile-detail,
  .program-tile-detail p {
    font-size: 15px;
  }

  .program-tile-detail,
  .program-tile-detail ul {
    padding-inline-start: 20px;
  }

  .s-text {
    font-size: 20px !important;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
