@import 'normalize.css';
html {
  font-size: 10px;
}

.button-primary {
  color: #292929;
  font-family: Georgia;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 1.02px;
}

.donation_card-text {
  color: #B2B2B2;
  font-family: Arial;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8rem;
  letter-spacing: normal;
}

.paragraph-l {
  color: #FAFAFA;
  font-family: Arial;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: normal;
}

h2 {
  color: #FFFFFF;
  font-family: Georgia;
  font-size: 4.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: normal;
}

h3 {
  color: #545454;
  font-family: Georgia;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 2.1px;
}

h4 {
  text-align: center;
  color: #545454;
  font-family: Georgia;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: 1.2px;
}

h5 {
  color: #545454;
  font-family: Georgia;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.9px;
}

@media (320px <= width < 760px) {
  h2 {
    color: #FFFFFF;
    font-family: Georgia;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 1.5px;
  }
  h3 {
    color: #545454;
    font-family: Georgia;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 1.5px;
  }
  h4 {
    text-align: center;
    color: #545454;
    font-family: Georgia;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
  }
  h5 {
    color: #545454;
    font-family: Georgia;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: normal;
  }
}
.logo__subtitle {
  color: #FFFFFF;
  font-family: Arial;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.3px;
}

.logo__title {
  color: #F1CDB3;
  font-family: Georgia;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.92px;
}

.button-primary {
  display: block;
  width: fit-content;
  border-radius: 100px;
  padding: 12px 42px;
  border: 2px solid #F1CDB3;
  cursor: pointer;
  background-color: transparent;
}
.button-primary_activated {
  background-color: #F1CDB3;
}
.button-primary:hover {
  border: 2px solid #FDDCC4;
  background-color: #FDDCC4;
}

.arrow-button {
  width: 52px;
  height: 52px;
  cursor: pointer;
  border: 2px solid #F1CDB3;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.arrow-button_mirror {
  transform: rotate(180deg);
}
.arrow-button:hover {
  border: 2px solid #FDDCC4;
  background-color: #FDDCC4;
}

.footer {
  background-image: url("/shelter-dom/images/noise_transparent@2x.svg"), radial-gradient(237.5% 111.8% at 0% 0%, #5B483A 0%, #262425 100%, #211F20);
  display: flex;
  align-items: flex-start;
  padding: 40px 40px 0px 40px;
}
.footer h3 {
  color: #FFFFFF;
}
.footer h4 {
  color: #F1CDB3;
}
@media (760px <= width <= 1280px) {
  .footer {
    padding: 15px 64px 0px 64px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
@media (320px <= width < 760px) {
  .footer {
    padding: 10px 20px 0px 20px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.footer__grid {
  display: flex;
  gap: 50px;
}
@media (320px <= width < 760px) {
  .footer__grid {
    flex-direction: column;
  }
}

.footer__contacts {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-top: 16px;
}
.footer__contacts svg {
  vertical-align: middle;
}
@media (320px <= width < 760px) {
  .footer__contacts {
    width: 100%;
  }
}

.footer__address {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-top: 16px;
}
.footer__address svg {
  vertical-align: middle;
}
.footer__address a {
  display: flex;
  gap: 20px;
}
@media (320px <= width < 760px) {
  .footer__address {
    width: 100%;
  }
}

/* Styles for modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal__content {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  margin: 10% auto;
  padding: 20px;
  border-radius: 9px;
  width: 900px;
  height: 500px;
}
@media (760px <= width <= 1280px) {
  .modal__content {
    width: 630px;
    height: 500px;
  }
  .modal__content .modal__image {
    width: 350px;
    height: 350px;
  }
}
@media (320px <= width < 760px) {
  .modal__content {
    margin: 20% auto;
    padding: 0px;
    width: 240px;
    height: auto;
  }
  .modal__content .modal__image {
    display: none;
  }
}

.modal__close {
  color: #292929;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: -55px;
  right: -30px;
}
.modal__close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal__description {
  padding: 50px 20px 0 29px;
}
.modal__description h4 {
  text-align: left;
  margin: 20px auto;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.header_bgcolor {
  max-width: 1280px;
  margin: 0 auto;
  background: url("/shelter-dom/images/noise_transparent@2x.svg"), radial-gradient(237.5% 111.8% at 0% 0%, #5B483A 0%, #262425 100%, #211F20);
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px 0px 40px;
}
@media (760px <= width <= 1280px) {
  .navigation {
    padding: 30px 30px 0px 30px;
  }
}
@media (320px <= width < 760px) {
  .navigation {
    padding: 30px 10px 0px 10px;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#navigation__toggle:checked ~ .navigation__links {
  visibility: visible;
}

#navigation__toggle:checked ~ .navigation__btn > span {
  transform: rotate(90deg);
  transition: 300ms;
}

.navigation__links > li:first-child {
  display: none;
}

.navigation__links {
  display: flex;
  visibility: visible;
  gap: 35px;
}
.navigation__links a {
  color: #CDCDCD;
}
.navigation__links a:hover {
  transition: 100ms;
  padding-bottom: 5px;
  border-bottom: 3px solid #F1CDB3;
}
@media (320px <= width < 760px) {
  .navigation__links {
    visibility: hidden;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0;
    width: 320px;
    height: 100%;
    margin: 0;
    padding: 30px 0px 80px 10px;
    background-color: #292929;
    color: #FAFAFA;
    font-family: Georgia;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: normal;
  }
  .navigation__links > li:first-child {
    display: block;
    text-align: left;
    padding-left: 20px;
  }
}

#navigation__toggle {
  opacity: 0;
}

.navigation__btn {
  visibility: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  top: 45px;
  right: 53px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
}
@media (320px <= width < 760px) {
  .navigation__btn {
    visibility: visible;
  }
}

.navigation__btn > span,
.navigation__btn > span::before,
.navigation__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #F1CDB3;
  transition: 300ms;
}

.navigation__btn > span::before {
  content: "";
  top: -10px;
}

.navigation__btn > span::after {
  content: "";
  top: 10px;
}

.menu {
  display: flex;
  padding: 60px 40px 0px 40px;
}
@media (760px <= width <= 1280px) {
  .menu {
    flex-direction: column;
    padding: 30px 30px 0px 30px;
  }
}
@media (320px <= width < 760px) {
  .menu {
    flex-direction: column;
    padding: 10px 10px 0px 10px;
  }
}

.menu__text {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 163px 42px 0px 0px;
  margin: 0px;
}
@media (760px <= width <= 1280px) {
  .menu__text {
    padding: 30px 125px 0px 124px;
    text-align: left;
  }
  .menu__text span {
    margin: 0 auto;
  }
}
@media (320px <= width < 760px) {
  .menu__text {
    padding: 50px 0px 0px 0px;
    text-align: center;
  }
  .menu__text span {
    margin: 0 auto;
  }
}

@media (760px <= width <= 1280px) {
  .menu img {
    padding: 100px 0px 0px 140px;
  }
}
@media (320px <= width < 760px) {
  .menu img {
    padding: 106px 0px 0px 40px;
  }
}
.about {
  display: flex;
  gap: 120px;
  padding-bottom: 95px;
}
.about p {
  color: #4C4C4C;
}
@media (760px <= width <= 1280px) {
  .about {
    flex-direction: column-reverse;
    gap: 80px;
  }
}
@media (320px <= width < 760px) {
  .about {
    flex-direction: column-reverse;
    gap: 42px;
    padding-bottom: 35px;
  }
}

.about__image {
  padding: 80px 0px 0px 215px;
  transition: 500ms;
}
.about__image:hover {
  transition: 500ms;
  scale: 1.05;
}
@media (760px <= width <= 1280px) {
  .about__image {
    padding: 0px 0px 0px 225px;
  }
}
@media (320px <= width < 760px) {
  .about__image {
    padding: 0px 30px 0px 30px;
  }
  .about__image:hover {
    scale: unset;
  }
  .about__image img {
    width: 260px;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 94px 215px 0px 0px;
}
@media (760px <= width <= 1280px) {
  .about__content {
    padding: 83px 170px 0px 168px;
  }
}
@media (320px <= width < 760px) {
  .about__content {
    padding: 43px 25px 0px 25px;
    text-align: justify;
  }
}

.main {
  background-color: #F6F6F6;
  padding: 80px 40px 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
@media (320px <= width < 760px) {
  .main {
    padding: 40px 10px 100px 10px;
    text-align: center;
  }
}
@media (320px <= width < 760px) {
  .main {
    padding: 40px 10px 40px 10px;
    gap: 42px;
  }
}

.main__carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (760px <= width <= 1280px) {
  .main__carousel .animal-item:last-of-type {
    display: none;
  }
}
@media (320px <= width < 760px) {
  .main__carousel {
    flex-wrap: wrap;
    flex-direction: row;
    width: 270px;
  }
  .main__carousel .animal-item:not(:first-of-type) {
    display: none;
  }
  .main__carousel .arrow-button:first-of-type {
    order: 1;
    margin-top: 25px;
    margin-left: 20%;
  }
  .main__carousel .arrow-button:last-of-type {
    order: 1;
    margin-top: 25px;
    margin-right: 20%;
  }
}

.animal-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  background-color: #FAFAFA;
}

.animal-item__slider {
  display: flex;
  flex-direction: row;
  gap: 60px;
  overflow: hidden;
  width: 930px;
}
@media (760px <= width <= 1280px) {
  .animal-item__slider {
    width: 600px;
  }
}
@media (320px <= width < 760px) {
  .animal-item__slider {
    width: 100%;
    justify-content: center;
  }
}

.help {
  padding: 0px 60px 50px 60px;
  text-align: center;
}
.help h3 {
  padding-top: 80px;
}
@media (320px <= width < 760px) {
  .help {
    padding: 0px 10px 20px 10px;
  }
  .help h3 {
    padding-top: 45px;
  }
}

.help__grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-auto-rows: 165px;
  padding-top: 60px;
}
@media (760px <= width <= 1280px) {
  .help__grid {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (320px <= width < 760px) {
  .help__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 40px;
    grid-auto-rows: 115px;
  }
}

.help-item:nth-child(9n+1), .help-item:nth-child(9n+2), .help-item:nth-child(9n+3), .help-item:nth-child(9n+4), .help-item:nth-child(9n+5) {
  grid-column: auto/span 4;
}
@media (760px <= width <= 1280px) {
  .help-item:nth-child(9n+1), .help-item:nth-child(9n+2), .help-item:nth-child(9n+3), .help-item:nth-child(9n+4), .help-item:nth-child(9n+5) {
    grid-column: auto/span 3;
  }
}
@media (320px <= width < 760px) {
  .help-item:nth-child(9n+1), .help-item:nth-child(9n+2), .help-item:nth-child(9n+3), .help-item:nth-child(9n+4), .help-item:nth-child(9n+5) {
    grid-column: auto/span 1;
  }
}

.help-item:nth-child(9n+6), .help-item:nth-child(9n+7), .help-item:nth-child(9n+8), .help-item:nth-child(9n+9) {
  grid-column: auto/span 5;
}
@media (760px <= width <= 1280px) {
  .help-item:nth-child(9n+6), .help-item:nth-child(9n+7), .help-item:nth-child(9n+8), .help-item:nth-child(9n+9) {
    grid-column: auto/span 3;
  }
}
@media (320px <= width < 760px) {
  .help-item:nth-child(9n+6), .help-item:nth-child(9n+7), .help-item:nth-child(9n+8), .help-item:nth-child(9n+9) {
    grid-column: auto/span 1;
  }
}

.help-item h4 {
  padding-top: 25px;
}
@media (320px <= width < 760px) {
  .help-item h4 {
    padding-top: 10px;
    font-size: 1.5rem;
  }
}

.donation {
  background-color: #F6F6F6;
  display: flex;
  gap: 30px;
  padding: 80px 182px 100px 183px;
}
@media (760px <= width <= 1280px) {
  .donation {
    flex-direction: column-reverse;
    padding: 80px 132px 100px 25%;
    gap: 0px;
  }
}
@media (320px <= width < 760px) {
  .donation {
    flex-direction: column-reverse;
    padding: 45px 10px 45px 10px;
    gap: 0px;
  }
  .donation .donation__credit-card {
    font-size: 1.5rem;
  }
}

.donation_image {
  width: 100%;
  padding-top: 10px;
}
@media (760px <= width <= 1280px) {
  .donation_image {
    padding-top: 60px;
  }
}
@media (320px <= width < 760px) {
  .donation_image {
    padding-top: 20px;
  }
}

.donation__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (320px <= width < 760px) {
  .donation__content {
    align-items: center;
    text-align: center;
  }
}

.donation__credit-card {
  background: #F1CDB3;
  border-radius: 9px;
  padding: 10px 15px;
}
.donation__credit-card svg {
  vertical-align: bottom;
}
.donation__credit-card:hover {
  color: #F1CDB3;
  background: url("/shelter-dom/images/noise_transparent@2x.svg"), radial-gradient(237.5% 111.8% at 0% 0%, #5B483A 0%, #262425 100%, #211F20);
  cursor: pointer;
}
.donation__credit-card:hover path {
  fill: #F1CDB3;
}

.warning {
  display: none;
}

@media (width < 320px) {
  .wrapper {
    display: none;
  }
  .warning {
    display: inline;
  }
}

/*# sourceMappingURL=index.css.map */
