:root {
  --accent-color: #256ccc;
}

*,
:after,
:before {
  box-sizing: border-box;
}

* {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: initial;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-font-smoothing: inherit;
  background: none;
  border: none;
  padding: 0;
  line-height: normal;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

ul {
  padding: 0;
  list-style: none;
}

button:focus {
  outline: 0;
}

button {
  cursor: pointer;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: rgba(37, 108, 204, 0.03);
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  padding: 0;
  font-family: "Noto Sans Hebrew", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.container {
  max-width: 1376px;
  width: 100%;
  margin: 0 auto;
  padding: 0 45px;
}

main {
  flex: 1;
  overflow: hidden;
}

header {
  background-color: #fff;
  width: 100%;
  z-index: 1000;
}

.header__container {
  min-height: 80px;
  display: flex;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.nav-btn {
  flex: 3;
  display: flex;
  align-items: center;
}

.nav-links {
  flex: 2;
}

.log-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-right: 30px;
}

.btn {
  min-height: 46px;
  min-width: 137px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--accent-color);
  font-size: 15px;
  font-weight: 500;
  gap: 9px;
  border-radius: calc(infinity * 1px);
  transition: 0.3s;
}

.btn-sign {
  background-color: #0b2343;
}

.nav-links > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-divider {
  height: 34px;
  width: 1px;
  background-color: rgba(37, 108, 204, 0.22);
  z-index: 2;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 17px;
  transition: 0.2s;
  cursor: pointer;
}

.nav-link:hover > a {
  color: var(--accent-color);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 8px 8px;
  transition: 0.3s;
  padding-top: 28px;
  overflow: hidden;
}

.dropdown ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px 70px;
  position: relative;
  background-color: #fff;
  padding: 17px 40px 24px;
}

.dropdown ul.grid-small {
  grid-template-columns: 1fr 1fr;
}

.dropdown-link > a {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.dropdown-link > a span {
  white-space: nowrap;
  text-align: center;
  line-height: 15px;
}

.dropdown-link__img {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-logo {
  width: 64px;
  margin: 3px auto 0;
}

.dropdown-link:hover > a {
  color: var(--accent-color);
}

.dropdown-link {
  position: relative;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  opacity: 1;
  pointer-events: auto;
}

.nav-link > .dropdown,
.dropdown-link > .dropdown {
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link .dropdown.open,
.dropdown-link .dropdown.open {
  opacity: 1;
  pointer-events: auto;
  display: block;
  max-width: fit-content;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 2rem;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  position: relative;
  z-index: 1001;
  transition: 0.3s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #000;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger-menu div:before {
  transform: translateY(-8px);
}

.hamburger-menu div:after {
  transform: translateY(8px);
}

#check {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

.home-hero {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.home-hero > * {
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}

.hero-info {
  width: 100%;
  padding: 0 30px;
}

.home-hero__banner {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-info h1 {
  color: #fff;
  font-size: 73px;
  line-height: 85px;
  font-weight: 500;
  text-align: center;
}

.hero-info h1 span {
  font-weight: 800;
}

.hero-info__subtitle {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.search-form {
  width: 100%;
  min-height: 82px;
  max-width: 1112px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  border-radius: 18px;
  padding: 0 46px;
  overflow: hidden;
  margin: 30px auto 0;
}

.search-inputs {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.input-group {
  flex: 1;
  position: relative;
}

.input-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 0.5rem;
}

.search-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 23px;
  outline: none;
}

.search-input::placeholder {
  color: #000;
}

.search-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  border-radius: 15px;
  margin-left: -30px;
  margin-right: 30px;
  flex-shrink: 0;
}

.footer {
  background-color: #022c57;
  color: #fff;
  padding: 100px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__col-logo {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__socials a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
}

.footer__socials a img {
  width: 16px;
  height: 16px;
}

.footer__col-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__col-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #fff;
}

.footer__col-links {
  display: flex;
  justify-content: space-between;
  flex: 0.6;
}

.footer__col-links div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__col-links div a {
  color: #fff;
}

.footer__col-links div a:hover {
  text-decoration: underline;
}

.home-promo {
  background-color: #f0f5fb;
  padding: 134px 0 240px;
}

.section-title {
  font-size: 50px;
  line-height: 68px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 95px;
}

.section-title span {
  font-weight: 800;
}

.home-promo__blocks {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.home-promo__block {
  height: 317px;
  max-width: 532px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px 0 rgba(0, 0, 0, 0.08);
}

.home-promo__block span {
  font-size: 28px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.77);
}

.home-promo__block:hover span {
  color: var(--accent-color);
}

.home-promo__block-icon {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-slider {
  padding: 90px 0 50px;
}

.soldier-card__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.soldier-card__image {
  aspect-ratio: 314 / 298;
}

.info-card__image {
  aspect-ratio: 417 / 289;
}

.soldier-card__content {
  text-align: center;
  padding: 16px 12px 0;
}

.soldier-name {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}

.soldier-dates {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.77);
}

.swiper {
  /*position: relative;
  overflow: hidden;*/
}

.swiper-wrapper {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;*/
  /*overflow-x: hidden;*/
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.swiper-pagination div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.swiper-pagination div.active {
  background-color: var(--accent-color);
}

.home-estate {
  padding: 120px 0 200px;
}

.home-estate__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.home-estate__wrapper > * {
  flex: 1;
}

.home-estate__wrapper .section-title {
  font-size: 45px;
  line-height: 61px;
  text-align: right;
  margin-bottom: 40px;
}

.home-estate__wrapper .section-title span {
  font-weight: 700;
}

.home-estate__subtitle {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.77);
  margin-bottom: 50px;
}

.home-estate__info {
  font-size: 21px;
  line-height: 38px;
  color: rgba(0, 0, 0, 0.77);
}

.home-estate__btn {
  width: 190px;
  height: 54px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 18px;
  margin-top: 50px;
}

.search__wrapper {
  background-color: #fff;
  border-radius: 18px;
  padding: 25px;
}

.search {
  width: 658px;
  display: flex;
  align-items: center;
  background: rgba(204, 227, 255, 0.12);
  border: 1px solid rgba(204, 227, 255, 0.55);
  border-radius: 18px;
}

.search__btn {
  margin-left: 20px;
}

.search__input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 21px;
  padding: 10px 20px;
}

.search__input::placeholder {
  color: #000;
}

.search-block {
  max-width: 832px;
  width: 100%;
  background-color: #fff;
  border-radius: 18px;
  margin: 20px auto 0;
  padding: 38px 60px 26px;
}

.search-block .search {
  width: 100%;
  border-color: #cac7c7;
  background-color: #f6f6f6;
}

.search-block .search .search__input {
  font-size: 16px;
  padding: 16px 20px;
}

.search-location__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 30px auto 0;
  cursor: pointer;
}

.search-location__btn span {
  font-size: 15px;
}

.search-location__btn:hover span {
  color: var(--accent-color);
}

.form-details-s {
  padding: 107px 0 160px;
}

.form-details-s h2 {
  max-width: 915px;
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 50px;
}

.form-details {
  max-width: 1100px;
  margin: 0 auto;
}

.form-details__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 42px;
}

.input {
  height: 50px;
  border: 1px solid rgba(37, 108, 204, 0.22);
  background-color: rgba(211, 226, 245, 0.25);
  border-radius: 10px;
  padding: 0 18px;
  outline: 0;
}

.form-details__inputs .input {
  height: 75px;
  font-weight: 600;
}

.form-details__inputs .input::placeholder {
  font-size: 15px;
  font-weight: 600;
  color: rgba(50, 48, 48, 1);
}

.form-details__btn {
  height: 66px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
  margin-top: 33px;
}

.info-s {
  padding: 75px 0 184px;
}

.info__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.info-card__content {
  padding: 24px 30px 0;
}

.info-card__title {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 13px;
}

.info-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}

.services-slider {
  background-color: rgba(240, 245, 251, 1);
  padding: 160px 0 260px;
}

.service-card__image {
  aspect-ratio: 314 / 190;
}

.service-card__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-card__title {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.77);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 26px 20px 30px;
}

.service-card {
  border-radius: 10px;
  box-shadow: 0 10px 28px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.swiper-container {
  position: relative;
}

.swiper-container .swiper {
  overflow: clip;
  overflow-clip-margin: 36px;
}

.swiper-container .swiper .swiper-wrapper {
  overflow: visible;
}

.swiper-arrows .swiper-button-prev,
.swiper-arrows .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(2, 44, 87, 0.66);
  cursor: pointer;
  right:unset;
  left:unset;
}

.swiper-arrows .swiper-button-prev {
  transform: rotate(180deg);
  right: -58px;
  transform-origin: 50% 25%;
}

.swiper-arrows .swiper-button-next {
  left: -58px;
}

.hero-info__subtitle span {
  font-weight: 700;
}

.catering-subtitle {
  max-width: 650px;
  margin: 30px auto 0;
}

.region-listing-s {
  padding: 60px 0 100px;
}

.region-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.region-listing__btn {
  width: 100%;
  height: 54px;
  font-size: 27px;
  font-weight: 600;
  background-color: #0b2343;
  border-radius: 12px;
  margin-bottom: 11px;
}

.region {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid #cce3ff;
}

.region__img {
  max-width: 60px;
  margin-left: 15px;
  flex-shrink: 0;
}

.region__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.region__img + div {
  margin-left: auto;
}

.region__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.region__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.btn-region-outline {
  min-height: 36px;
  min-width: 105px;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  margin-right: 15px;
}

.btn-region-outline {
  font-size: 14px;
  font-weight: 400;
  color: #0b2343;
}

.invitation-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 12px;
  padding: 26px 75px;
  margin: 50px 0 60px;
}

.invitation-banner__info {
  font-size: 24px;
  line-height: 32px;
}

.invitation-banner__info span {
  font-weight: 700;
}

.invitation-banner__btn {
  width: 180px;
  height: 46px;
  font-size: 18px;
  border-radius: 12px;
  gap: 14px;
}

.traditions-summary {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 74px;
  overflow: hidden;
}

.traditions-summary:last-child {
  margin-bottom: 156px;
}

.traditions-summary__header {
  height: auto;
  max-height: 132px;
  min-height: 94px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.traditions-summary__header > * {
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}

.traditions-summary__header > div {
  padding: 15px 30px;
}

.traditions-summary__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.traditions-summary__title {
  font-size: 36px;
  font-weight: 700;
}

.traditions-summary__subtitle {
  font-size: 24px;
  font-weight: 600;
}

.traditions-summary__content {
  padding: 60px 62px 50px;
}

.traditions-summary__content-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.traditions-summary__content-list {
  list-style-type: disc;
  padding-right: 25px;
}

.traditions-summary__content-list li {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
}

.traditions-summary__content div > div:not(:last-child) {
  margin-bottom: 30px;
}

.traditions-summary__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.auth {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0px 2px 20px 0 rgba(0, 0, 0, 0.05);
  margin: 80px 0 138px;
  padding: 48px 50px 150px;
}

.auth__title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #0b2343;
  margin-bottom: 50px;
}

.auth__wrapper {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.auth__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  line-height: 17px;
}

.auth__divider::before,
.auth__divider::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 150px;
  background-color: rgba(37, 108, 204, 0.22);
}

.auth__block {
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.auth__block h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 50px;
}

.auth__btn-blue,
.auth__btn-white {
  height: 50px;
  max-width: 323px;
  width: 100%;
}

.auth__btn-blue {
  font-weight: 700;
}

.auth__btn-white {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.54);
  box-shadow: 0px 13px 25px 0 rgba(0, 0, 0, 0.03);
  margin-top: 35px;
}

.auth__form {
  height: 50px;
  display: flex;
  border-radius: calc(infinity * 1px);
  background-color: #f0f5fb;
  overflow: hidden;
  margin-bottom: 24px;
}

.auth__form input {
  width: 100%;
  outline: 0;
  padding: 0 20px;
}


.auth__form button {
  min-width: 104px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--accent-color);
}

.auth__block .form-check {
  justify-content: center;
}

.auth__block .form-check label {
  font-size: 11px;
}

.form-check {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-check input[type="radio"],
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 21px;
  height: 21px;
  border: 1px solid #000;
  border-radius: 2px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.form-check input[type="radio"]:checked::before,
.form-check input[type="checkbox"]:checked::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--accent-color);
}

.form-check label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.77);
  cursor: pointer;
}

.auth__block .form-check input[type="checkbox"]:checked::before {
  content: "✔";
  position: absolute;
  top: 46%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--accent-color);
}

.auth__pass-recovery {
  max-width: 150px;
  font-size: 10px;
  color: #525050;
  margin: 26px auto 0;
}

.auth__pass-recovery a {
  color: var(--accent-color);
  text-decoration: underline;
}

.search-container {
  padding: 70px 0;
}

.search-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btn-outline {
  height: 50px;
  width: 215px;
  font-size: 16px;
  font-weight: 500;
  color: #0b2343;
  background-color: rgba(204, 227, 255, 0.28);
  border: 1px solid rgba(37, 108, 204, 0.17);
  padding: 0 20px;
}

.search-topbar__title {
  font-size: 18px;
  font-weight: 600;
  color: #022c57;
  margin: 0 auto;
}

.search-topbar__filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.search-items {
  max-width: 708px;
  width: 100%;
  margin: 35px auto 0;
}

.search-item {
  display: flex;
  gap: 15px;
  background-color: #fff;
  border-radius: 13px;
  padding: 18px 38px;
  margin-bottom: 17px;
}

.search-item:last-child {
  margin-bottom: 0;
}

.search-item__img {
  width: 128px;
  height: 128px;
}

.circled-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fba947;
  flex-shrink: 0;
}

    .circled-img img {
        border-radius: 50%;
        width: 92%;
        height: 92%;
        object-fit:cover;
    }

.search-item__name {
  font-size: 17px;
  line-height: 23px;
  font-weight: 700;
  color: #0b2343;
  margin-bottom: 2px;
}

.search-item__dates {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 3px;
}

.search-item__location {
  font-size: 14px;
  font-weight: 500;
  color: #022c57;
  margin-bottom: 5px;
}

.search-item__desc {
  font-size: 13px;
  line-height: 18px;
  color: #000;
}

.search-item__link {
  font-size: 11px;
  font-weight: 700;
  color: #022c57;
}

.search-item__link span {
  color: #fba947;
}

.memorial-wrapper {
  max-width: 824px;
  margin: 0 auto;
  padding: 50px 0 150px;
}

.person {
  text-align: center;
  margin-bottom: 115px;
}

.person__title {
  font-size: 55px;
  font-weight: 700;
  color: #0b2343;
  margin-bottom: 30px;
}

.person__title span {
  font-size: 32px;
}

.person__img {
  width: 186px;
  height: 186px;
  margin: 0 auto;
}

.person__name {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-top: 20px;
  margin-bottom: 3px;
}

.person__dates {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.person__info {
  max-width: 614px;
  font-size: 19px;
  line-height: 28px;
  color: #000;
  margin: 34px auto 0;
}

.person__timeline {
  position: relative;
  margin: 108px 0 88px;
}

.person__timeline-wrapper {
  display: flex;
}

.person__timeline-wrapper .person-slide {
  flex: 1;
  min-width: 120px;
}

.person-slide {
  text-align: center;
}

.person-slide__img {
  width: 91px;
  height: 91px;
  margin: 0 auto 11px;
  position:relative;
}

.person-slide__title {
  height: 41px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #0b2343;
}

.person-slide__year {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.person-slide__line {
  position: relative;
}

.person-slide__line span {
  display: block;
  width: 1px;
  height: 31px;
  background-color: #0b2343;
  margin: 15px auto 10px;
}

.person-slide__line span::before,
.person-slide__line span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 1px;
  background-color: #0b2343;
}

.person-slide__line span::before {
  left: 0;
}

.person-slide__line span::after {
  right: 0;
}

.person-slide.first-slide .person-slide__line span::after,
.person-slide.last-slide .person-slide__line span::before {
  content: none;
}
.person-slide.only-slide .person-slide__line span::after,
.person-slide.only-slide .person-slide__line span::before {
    display: none;
}

.remembrance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.remembrance__item {
  height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.remembrance__item:hover .remembrance__title {
  color: var(--accent-color);
}

.remembrance__img {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remembrance__title {
  font-size: 15px;
  font-weight: 700;
  color: #3e3d3d;
}

.block-title {
  font-size: 32px;
  font-weight: 500;
  color: #0b2343;
  text-align: center;
}

.block-title span {
  font-weight: 700;
}

.events {
  margin-bottom: 115px;
}

.events__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.event {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.03);
  padding: 15px 20px;
}

.event__icon {
  position: absolute;
  top: 18px;
  right: 22px;
}

.event__title {
  font-size: 22px;
  font-weight: 700;
  color: #0b2343;
  margin-bottom: 20px;
}

.event__date {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.event__date-divider {
  width: 1px;
  height: 26px;
  background-color: #cce3ff;
  margin: 0 25px;
}

.event__date-date {
  font-size: 16px;
  font-weight: 600;
  color: #0b2343;
}

.event__date-time {
  font-size: 16px;
  font-weight: 500;
  color: #fba947;
}

.event__date-location {
  font-size: 17px;
  line-height: 25px;
  color: #000;
  text-align: center;
}

.about {
  background-color: #fff;
  border-radius: 8px;
  padding: 52px 65px 66px;
}

.about__info {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 16px 0 30px;
}

.about__form {
  text-align: center;
  margin-bottom: 100px;
}

.about__form textarea {
  width: 100%;
  height: 118px;
  resize: none;
  background-color: #f8fafd;
  border: 1px solid rgba(37, 108, 204, 0.21);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 10px 15px;
  outline: none;
}

.about__form .btn {
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  width: 205px;
}

.quote__title {
  font-size: 18px;
  font-weight: 600;
  color: #022c57;
  text-align: center;
  margin-bottom: 50px;
}

.quote {
  display: flex;
  gap: 25px;
  padding-left: 20px;
}

.quote:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cce3ff;
}

.quote__icon {
  flex-shrink: 0;
}

.quote__text {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  margin-bottom: 30px;
}

.quote__author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.quote__date,
.quote__author-name {
  font-size: 12px;
  line-height: 12px;
  color: var(--accent-color);
}

.quote__author span {
  font-size: 11px;
  line-height: 14px;
  color: #000;
}

.settings-btn {
  background-color: #edf4fe;
  color: #022c57;
}

.settings-btn svg {
  margin-right: -10px;
}

.memorial-pillars {
  margin-bottom: 100px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 21px;
  font-weight: 700;
  color: #0b2343;
  text-align: center;
  margin-bottom: 45px;
}

.memorial-pillars__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 19px;
}

.memorial-pillars__list .search-item {
  position: relative;
  margin-bottom: 0;
  padding: 15px 28px;
}

.memorial-pillars__list .search-item .circled-img {
  width: 105px;
  height: 105px;
}

.memorial-pillars__list .search-item .search-item__desc {
  font-size: 12px;
  line-height: 18px;
}

.memorial-edit-btn {
  width: 32px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.user-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dashboard-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 28px 20px 60px;
}

.user-dashboard {
  margin: 69px 0 56px;
}

.dashboard-block .dashboard-title {
  margin-bottom: 50px;
}

.dashboard-memorial {
  background-color: #f6faff;
  border: 1px solid rgba(204, 227, 255, 0.65);
  border-radius: 13px;
  text-align: center;
  padding: 24px 38px 30px;
}

.dashboard-memorial .search-item__name {
  font-size: 17px;
  font-weight: 700;
  color: #022c57;
  margin-bottom: 0;
}

.dashboard-memorial .circled-img {
  width: 105px;
  height: 105px;
  margin: 22px auto 7px;
}

.dashboard-memorial .search-item__desc {
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.77);
  margin-top: 25px;
}

.dashboard-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-events .event {
  min-height: auto;
  background-color: #f6faff;
  border: 1px solid rgba(204, 227, 255, 0.65);
  border-radius: 13px;
  justify-content: flex-start;
  box-shadow: none;
  padding: 9px 20px;
}

.dashboard-events .event__date-divider {
  height: 23px;
}

.dashboard-events .event__date-location,
.dashboard-events .event__date-time,
.dashboard-events .event__date-date {
  font-size: 15px;
}

.dashboard-events .event__date {
  margin-bottom: 5px;
}

.dashboard-events .event__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #022c57;
}

.dashboard-events .event__icon {
  width: 25px;
  top: 14px;
  right: 16px;
}

.add-event-btn {
  height: 100px;
  justify-content: center !important;
  gap: 8px;
}

.add-event-btn span {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.77);
}

.dashboard-notifications {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification-labels {
  position: absolute;
  top: -24px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 14px;
  font-weight: 500;
  color: #022c57;
}

.notification {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #f6faff;
  border: 1px solid rgba(204, 227, 255, 0.65);
  border-radius: 13px;
  padding: 10px 17px;
}

.notification .btn {
  height: 32px;
  min-height: auto;
  min-width: 88px;
  font-size: 12px;
  font-weight: 600;
}

.notifications-btn {
  min-height: 41px;
  width: 171px;
  font-size: 16px;
  font-weight: 600;
  background-color: #022c57;
  margin-top: 22px;
}

.notification-title {
  font-size: 14px;
  text-align: right;
}

.custom-radio {
  display: inline-flex;
  gap: 16px;
}

.radio-input {
  display: none;
}

.radio-label {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.radio-input.negative + .radio-label {
  border: 1px solid #fba947;
  background: #fff;
}

.radio-input.positive + .radio-label {
  border: 1px solid rgba(37, 108, 204, 0.28);
  background: #fff;
}

.radio-input.positive:checked + .radio-label {
  background: rgba(204, 227, 255, 0.47);
  border: 1px solid rgba(37, 108, 204, 0.28);
}

.radio-input.negative:checked + .radio-label {
  background: rgba(251, 169, 71, 0.12);
  border: 1px solid #fba947;
}

.radio-input.negative:checked + .radio-label::after,
.radio-input.positive:checked + .radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 14px;
  background-image: url("../images/icons/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.radio-input.negative:checked + .radio-label::after {
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/cross.svg");
}

.page-header {
  background-color: rgba(204, 227, 255, 0.39);
  padding: 13px 0;
  margin-bottom: 44px;
}

.page-header__title {
  font-size: 22px;
  font-weight: 600;
  color: #0b2343;
}

.page-header__title span {
  font-weight: 800;
}

.settings {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 150px;
}

.settings-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 45px 140px;
}

.settings-block__title {
  font-size: 23px;
  font-weight: 600;
  color: #022c57;
  text-align: right;
  margin-bottom: 40px;
}

.settings-block__title span {
  font-weight: 400;
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.settings-grid__col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.wizard .form-check input[type="radio"],
.checkbox-options .form-check input[type="checkbox"],
.settings-grid__col .form-check input[type="checkbox"] {
  width: 30px;
  height: 30px;
  border-color: rgba(37, 108, 204, 0.28);
  border-radius: 6px;
  background-color: #f8fafd;
}

.wizard .form-check input[type="radio"]:checked::before,
.checkbox-options .form-check input[type="checkbox"]:checked::before,
.settings-grid__col .form-check input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 13px;
  background-image: url("../images/icons/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.settings-grid__col .form-check label {
  font-size: 19px;
  color: #000;
  text-align: right;
}

.form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.form-group .input {
  height: 46px;
  max-width: 280px;
  width: 100%;
}

.form-group label {
  font-size: 19px;
  text-align: right;
}

.user-settings-btn {
  color: #fffafa;
  background-color: #0b2343;
  width: 170px;
  margin-top: 50px;
}

#dialog {
  width: 290px;
  margin: auto;
  padding: 54px 38px 27px;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.close-btn {
  position: absolute;
  top: 9px;
  right: 9px;
}

.dialog-btn {
  height: 54px;
  width: 215px;
  font-size: 16px;
  font-weight: 600;
}

.dialog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.wizard-banner {
  position: relative;
}

.wizard-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #022c5770;
}

.wizard-banner__title {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  font-size: 73px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  z-index: 1;
  padding: 0 15px;
}

.wizard-banner__title span {
  font-weight: 700;
}

.wizard-banner__img {
  object-fit: cover;
  width: 100%;
  min-height: 200px;
  object-position: center;
}

.wizard {
  padding: 40px 0 100px;
}

.wizard__title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  color: #022c57;
  text-align: center;
  margin-bottom: 50px;
}

.wizard__title span {
  font-weight: 700;
}

.progress-stepper {
  position: relative;
  max-width: 1104px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 auto 42px;
  overflow-x: auto;
  overflow-y: hidden;
}

.progress-stepper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 81%;
  height: 1px;
  background-color: #cce3ff;
  z-index: -1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #cce3ff;
  border: 1px solid rgba(37, 108, 204, 0.17);
  border-radius: 50%;
}

.step-circle span {
  font-size: 29px;
  font-weight: 600;
  color: var(--accent-color);
}

.step-title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: var(--accent-color);
}

.step-item.active .step-circle {
  background-color: var(--accent-color);
}

.step-item.active .step-circle span {
  color: #fff;
}

.step-item.active .step-title {
  color: var(--accent-color);
}

.step-content-block {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.03);
  padding: 44px 40px 60px;
}

.step-content-block:not(:last-child) {
  margin-bottom: 25px;
}

.step-1__inner {
  max-width: 907px;
  width: 100%;
  margin: 0 auto;
}

.advertising-options {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 50px;
  margin-bottom: 60px;
}

.wizard .form-check input[type="radio"] {
  background-color: #fff;
}

.wizard .form-check input[type="radio"]:checked {
  background-color: rgba(204, 227, 255, 0.53);
}

.wizard .form-check label {
  color: #000;
  font-weight: 500;
}

.step-1__filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  margin-bottom: 90px;
}

.select-wrapper {
  position: relative;
  cursor: pointer;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  background: url("../images/icons/select-arrow.svg") center no-repeat;
  background-size: 100%;
  width: 16px;
  height: 9px;
  pointer-events: none;
}

.select-wrapper select {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #022c57;
  padding: 0 25px 0 45px;
}

.step-1__search {
  position: relative;
}

.step-1__search .input {
  width: 100%;
  color: #022c57;
  padding: 0 25px 0 75px;
}

.step-1__search .input::placeholder {
  color: #022c57;
}

.step-1__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 8px;
}

.publish-title {
  font-size: 19px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 35px;
}

.publish-title span {
  font-weight: 600;
}

.publish-grid {
  max-width: 574px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 140px;
  margin: 0 auto;
}

.publish-item p {
  font-size: 18px;
  font-weight: 600;
}

.publish-item a {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-color);
  text-decoration: underline;
}

.step-content-block__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: #022c57;
  text-align: center;
  margin-bottom: 30px;
}

.step-content-block__title span {
  font-weight: 800;
}

.step-2__inner {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}

.step-5__inner {
  max-width: 665px;
  width: 100%;
  margin: 0 auto;
}

.block-inner {
  background-color: #f6faff;
  border: 1px solid rgba(204, 227, 255, 0.65);
  border-radius: 13px;
  overflow: hidden;
}

.block-inner__header {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  background-color: #022c57;
  text-align: center;
  padding: 15px;
}

.block-inner__header span {
  color: #cce3ff;
}

.block-inner__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.block-inner__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 600;
  color: #022c57;
}

.block-inner__list li::before {
  content: "";
  display: inline-block;
  background: url("../images/icons/circled-check.svg") center no-repeat;
  background-size: 100%;
  width: 23px;
  height: 22px;
  flex-shrink: 0;
}

.step-2__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.input-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position:relative;
}

.input-holder .select-wrapper,
.input-holder .input {
  max-width: 340px;
  width: 100%;
  background-color: #fff;
}

.input-holder .select-wrapper {
  background-color: transparent;
}

.input-holder label {
  font-size: 18px;
  font-weight: 400;
  color: #022c57;
}

.input-holder .select-wrapper select {
  font-size: 18px;
  font-weight: 500;
  color: #022c57;
}

.block-checkbox-title {
  font-size: 21px;
  font-weight: 600;
  color: #022c57;
  margin-bottom: 24px;
}

.block-checkbox-title span {
  font-weight: 800;
}

.checkbox-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.checkbox-options .form-check label {
  font-size: 18px;
  color: #022c57;
}

.checkbox-options .form-check input[type="checkbox"] {
  background-color: #fff;
}

.about-message {
  height: 109px;
  width: 100%;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  color: #022c57;
  resize: none;
  padding: 12px 24px;
}

.about-message::placeholder {
  font-size: 18px;
  font-weight: 500;
  color: rgba(2, 44, 87, 0.62);
}

.upload-info {
  margin-bottom: 45px;
}

.upload-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #022c57;
}

.upload-info p:last-child {
  font-weight: 600;
}

.upload-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.upload-images__item {
  height: 220px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.upload-images__item img {
  /*margin-left: 20px;*/
}

.wizard-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color: rgba(204, 227, 255, 0.38);
  border-radius: 8px;
  margin-top: 25px;
  padding: 28px 15px;
}

.wizard-buttons .btn {
  position: relative;
  height: 55px;
  width: 204px;
  font-size: 21px;
  font-weight: 600;
}

.wizard-buttons .btn svg {
  position: absolute;
}

.wizard-buttons .btn:first-child {
  background-color: #fff;
  color: #0b2343;
}

.wizard-buttons .btn:first-child svg {
  right: 21px;
}

.wizard-buttons .btn:last-child {
  background-color: #0b2343;
  color: #fff;
}

.wizard-buttons .btn:last-child svg {
  left: 21px;
}

.order-info {
  max-width: 424px;
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
  color: #0b2343;
  text-align: center;
  margin: -15px auto 30px;
}

.order {
  position: relative;
  padding: 30px;
}

.order-wrapper {
  max-width: 541px;
  display: flex;
  align-items: flex-end;
  gap: 37px;
  margin: 0 auto;
}

.order-title {
  font-size: 19px;
  line-height: 28px;
  color: rgba(2, 44, 87, 0.88);
}

.order-img {
  position: relative;
  flex-shrink: 0;
}

.order-price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 30px;
}

.order-price__value {
  font-size: 24px;
  font-weight: 400;
  color: #0b2343;
}

.order-price__value span {
  font-size: 29px;
  font-weight: 600;
}

.order-price__label {
  margin-bottom: 5px;
}

.btn-remove {
  position: absolute;
  right: 11px;
  bottom: 10px;
  display: flex;
  gap: 2.5px;
  align-items: flex-end;
}

.btn-remove span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.49);
}

.verification {
  text-align: center;
  padding: 25px 30px 28px;
}

.verification-title {
  font-size: 19px;
  line-height: 26px;
  color: rgba(2, 44, 87, 0.88);
  margin-bottom: 17px;
}

.verification-subtitle {
  font-size: 15px;
  line-height: 19px;
  color: #0b2343;
  margin-bottom: 30px;
}

.verification-options {
  display: flex;
  justify-content: center;
  gap: 6.5%;
}

.verification-options .select-wrapper {
  max-width: 212px;
  width: 100%;
}

.verification-options .select-wrapper select {
  text-align: center;
}

.step-4__title {
  max-width: 722px;
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
  color: #0b2343;
  text-align: center;
  margin: 0 auto 24px;
}

.step-4__subtitle {
  max-width: 620px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(11, 35, 67, 0.77);
  text-align: center;
  margin: 0 auto 50px;
}

.step-4__warning {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
}

.step-4__inputs {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0 auto;
  padding: 40px 15px;
}

.step-4__inputs .input-holder {
  flex-direction: column;
  align-items: flex-start;
}

.step-4__inputs .input-holder label {
  line-height: 24px;
}

.total-btn {
  width: auto;
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  padding: 0 30px;
}

.total-btn__cart {
  position: relative;
}

.total-btn__cart > span {
  position: absolute;
  top: -6px;
  right: -13px;
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.total-btn__cart > span span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.total-btn__text {
  font-weight: 400;
  color: #000;
}

.total-btn__price {
  font-size: 15px;
  font-weight: 400;
  color: #022c57;
}

.total-btn__price span {
  font-size: 22px;
  font-weight: 600;
}

.display-btn {
  position: absolute;
  top: -13px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.display-btn span {
  font-size: 8px;
  color: rgba(0, 0, 0, 0.66);
}

.step-5__inner .order {
  padding: 50px 15px;
}

.step-5__inner .order-wrapper {
  max-width: 450px;
  align-items: center;
  gap: 18%;
}

.step-5 .step-content-block__title {
  margin-bottom: 60px;
}

.order-obituary-title {
  font-size: 17px;
  line-height: 22px;
  font-weight: bold;
  color: #022c57;
}

.order-obituary-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #022c57;
}

.order-obituary-desc span {
  font-weight: bold;
}

.order-details-desc {
  flex-shrink: 0;
}

.order-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 170px;
  width: auto;
  border-radius: 12px;
  color: #022c57;
  background-color: rgba(204, 227, 255, 0.73);
  border: 1px solid rgba(37, 108, 204, 0.1);
  margin-top: 23px;
}

.details-btn__text {
  font-size: 13px;
  margin-left: 10px;
  margin-bottom: -3px;
}

.order-details-btn .total-btn__price {
  margin-bottom: 2px;
}

.order-details-btn .total-btn__price span {
  font-size: 21px;
}

.step-5__inner .block-inner {
  margin-bottom: 30px;
}

.order-commemorative-title {
  font-size: 18px;
  font-weight: 600;
  color: #022c57;
  margin-bottom: 2px;
}

.order-commemorative-title > span {
  font-size: 17px;
  font-weight: 800;
  color: #022c57;
}

.order-commemorative-title > span span {
  color: var(--accent-color);
}

.order-commemorative-subtitle {
  font-size: 16px;
  font-weight: 800;
  color: #022c57;
}

.order-commemorative {
  width: 184px;
  min-height: 171px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.order-commemorative__name {
  font-size: 12px;
  font-weight: 700;
  color: #022c57;
  margin-bottom: 5px;
}

.order-commemorative__img {
  width: 52px;
  height: 52px;
  margin-bottom: 4px;
}

.order-commemorative__dates {
  font-size: 10px;
  font-weight: 600;
}

.order-commemorative__location {
  font-size: 9px;
  font-weight: 500;
  color: #022c57;
  margin-bottom: 8px;
}

.order-commemorative__desc {
  font-size: 8px;
  line-height: 12px;
  color: rgba(0, 0, 0, 0.66);
}

.order-details-total {
  width: 100%;
  height: 64px;
  margin-top: -12px;
}

.order-details-total .details-btn__text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.order-details-total .total-btn__price span {
  font-size: 23px;
}

.support-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  margin: 53px 0 143px;
}

.support-block {
  min-height: 470px;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.03);
  padding: 25px 35px 60px;
}

.support-block__title p {
  font-size: 29px;
  line-height: 39px;
  font-weight: 500;
}

.support-block.audio .support-block__title {
  max-width: 348px;
  margin: 0 auto 30px;
}

.audio-player {
  position: relative;
  z-index: 1;
}

.audio-player img {
  margin: 0 auto;
}

.support-img {
  width: 24%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.support-regions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 33px;
}

.support-region {
  background-color: #f6faff;
  border-radius: 12px;
  padding: 16px 16px;
}

.support-region__inner {
  max-width: 470px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.support-region .btn {
  height: 50px;
  width: 160px;
}

.support-region .btn span {
  font-size: 16px;
  font-weight: 600;
}

.support-region__title {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 15px;
}

.support-region__title span {
  font-size: 27px;
  font-weight: 600;
  color: var(--accent-color);
}

.support-controls {
  background-color: #fff;
  padding: 26px 15px 34px;
}

.support-controls__inner {
  max-width: 710px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}

.support-controls__inner .btn {
  width: 185px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ed985f;
}

.support-table {
  width: 100%;
  border-spacing: 0 8px;
}

.support-table th {
  text-align: right;
  background-color: rgba(204, 227, 255, 0.62);
  padding: 16px 20px;
}

.support-table thead tr th:nth-child(2) {
  text-align: center;
  width: 400px;
  min-width: 150px;
}

.support-table thead tr th:first-child {
  width: 700px;
  min-width: 350px;
}

.support-table thead tr th:last-child {
  width: 200px;
  min-width: 150px;
}

.support-table__thread {
  display: flex;
  align-items: center;
  gap: 20px;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: -8px;
}

.stats-row {
  text-align: center;
}

.stats-wrapper {
  display: inline-flex;
  flex-direction: column;
}

.support-table tbody {
  transform: translateY(-8px);
}

.support-table tbody tr td {
  padding: 15px 20px 15px 0;
  background-color: #fff;
}

.support-controls,
.support-table tbody tr {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
}

.support-table tbody tr td:last-child {
  padding-left: 20px;
}

.portrait-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.thread-message {
  font-size: 18px;
  font-weight: 500;
}

.thread-message-author {
  color: rgba(0, 0, 0, 0.54);
  margin-top: -3px;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: #7b7b7b;
}

.last-post p {
  line-height: 21px;
}

.last-post-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.last-post-link {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-table-wrapper {
  margin-bottom: 150px;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 30px;
  }
  .hero-info h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-info__subtitle {
    font-size: 26px;
  }
  .search-form {
    max-width: 912px;
    min-height: 68px;
    border-radius: 15px;
    padding: 0 40px;
  }
  .input-divider {
    height: 48px;
  }
  .section-title {
    font-size: 40px;
    line-height: 42px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 70px;
  }
  .home-promo {
    padding: 100px 0 130px;
  }
  .home-promo__block {
    height: 288px;
    max-width: 417px;
    gap: 20px;
  }
  .home-promo__blocks {
    gap: 30px;
  }
  .home-promo__block span {
    font-size: 24px;
  }
  .home-promo__block-icon img {
    width: 86%;
  }
  .home-estate__wrapper .section-title {
    font-size: 36px;
    line-height: 41px;
    margin-bottom: 30px;
  }
  .home-estate__subtitle {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 30px;
  }
  .home-estate__info {
    font-size: 17px;
    line-height: 35px;
  }
  .home-estate__btn {
    margin-top: 35px;
  }
  .home-estate {
    padding: 90px 0 150px;
  }
  .home-estate__wrapper {
    gap: 50px;
  }
  .search-block {
    max-width: 700px;
    padding: 34px 40px 26px;
  }
  .form-details {
    max-width: 930px;
  }
  .form-details__inputs .input {
    height: 62px;
  }
  .form-details-s h2 {
    max-width: 776px;
    font-size: 28px;
    line-height: 37px;
    margin: 0 auto 40px;
  }
  .form-details__inputs {
    gap: 26px 30px;
  }
  .form-details__btn {
    height: 60px;
    font-size: 22px;
    margin-top: 30px;
  }
  .info__wrapper {
    gap: 20px;
  }
  .info-card__title {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .info-card__content {
    padding: 18px 22px 0;
  }
  .swiper-arrows .swiper-button-prev {
    right: -35px;
  }
  .swiper-arrows .swiper-button-next {
    left: -35px;
  }
  .region-listing {
    gap: 30px;
  }
  .region-listing__btn {
    height: 50px;
    font-size: 22px;
  }
  .invitation-banner__info {
    font-size: 20px;
    line-height: 28px;
  }
  .invitation-banner {
    padding: 20px 50px;
  }
  .traditions-summary__title {
    font-size: 34px;
  }
  .traditions-summary__subtitle {
    font-size: 22px;
  }
  .traditions-summary__content {
    padding: 40px;
    gap: 30px;
  }
  .auth {
    padding: 48px 40px 100px;
  }
  .settings-block {
    padding: 45px 70px;
  }
  .settings-grid {
    gap: 47px;
  }
  .support-block__title p {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 1100px) {
  .hamburger-menu-container {
    display: flex;
  }
  #check {
    display: block;
  }
  .nav-btn {
    position: fixed;
    height: calc(100dvh - 80px);
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .nav-divider {
    display: none;
  }
  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }
  .nav-links {
    flex: initial;
    width: 100%;
  }
  .nav-links > ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-link > a {
    display: block;
    padding: 1rem 2rem;
  }
  .dropdown {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    display: none;
  }
  .dropdown-link > a {
    background-color: transparent;
    color: #000;
    padding: 1.2rem 2rem;
    line-height: 1;
  }
  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1rem 2rem;
    justify-content: flex-start;
    margin-right: 0;
  }
  .dropdown {
    border-radius: 0;
  }
  .nav-link {
    width: 100%;
  }
  .dropdown-arrow {
    position: relative;
  }
  .dropdown-arrow::before {
    content: "";
    position: absolute;
    right: 2rem;
    top: 53%;
    background: url("../images/icons/chevron.svg") center no-repeat;
    background-size: 100%;
    transform: translateY(-50%);
    width: 12px;
    height: 7px;
  }
  .dropdown-arrow:has(+ .open)::before {
    transform: translateY(-50%) rotate(180deg);
  }
  .search-link {
    display: none !important;
  }
  .search-link + .dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    max-width: 100%;
  }
  .search {
    width: 100%;
  }
  .search__wrapper {
    padding: 1rem 2rem;
  }
  .search__input {
    font-size: 18px;
  }
  .user-dashboard,
  .region-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
    .footer__col-logo {
        display: flex;
        flex-direction: column;
        align-items:center;
        gap: 25px;
    }
  .footer__col-links {
    display: flex;
    justify-content: space-between;
    flex: 0.8;
  }
  .swiper-wrapper {
    width: max-content;
  }
  .home-estate__wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .swiper-arrows {
    display: none;
  }
  .settings-grid__col .form-check label,
  .form-group label {
    font-size: 16px;
  }
  .settings-block {
    padding: 30px 30px 40px;
  }
  .support-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .support-region__inner {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  .dropdown ul {
    gap: 10px 0;
    padding: 0;
  }
  .dropdown-arrow::before {
    right: 15px;
  }
  .search__wrapper,
  .log-sign,
  .nav-link > a {
    padding: 1rem 15px;
  }
  .dropdown ul.grid-small {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .input-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .search-inputs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 15px;
  }
  .search-form {
    padding: 15px 20px;
  }
  .search-input {
    font-size: 18px;
  }
  .hero-info {
    padding: 0 15px;
  }
  .search-form__submit {
    margin-left: 0;
    margin-right: 20px;
  }
  .hero-info h1 {
    font-size: 42px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .footer__col-links {
    justify-content: space-around;
    flex: 1;
    width: 100%;
  }
  .section-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 40px;
  }
  .home-promo {
    padding: 70px 0 100px;
  }
  .home-slider {
    padding: 70px 0 50px;
  }
  .swiper-pagination {
    margin-top: 40px;
  }
  .home-estate__wrapper .section-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .home-estate__subtitle {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 20px;
  }
  .home-estate__info {
    font-size: 16px;
    line-height: 30px;
  }
  .home-estate {
    padding: 44px 0 100px;
  }
  .search-block {
    padding: 34px 20px 26px;
  }
  .form-details-s {
    padding: 70px 0;
  }
  .form-details-s h2 {
    font-size: 24px;
    line-height: 34px;
    margin: 0px auto 30px;
  }
  .form-details__inputs .input {
    height: 50px;
  }
  .form-details__inputs {
    gap: 15px;
  }
  .form-details__btn {
    height: 54px;
    font-size: 20px;
    margin-top: 24px;
  }
  .info-s {
    padding: 50px 0 90px;
  }
  .services-slider {
    padding: 70px 0 90px;
  }
  .region {
    padding: 11px 4px;
  }
  .region-listing-s {
    padding: 60px 0 80px;
  }
  .traditions-summary__content-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .traditions-summary__content-list li {
    font-size: 16px;
    line-height: 26px;
  }
  .traditions-summary__content-list {
    padding-right: 18px;
  }
  .invitation-banner {
    padding: 20px 25px;
  }
  .invitation-banner {
    margin: 50px 0;
  }
  .traditions-summary__title {
    font-size: 30px;
  }
  .traditions-summary__subtitle {
    font-size: 18px;
    line-height: 21px;
  }
  .traditions-summary {
    margin-bottom: 50px;
  }
  .traditions-summary:last-child {
    margin-bottom: 100px;
  }
  .search {
    border-radius: 10px;
  }
  .auth__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .auth__divider {
    width: 100%;
    flex-direction: row;
  }
  .auth__divider::before,
  .auth__divider::after {
    width: 100%;
    height: 1px;
  }
  .auth__title {
    font-size: 28px;
  }
  .auth__block h2 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .auth {
    margin: 50px 0 70px;
    padding: 48px 40px 70px;
  }
  .search-container {
    padding: 50px 0;
  }
  .person__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .person__title span {
    font-size: 24px;
  }
  .person__name {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 2px;
  }
  .person__dates {
    font-size: 19px;
  }
  .memorial-wrapper {
    padding: 36px 0 100px;
  }
  .person__info {
    font-size: 17px;
    line-height: 26px;
    margin: 20px auto 0;
  }
  .person__timeline {
    margin: 65px 0 80px;
  }
  .events,
  .person {
    margin-bottom: 60px;
  }
  .block-title {
    font-size: 28px;
  }
  .about {
    padding: 40px 30px 40px;
  }
  .about__form {
    margin-bottom: 58px;
  }
  .quote__title {
    margin-bottom: 40px;
  }
  .dashboard-title {
    margin-bottom: 35px;
  }
  .memorial-pillars__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .memorial-pillars {
    margin-bottom: 50px;
  }
  .user-dashboard {
    grid-template-columns: 1fr;
    margin: 50px 0;
  }
  .dashboard-block .dashboard-title {
    margin-bottom: 40px;
  }
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .settings-block__title {
    font-size: 21px;
    margin-bottom: 30px;
  }
  .settings {
    gap: 25px;
    margin-bottom: 100px;
  }
  .settings-block__title.username {
    margin-top: 30px;
  }
  .wizard-banner__title {
    font-size: 46px;
  }
  .wizard__title {
    font-size: 24px;
    line-height: 29px;
  }
  .step-circle {
    width: 50px;
    height: 50px;
  }
  .step-circle span {
    font-size: 22px;
  }
  .progress-stepper::before {
    top: 25px;
  }
  .step-content-block {
    padding: 36px 20px 46px;
  }
  .wizard-banner__img {
    min-height: 170px;
  }
  .step-1__filter {
    gap: 15px;
    margin-bottom: 50px;
  }
  .publish-grid {
    max-width: 490px;
    gap: 15px 89px;
  }
  .wizard {
    padding: 40px 0 55px;
  }
  .block-inner__header {
    font-size: 18px;
  }
  .block-inner__list li {
    font-size: 18px;
  }
  .block-inner__list {
    gap: 15px;
  }
  .step-content-block__title {
    font-size: 24px;
    line-height: 28px;
  }
  .wizard-buttons .btn {
    height: 50px;
    width: 180px;
    font-size: 18px;
  }
  .wizard-buttons .btn svg {
    width: 22px;
  }
  .wizard-buttons {
    gap: 30px;
  }
  .order-info {
    font-size: 18px;
    line-height: 22px;
    margin: -17px auto 28px;
  }
  .order-title {
    font-size: 17px;
    line-height: 27px;
  }
  .order-wrapper {
    gap: 25px;
  }
  .total-btn {
    position: static;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: -20px;
  }
  .step-5__inner .order-wrapper {
    max-width: 400px;
    gap: 10%;
  }
  .support-blocks {
    margin: 50px 0 90px;
  }
  .support-table-wrapper {
    margin-bottom: 70px;
  }
  .support-controls__inner {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .info__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-listing {
    grid-template-columns: 1fr;
  }
  .traditions-summary__content {
    grid-template-columns: 1fr;
  }
  .traditions-summary:last-child {
    margin-bottom: 60px;
  }
  .remembrance {
    grid-template-columns: 1fr 1fr;
  }
  .step-1__filter {
    grid-template-columns: 1fr;
  }
  .publish-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .home-promo__blocks {
    flex-direction: column;
    align-items: center;
  }
  .home-promo__block {
    height: 250px;
  }
  .form-details__inputs {
    grid-template-columns: 1fr;
  }
  .events__wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }
  .memorial-wrapper {
    padding: 36px 0 60px;
  }
  .dashboard-block {
    padding: 20px 15px 40px;
  }
  .notification {
    gap: 10px;
    border-radius: 10px;
    padding: 8px 9px;
  }
  .settings-block {
    padding: 30px 15px 40px;
  }
  .settings {
    margin-bottom: 60px;
  }
  .step-content-block {
    padding: 36px 15px 46px;
  }
  .publish-title {
    margin-bottom: 25px;
  }
  .input-holder {
    flex-direction: column;
    align-items: flex-start;
  }
  .input-holder .select-wrapper,
  .input-holder .input {
    max-width: 100%;
  }
  .order-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .order-img {
    margin: 0 auto;
  }
  .order-price {
    margin-top: 20px;
    justify-content: center;
  }
  .order {
    padding: 30px 15px;
  }
  .verification-options {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .verification {
    padding: 25px 15px 28px;
  }
  .step-5 .step-content-block__title {
    margin-bottom: 40px;
  }
  .step-5__inner .order {
    padding: 40px 15px 30px;
  }
  .step-5__inner .order-wrapper {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .dropdown ul,
  .dropdown ul.grid-small {
    grid-template-columns: 1fr 1fr;
  }
  .log-sign {
    gap: 10px;
  }
  .log-sign .btn {
    flex: 1;
    min-width: auto;
  }
  .hero-info {
    padding: 50px 0;
  }
  .footer__col-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .footer__inner {
    gap: 30px;
  }
  .info__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .btn-region-outline {
    margin-right: 10px;
  }
  .region__img {
    margin-left: 10px;
  }
  .traditions-summary__content {
    padding: 30px 20px 40px;
  }
  .traditions-summary__content-title {
    margin-bottom: 10px;
  }
  .traditions-summary__content div > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .traditions-summary__content {
    gap: 20px;
  }
  .auth {
    padding: 48px 15px 70px;
  }
  .search-topbar {
    flex-direction: column-reverse;
  }
  .search-topbar__filters {
    justify-content: center;
  }
  .search-item {
    flex-direction: column;
  }
  .search-item__img {
    margin: 0 auto;
  }
  .remembrance {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about {
    padding: 25px 15px 35px;
  }
  .quote {
    gap: 15px;
    padding-left: 0;
  }
  .quote__icon {
    width: 20px;
  }
  .quote__text {
    margin-bottom: 20px;
  }
  .quote:not(:last-child) {
    margin-bottom: 20px;
  }
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group .input {
    max-width: 100%;
  }
  .step-title {
    font-size: 14px;
    line-height: 17px;
  }
  .advertising-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .about-message {
    height: 200px;
  }
  .upload-info p {
    font-size: 16px;
    line-height: 24px;
  }
  .upload-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .wizard-buttons {
    gap: 10px;
  }
  .wizard-buttons .btn {
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
  .wizard-buttons .btn:last-child svg {
    left: 12px;
  }
  .wizard-buttons .btn:first-child svg {
    right: 12px;
  }
  .support-block {
    min-height: auto;
    padding: 25px 15px 40px;
  }
  .support-region__title {
    gap: 5px;
    margin-right: 0;
  }
  .support-region__title span {
    font-size: 22px;
  }
  .support-block__title p {
    font-size: 22px;
    line-height: 32px;
  }
  .support-region .btn {
    width: auto;
  }
  .support-region__inner {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .invitation-banner__btn {
    width: 100%;
  }
  .search-item {
    padding: 18px 24px;
  }
}
