@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/georgia400.woff2") format("woff2"), url("../../../assets/fonts/georgia400.woff") format("woff");
}

@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  src: url("../../../assets/fonts/georgia700.woff2") format("woff2"), url("../../../assets/fonts/georgia700.woff") format("woff");
}

@font-face {
  font-family: "Georgia";
  font-style: italic;
  font-weight: 400;
  src: url("../../../assets/fonts/georgia400italic.woff2") format("woff2"), url("../../../assets/fonts/georgia400italic.woff") format("woff");
}

@font-face {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/arial.woff2") format("woff2"), url("../../../assets/fonts/AnyConv.com__arial.woff") format("woff");
}

@font-face {
  font-family: "Arial";
  font-style: italic;
  font-weight: 400;
  src: url("../../../assets/fonts/ariali.woff2") format("woff2"), url("../../../assets/fonts/AnyConv.com__ariali.woff") format("woff");
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  min-width: 320px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Georgia", serif;
  color: #545454;
  background-color: #ffffff;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

._container {
  max-width: 1200px;
  padding: 0px 30px;
  margin: 0px auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media (max-width: 767px) {
  ._container {
    padding: 0px 10px;
  }
}

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

.header {
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0px;
  z-index: 4;
}

@media (max-width: 1279px) {
  .header {
    top: 30px;
  }
}

.header__row {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logo__link {
  display: inline-block;
}

.logo__title {
  font-family: "Georgia", serif;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #f1cdb3;
  margin-bottom: 10px;
}

.logo__subtitle {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  line-height: calc(15 / 13 * 100%);
  letter-spacing: 0.1em;
  color: #ffffff;
  padding-left: 4px;
}

.menu {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  line-height: 160%;
  color: #cdcdcd;
}

@media (max-width: 767px) {
  .menu {
    font-size: 32px;
    padding-right: 43px;
  }
}

.menu__logo {
  width: 320px;
  padding-top: 0px;
  padding-left: 10px;
  background-color: #292929;
  position: absolute;
  top: -500%;
  right: 0;
  opacity: 0;
}

.menu__logo._active-logo {
  top: 0px;
  z-index: 10;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease 0.5s;
  transition: opacity 0.5s ease 0.5s;
}

.menu__icon {
  display: none;
}

@media (max-width: 767px) {
  .menu__icon {
    display: block;
    position: relative;
    min-width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 20;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}

@media (max-width: 767px) {

  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }
}

@media (max-width: 767px) {

  .menu__icon::before,
  .menu__icon::after,
  .menu__icon span {
    right: 0px;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #f1cdb3;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}

@media (max-width: 767px) {
  .menu__icon::before {
    top: 0px;
  }
}

@media (max-width: 767px) {
  .menu__icon::after {
    bottom: 0px;
  }
}

@media (max-width: 767px) {
  .menu__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
    transform: scale(1) translate(0px, -50%);
  }
}

.menu__icon._active {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (max-width: 767px) {
  .menu__body {
    position: fixed;
    top: 0px;
    right: -100%;
    max-width: 320px;
    width: 100%;
    height: 100%;
    background-color: #292929;
    -webkit-transition: right 0.5s linear 0s;
    transition: right 0.5s linear 0s;
    overflow: auto;
  }
}

.menu__body._active {
  right: 0px;
}

.menu__body._active::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #292929;
  z-index: -1;
  opacity: 0.5;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 35px;
}

@media (max-width: 767px) {
  .menu__list {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
}

.menu__item_active {
  position: relative;
  color: #fafafa;
}

.menu__item_active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #f1cdb3;
}

.menu__link {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__link:hover {
  color: #fafafa;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 5px 45px;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  background-color: transparent;
  font-family: "Georgia", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn:hover {
  background-color: #fddcc4;
}

.btn_fill {
  background-color: #f1cdb3;
  border: none;
  color: #292929;
}

.btn_page {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  background-color: transparent;
  font-family: "Georgia", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn_page:hover {
  background-color: #fddcc4;
  border: 2px solid #fddcc4;
}

.notonly {
  position: relative;
  background: url(../../../assets/images/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%), -webkit-gradient(linear, left bottom, left top, from(#211f20), to(#211f20));
  background: url(../../../assets/images/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%), linear-gradient(0deg, #211f20, #211f20);
}

.notonly__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 460px auto;
  grid-template-columns: 460px auto;
  gap: 42px;
  padding-top: 180px;
}

@media (max-width: 1279px) {
  .notonly__row {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    justify-items: center;
    gap: 100px;
    padding-top: 150px;
  }
}

@media (max-width: 767px) {
  .notonly__row {
    gap: 105px;
  }
}

@media (max-width: 1279px) {
  .notonly__words {
    max-width: 460px;
  }
}

.words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 42px;
  padding-top: 163px;
}

@media (max-width: 1279px) {
  .words {
    padding-top: 0px;
  }
}

@media (max-width: 767px) {
  .words {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.words__title {
  font-size: 44px;
  line-height: 130%;
  color: #ffffff;
  text-align: left;
}

@media (max-width: 767px) {
  .words__title {
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.06em;
  }
}

.words__text {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  line-height: 160%;
  color: #cdcdcd;
}

@media (max-width: 767px) {
  .words__text {
    text-align: center;
  }
}

@media (max-width: 1279px) {
  .words__button {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.notonly__image-wrapper {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

@media (max-width: 1279px) {
  .notonly__image-wrapper {
    max-width: 569px;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media (max-width: 400px) {
  .notonly__image-wrapper {
    width: 260px;
  }
}

.about {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .about {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

.about__row {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: auto 430px;
  grid-template-columns: auto 430px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  gap: 120px;
}

@media (max-width: 1279px) {
  .about__row {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 80px;
  }
}

@media (max-width: 767px) {
  .about__row {
    gap: 42px;
  }
}

@media (max-width: 1279px) {
  .about__image-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 400px) {
  .about__image-wrapper {
    width: 260px;
  }
}

@media (max-width: 1279px) {
  .about__article {
    max-width: 430px;
  }
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
}

@media (max-width: 767px) {
  .article {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    padding: 0 15px;
  }
}

.article__title {
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}

@media (max-width: 767px) {
  .article__title {
    font-size: 25px;
    text-align: center;
  }
}

.article__paragraph {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  line-height: 160%;
  color: #4c4c4c;
}

@media (max-width: 767px) {
  .article__paragraph {
    text-align: justify;
  }
}

.friends {
  background-color: #f6f6f6;
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .friends {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

.friends__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  gap: 60px;
}

@media (max-width: 767px) {
  .friends__box {
    gap: 42px;
  }
}

.friends__title {
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
  text-align: center;
}

@media (max-width: 767px) {
  .friends__title {
    font-size: 25px;
  }
}

.carousel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  -webkit-column-gap: 53px;
  column-gap: 53px;
}

@media (max-width: 1279px) {
  .carousel {
    -webkit-column-gap: 12px;
    column-gap: 12px;
  }
}

@media (max-width: 767px) {
  .carousel {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-column-gap: 0;
    column-gap: 0;
    row-gap: 20px;
  }
}

@media (max-width: 767px) {
  .carousel__left-arrow {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.carousel__wrapper {
  width: 990px;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .carousel__wrapper {
    width: 580px;
  }
}

@media (max-width: 767px) {
  .carousel__wrapper {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    width: 270px;
  }
}

.carousel__list {
  position: relative;
  left: -1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
}

@media (max-width: 1279px) {
  .carousel__list {
    left: -620px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .carousel__list {
    left: -270px;
    gap: 0;
  }
}

@-webkit-keyframes move-right-1280 {
  from {
    left: -1080px;
  }

  to {
    left: -2160px;
  }
}

@keyframes move-right-1280 {
  from {
    left: -1080px;
  }

  to {
    left: -2160px;
  }
}

@-webkit-keyframes move-right-768 {
  from {
    left: -620px;
  }

  to {
    left: -1240px;
  }
}

@keyframes move-right-768 {
  from {
    left: -620px;
  }

  to {
    left: -1240px;
  }
}

@-webkit-keyframes move-right-320 {
  from {
    left: -270px;
  }

  to {
    left: -540px;
  }
}

@keyframes move-right-320 {
  from {
    left: -270px;
  }

  to {
    left: -540px;
  }
}

.transition-right {
  -webkit-animation-name: move-right-1280;
  animation-name: move-right-1280;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@media (max-width: 1279px) {
  .transition-right {
    -webkit-animation-name: move-right-768;
    animation-name: move-right-768;
  }
}

@media (max-width: 767px) {
  .transition-right {
    -webkit-animation-name: move-right-320;
    animation-name: move-right-320;
  }
}

@-webkit-keyframes move-left-1280 {
  from {
    left: -1080px;
  }

  to {
    left: 0px;
  }
}

@keyframes move-left-1280 {
  from {
    left: -1080px;
  }

  to {
    left: 0px;
  }
}

@-webkit-keyframes move-left-768 {
  from {
    left: -620px;
  }

  to {
    left: 0px;
  }
}

@keyframes move-left-768 {
  from {
    left: -620px;
  }

  to {
    left: 0px;
  }
}

@-webkit-keyframes move-left-320 {
  from {
    left: -270px;
  }

  to {
    left: 0px;
  }
}

@keyframes move-left-320 {
  from {
    left: -270px;
  }

  to {
    left: 0px;
  }
}

.transition-left {
  -webkit-animation-name: move-left-1280;
  animation-name: move-left-1280;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@media (max-width: 1279px) {
  .transition-left {
    -webkit-animation-name: move-left-768;
    animation-name: move-left-768;
  }
}

@media (max-width: 767px) {
  .transition-left {
    -webkit-animation-name: move-left-320;
    animation-name: move-left-320;
  }
}

.card {
  width: 270px;
  background-color: #fafafa;
  border-radius: 9px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.card:hover {
  -webkit-box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}

.card:hover .card__words {
  background-color: #ffffff;
}

.card:hover .card__button {
  background-color: #fddcc4;
  border: 2px solid #fddcc4;
}

.card__words {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  justify-items: center;
  gap: 30px;
  background-color: #fafafa;
  border-radius: 9px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 30px 10px;
}

.card__title-name {
  font-size: 20px;
  line-height: calc(23 / 20 * 100%);
  letter-spacing: 0.06em;
  color: #545454;
}

.card__button {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .carousel__right-arrow {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.help {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .help {
    padding-top: 42px;
    padding-bottom: 40px;
  }
}

.help__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  justify-items: center;
  gap: 55px;
}

@media (max-width: 767px) {
  .help__box {
    gap: 42px;
  }
}

.help__title {
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
  text-align: center;
}

@media (max-width: 767px) {
  .help__title {
    font-size: 25px;
  }
}

.needs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 50px;
  -webkit-column-gap: 120px;
  column-gap: 120px;
}

@media (max-width: 1279px) {
  .needs__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 60px;
  }
}

@media (max-width: 767px) {
  .needs__list {
    grid-template-columns: repeat(2, auto);
    column-gap: 30px;
    row-gap: 30px;
  }
}

.needs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1279px) {
  .needs__item {
    width: 170px;
  }
}

@media (max-width: 767px) {
  .needs__item {
    width: 130px;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .needs__icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .needs__icon svg {
    width: 50px;
    height: 50px;
  }
}

.needs__naming {
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #545454;
}

@media (max-width: 767px) {
  .needs__naming {
    font-size: 15px;
  }
}

.donation {
  background-color: #f6f6f6;
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .donation {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

.donation__row {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: auto 380px;
  grid-template-columns: auto 380px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  gap: 30px;
}

@media (max-width: 1279px) {
  .donation__row {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .donation__row {
    gap: 42px;
  }
}

@media (max-width: 1279px) {
  .donation__image-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 400px) {
  .donation__image-wrapper {
    width: 260px;
  }
}

@media (max-width: 1279px) {
  .donation__note {
    max-width: 380px;
  }
}

.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .note {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.note__title {
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}

@media (max-width: 767px) {
  .note__title {
    text-align: center;
    font-size: 25px;
  }
}

.note__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #545454;
}

@media (max-width: 767px) {
  .note__subtitle {
    letter-spacing: 0;
    line-height: 160%;
  }
}

.note__credit-card {
  max-width: 351px;
  background-color: #f1cdb3;
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  height: 43px;
  padding: 5px 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.note__credit-card:hover {
  background-color: #fddcc4;
}

.note__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.note__numbers-link {
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #545454;
}

@media (max-width: 767px) {
  .note__numbers-link {
    font-size: 15px;
    line-height: 110%;
  }
}

.note__text {
  font-family: "Arial", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #b2b2b2;
}

@media (max-width: 767px) {
  .note__text {
    text-align: justify;
    padding: 0 10px;
  }
}

.footer {
  background: url(../../../assets/images/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%), -webkit-gradient(linear, left bottom, left top, from(#211f20), to(#211f20));
  background: url(../../../assets/images/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%), linear-gradient(0deg, #211f20, #211f20);
  padding-top: 40px;
}

@media (max-width: 1279px) {
  .footer {
    padding-top: 30px;
  }
}

.footer__row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 60px;
  column-gap: 60px;
  row-gap: 65px;
}

@media (max-width: 1279px) {
  .footer__row {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer__row {
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(3, auto);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    row-gap: 40px;
  }
}

.contacts_first-column {
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}

@media (max-width: 1279px) {
  .contacts_first-column {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .contacts_first-column {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.contacts_second-column {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

@media (max-width: 1279px) {
  .contacts_second-column {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .contacts_second-column {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
  }
}

.contacts__title {
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #ffffff;
}

@media (max-width: 767px) {
  .contacts__title {
    font-size: 25px;
    text-align: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media (max-width: 767px) {
  .contacts__title_second-column {
    width: 270px;
  }
}

.contacts__item {
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
}

.contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: #f1cdb3;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts__link:visited {
  color: #f1cdb3;
}

.contacts__link:hover {
  color: #f6e9e0;
}

.footer__image-wrapper {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

@media (max-width: 1279px) {
  .footer__image-wrapper {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .footer__image-wrapper {
    -ms-grid-column: 1;
    grid-column-start: 1;
  }
}

@media (max-width: 400px) {
  .footer__image-wrapper {
    width: 260px;
  }
}

.popup {
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  overflow-x: hidden;
  background: rgba(41, 41, 41, 0.6);
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.popup:hover {
  cursor: pointer;
}

.popup:hover .popup__button {
  background-color: #fddcc4;
  border: 2px solid #fddcc4;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  width: 900px;
  height: 500px;
  padding: 30px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media (max-width: 1279px) {
  .popup__body {
    width: 630px;
    height: 350px;
  }
}

@media (max-width: 767px) {
  .popup__body {
    width: 240px;
    height: 341px;
  }
}

.popup__content {
  position: relative;
  z-index: 100;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: auto 351px;
  grid-template-columns: auto 351px;
  gap: 29px;
  font-family: "Georgia", serif;
  color: #000000;
  background-color: #fafafa;
  border-radius: 9px;
  -webkit-box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}

.popup__content:hover {
  cursor: auto;
}

.popup__content:hover .popup__button {
  background-color: transparent;
  border: 2px solid #f1cdb3;
}

@media (max-width: 1279px) {
  .popup__content {
    -ms-grid-columns: auto 260px;
    grid-template-columns: auto 260px;
    gap: 11px;
  }
}

@media (max-width: 767px) {
  .popup__content {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 0;
  }
}

.popup__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 500px;
}

@media (max-width: 1279px) {
  .popup__image-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .popup__image-wrapper {
    display: none;
  }
}

.popup__image {
  border-radius: 9px 0px 0px 9px;
}

.profile {
  padding-top: 50px;
  padding-right: 20px;
}

@media (max-width: 1279px) {
  .profile {
    padding-top: 10px;
    padding-right: 9px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .profile {
    padding: 10px;
  }
}

.profile__title {
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .profile__title {
    text-align: center;
  }
}

.profile__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

@media (max-width: 1279px) {
  .profile__subtitle {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .profile__subtitle {
    text-align: center;
  }
}

.profile__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

@media (max-width: 1279px) {
  .profile__description {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .profile__description {
    text-align: justify;
    margin-bottom: 24px;
  }
}

.details>*:not(:last-child) {
  margin: 0px 0px 10px 0px;
}

@media (max-width: 1279px) {
  .details>*:not(:last-child) {
    margin: 0px 0px 5px 0px;
  }
}

.details__item {
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
}

.details__item_bold {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.details__item_bold::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #f1cdb3;
  margin-right: 10px;
}

.details__item_age,
.details__item_inoculations,
.details__item_diseases,
.details__item_parasites {
  vertical-align: bottom;
}

.popup__button {
  width: 52px;
  position: absolute;
  z-index: 200;
  top: -52px;
  right: -42px;
}

.popup__button:hover {
  background-color: #fddcc4 !important;
  border: 2px solid #fddcc4 !important;
}

@media (max-width: 767px) {
  .popup__button {
    right: -32px;
  }
}