/* DEFAULT  */

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Extrabld.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;

  font-family: "ProximaNova", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-optical-sizing: auto;
  text-wrap: balance;

  transition: 0.2s;
}

/* DEFAULT  */



/* ROOT  */

:root {
  --white: #fff;
  --dark: #17181A;

  --orange: #FF5E00;
  --orange-hover: #E25200;

  --dark-blue: #001F33;

  --light-gray: #E9E9E9;
  --dark-gray: #d3d3d3;
}

/* ROOT  */



/* ALL PAGES */

html,
body {
  position: relative;
  min-height: 100%;
  /* background: var(--dark); */
  transition: 0s;
  /* --fancybox-scrollbar-compensate: none !important; */
}

main {
  min-height: 100%;
  height: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #dedede;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spinPreloader 1s linear infinite;
}

@keyframes spinPreloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

a {
  text-decoration: none;
  color: inherit;
}

.pre-title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;

  margin-bottom: 8px;
}

.xxl {
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.xl {
  font-size: 64px;
  line-height: 64px;
  font-weight: 700;

  margin-bottom: 24px;
}

.lg {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;

  margin-bottom: 24px;
}

.md {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;

  margin-bottom: 24px;
}

.sm {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;

  margin-bottom: 24px;
}

.xs {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;

  margin-bottom: 24px;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

span {
  font: inherit;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;

  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--white);

  background: var(--orange);
  border-radius: 4px;

  cursor: pointer;
}

button:hover {
  background: var(--orange-hover);
  transform: scale(0.99);
}

section {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1240px;
  padding: 0 16px;
}

.block {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 120px 0;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__one {
  max-height: 56px;
  display: flex;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.header__buttons {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.header__button-wrapper {}

.header__button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__button:hover {
  opacity: 0.75;
}

.header__button-text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: var(--white);
}

.header__button-icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.header__button-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__two {}

.header__navigation {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__logo-wrapper {
  display: flex;
  height: 48px;
  min-height: 48px;
  flex-shrink: 0;
}

.header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__logo:hover {
  opacity: 0.75;
  transform: scale(0.99);
}

.header__nav {
  display: flex;
  height: 100%;
  align-items: center;
}

.header__list {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
}

.header__item {
  display: flex;
  height: 100%;
  align-items: center;
}

.header__item--active .header__link {
  color: var(--orange);
}


.header__link {
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--white);
  margin-bottom: 0;
}

.header__link:hover {
  opacity: 0.75;
}

.header__open,
.header__close {
  display: none;
}

.header__open-svg {}


@media (max-width: 767px) {

  .block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 64px 0;
  }

  .xxl {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .xl {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;

    margin-bottom: 24px;
  }

  .lg {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;

    margin-bottom: 24px;
  }

  .md {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;

    margin-bottom: 24px;
  }


  .header__buttons {
    padding: 8px 0;
  }

  .header__logo-wrapper {
    display: flex;
    height: 32px;
    min-height: 32px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .header__nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    background: var(--dark);
    padding: 16px;
    top: 0;
    right: 100%;
  }

  .header__nav--open {
    top: 0;
    right: 0;
  }

  .header__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 10;
  }

  .header__item {
    padding: 8px 0;
  }

  .header__open,
  .header__close {
    display: flex;
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    cursor: pointer;
  }

  .header__open-svg,
  .header__close-svg {
    width: 100%;
    height: 100%;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
  }


}














.intro {
  height: 100vh;

  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)),
    url('../img/intro__bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.intro__content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding-top: 48px;
  gap: 48px;
}

.intro__content {
  display: flex;
  flex-direction: column;
  width: calc(65% - 24px);
}

.intro__pre-title {
  color: var(--white);
  margin-bottom: 8px;
}

.intro__title {
  color: var(--white);
  margin-bottom: 24px;
}

.intro__title-span {
  color: var(--orange);
}

.intro__subtitle {
  color: var(--white);
}

.intro__form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(35% - 24px);
  flex-shrink: 0;
}

.intro__pre-form {
  display: flex;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  padding: 16px 32px;
  background: var(--white);
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid var(--light-gray);
}

.intro__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  padding: 32px;
  border-radius: 0 4px 4px 4px;
  background: var(--white);
}

.intro__label {
  display: flex;
  width: 100%;
}

.intro__label--input {}

.intro__input {
  display: flex;
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 16px;

  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.intro__select {
  display: flex;
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 16px;

  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.intro__input:hover,
.intro__select:hover {
  border: 1px solid var(--dark-gray);
}

.intro__label--type,
.intro__label--region,
.intro__label--country {
  position: relative;
}

.intro__label--type::after,
.intro__label--region::after,
.intro__label--country::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FF5D00"><path d="M480-360 280-560h400L480-360Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

@media (max-width: 767px) {

  .intro {
    height: auto;
  }

  .intro__content-wrapper {
    flex-direction: column;
    padding-top: 160px;
    padding-bottom: 64px;
  }

  .intro__content {
    width: 100%;
  }

  .intro__form-wrapper {
    width: 100%;
  }

  .intro__pre-form {
    padding: 16px 24px;
  }

  .intro__form {
    padding: 24px;
    gap: 16px;
  }
}




.categories {
  background: var(--white);
}

.categories__wrapper {
  align-items: center;
}

.categories__title {
  max-width: 50%;
  margin-bottom: 48px;
}

.categories__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.categories__item {
  display: flex;
  width: calc(100% / 4 - 18px);
  aspect-ratio: 1/1;
}

.categories__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 4px;
  overflow: hidden;

  background: var(--dark-blue);

  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.categories__name {
  display: flex;
  position: relative;
  color: var(--white);
  z-index: 3;
}

.categories__name--one {
  margin-top: auto;
  margin-bottom: 0;
}

.categories__name--two {
  margin-bottom: 16px;
}

.categories__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
}

.categories__text {
  color: var(--white);
}

.categories__button {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.categories__button-text {
  color: var(--orange);
  margin-bottom: 0;
}

.categories__icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.categories__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categories__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0.5;
}

.categories__link:hover .categories__content {
  opacity: 1;
}

.categories__link:hover .categories__name--one {
  opacity: 0;
}

.categories__link:hover .categories__img {
  opacity: 0.2;
}


@media (max-width: 767px) {

  .categories__wrapper .container:last-child {
    padding: 0;
  }

  .categories__title {
    max-width: 100%;
  }

  .categories__list {
    flex-wrap: nowrap;
    overflow: auto;
    padding: 0 16px;
    gap: 16px;
  }

  .categories__list::-webkit-scrollbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
  }

  .categories__list::-webkit-scrollbar-track {
    background: transparent;
  }

  .categories__list::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 20px;
  }

  .categories__item {
    min-width: calc(100% / 1.5);
    width: calc(100% / 1.5);
  }

  .categories__content {
    display: none;
  }

  .categories__link:hover .categories__content {
    opacity: 0;
  }

  .categories__link:hover .categories__name--one {
    opacity: 1;
  }

  .categories__link:hover .categories__img {
    opacity: 0.5;
  }

}













.donate {
  background: linear-gradient(rgba(6, 45, 48, 0.55), rgba(6, 45, 48, 0.55)),
    url('../img/donate__bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.donate__now {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;

  background-color: rgba(255, 93, 0, 0.8);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
}

.donate__now::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: white;
}

.donate__pre-title {
  color: var(--white);
}

.donate__title {
  color: var(--white);
}

.donate__text {
  color: var(--white);
  margin-bottom: 64px;
}

.donate__span {
  font-size: 64px;
  line-height: 64px;
  font-weight: 800;
}

.donate__button {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.donate__button-text {
  color: var(--white);
  margin-bottom: 0;
}


.donate__icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.donate__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.donate__button:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .donate__now {
    width: 100%;
    padding: 24px;
  }

  .donate__pre-title {
    max-width: 70%;
  }

  .donate__br {
    display: none;
  }

  .donate__span {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
  }

}



















.ngos {
  background: var(--white);
}

.ngos__wrapper {
  align-items: center;
}

.ngos__wrapper .container:first-child {
  position: relative;
}

.ngos__pre-title {
  display: flex;
}

.ngos__title {
  max-width: 50%;
  margin-bottom: 48px;
}

.ngos__button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ngos__button-text {
  color: var(--orange);
  margin-bottom: 0;
}

.ngos__icon-wrapper {
  display: flex;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  align-items: center;
  justify-content: center;
}

.ngos__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ngos__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.ngos__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 4 - 18px);
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;

  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.ngos__img-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.ngos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ngos__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
  flex-grow: 1;
}

.ngos__name {
  margin-bottom: 16px;
}

.ngos__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;

  margin-bottom: 32px;
}

.ngos__link {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.ngos__link-text {
  color: var(--orange);
  margin-bottom: 0;
}

.ngos__link-icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.ngos__link-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ngos__link:hover,
.ngos__button:hover {
  opacity: 0.75;
}

.ngos__item:hover .ngos__img {
  transform: scale(1.050);
}

.ngos__button--one {
  position: absolute;
  bottom: 48px;
  right: 0;
}

.ngos__button--two {
  display: none;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .ngos__title {
    max-width: 100%;
  }

  .ngos__button--one {
    display: none;
  }

  .ngos__wrapper .container:nth-child(2) {
    padding: 0;
  }

  .ngos__list {
    flex-wrap: nowrap;
    padding: 0 16px;
    overflow: auto;
  }

  .ngos__list::-webkit-scrollbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
  }

  .ngos__list::-webkit-scrollbar-track {
    background: transparent;
  }

  .ngos__list::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 20px;
  }


  .ngos__item {
    min-width: calc(100% / 1.25);
    width: calc(100% / 1.25);
  }

  .ngos__button--two {
    display: flex;
  }
}
















.volunteer {
  position: relative;
  background: var(--dark-blue);
}

.volunteer__list {
  display: flex;
  width: 100%;
}

.volunteer__item {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 48px;
}


.volunteer__pre-title {
  color: var(--white);
}

.volunteer__title {
  color: var(--white);
}

.volunteer__text {
  color: var(--white);
  margin-bottom: 32px;
}

.volunteer__link {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.volunteer__link-text {
  color: var(--orange);
  margin-bottom: 0;
}

.volunteer__link-icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.volunteer__link-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.volunteer__img-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  width: 50%;
  height: 100%;
}

.volunteer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer__link:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {


  .volunteer__list {
    flex-direction: column;
    gap: 32px;
  }

  .volunteer__item {
    width: 100%;
    padding-right: 0;
  }

  .volunteer__img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.5;
    top: 0;
    left: 0;
  }

}





















.resources {
  background: var(--white);
}

.resources__wrapper {
  align-items: center;
}

.resources__wrapper .container:first-child {
  position: relative;
}

.resources__pre-title {
  display: flex;
}

.resources__title {
  max-width: 50%;
  margin-bottom: 48px;
}

.resources__button {
  display: flex;
  align-items: center;
  gap: 8px;

  position: absolute;
  bottom: 48px;
  right: 0;
}

.resources__button-text {
  color: var(--orange);
  margin-bottom: 0;
}

.resources__icon-wrapper {
  display: flex;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  align-items: center;
  justify-content: center;
}

.resources__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resources__button:hover {
  overflow: 0.75;
}

.resources__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.resources__item {
  display: flex;
  width: 100%;
}

.resources__content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
}

.resources__item--one {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;

  flex-direction: column;
  justify-content: flex-end;
}

.resources__item--two {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.resources__item--three {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.resources__img-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1/0.45;
  overflow: hidden;
}

.resources__item--one .resources__img-wrapper {
  width: 100%;
  flex-grow: 1;
}

.resources__item:hover .resources__img {
  transform: scale(1.050);
}

.resources__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources__name {
  margin-bottom: 16px;
}

.resources__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.resources__item--one .resources__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.resources__item--one .resources__link {
  margin-top: 16px;
}

.resources__link {
  margin-top: auto;
  color: var(--orange);
}

.resources__link:hover {
  opacity: 0.75;
}

.resources__button--two {
  display: none;
}


@media (max-width: 767px) {

  .resources__title {
    max-width: 100%;
  }

  .resources__list {
    display: flex;
    flex-direction: column;
  }

  .resources__item {
    display: flex;
    flex-direction: column;
  }

  .resources__button--one {
    display: none;
  }

  .resources__button--two {
    position: relative;
    display: flex;
    bottom: 0;
    right: 0;
    margin-top: 32px;
  }

  .resources__text {
    display: -webkit-box !important;
    text-overflow: ellipsis !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
  }

  .resources__link {
    margin-top: 24px;
    color: var(--orange);
  }
}









.footer {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-blue);
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer__parts {
  display: flex;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__part {
  display: flex;
  flex-direction: column;
  width: calc(100% / 4 - 18px);
}

.footer__one {}

.footer__name {
  font-weight: 600;
  color: var(--white);

  margin-bottom: 48px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer__item {
  display: flex;
}

.footer__link {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding-left: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__item:last-child .footer__link {
  margin-bottom: 0;
}

.footer__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FFFFFF"><path d="M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__link:hover {
  opacity: 0.5;
}

.footer__two {}

.footer__three {}

.footer__four {}

.footer__donate {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  background-color: var(--orange);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
}

.footer__donate::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: white;
}

.footer__donate-pre-title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.footer__donate-title {
  color: var(--white);
}

.footer__donate-br {}

.footer__donate-span {}

.footer__donate-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);

  margin-bottom: 24px;
}

.footer__donate-button {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.footer__donate-button:hover {
  opacity: 0.75;
}


.footer__donate-button-text {
  color: var(--white);
  margin-bottom: 0;
}

.footer__donate-icon-wrapper {
  display: flex;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  align-items: center;
  justify-content: center;
}

.footer__donate-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__copyright {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__dev {
  font-weight: 700;
}

.footer__dev:hover {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 767px) {
  .footer__parts {
    flex-direction: column;
    gap: 32px;
  }

  .footer__part {
    width: 100%;
  }

  .footer__one,
  .footer__two {
    display: none;
  }

  .footer__name {
    margin-bottom: 24px;
  }

  .footer__copyright {
    text-align: center;
  }
}






















.top {
  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)), url(../img/intro__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top__wrapper {
  padding: 200px 0 56px 0;
}

.top__title {
  color: var(--white);
}

.top__subtitle {
  color: var(--white);
  margin-bottom: 24px;
}

.top__form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  gap: 24px;
}

.top__label,
.top__submit {
  display: flex;
  width: calc(100% / 5 - 19.2px);
}

.top__label--type,
.top__label--region,
.top__label--country {
  position: relative;
}

.top__label--type::after,
.top__label--region::after,
.top__label--country::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FF5D00"><path d="M480-360 280-560h400L480-360Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.top__select {
  display: flex;
  width: 100%;
  border: 1px solid var(--light-gray);
  background: var(--white);
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .top__wrapper {
    padding: 160px 0 64px 0;
  }

  .top__title {}

  .top__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 24px;
    border-radius: 4px;
    background: var(--white);
  }

  .top__label,
  .top__submit {
    display: flex;
    width: 100%;
  }
}














.ngos-page {
  background: var(--white);
}

.ngos-page__content {
  align-items: center;
}

.ngos-page__up {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ngos-page__counter {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
}

.ngos-page__label {
  position: relative;
}

.ngos-page__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FF5D00"><path d="M480-360 280-560h400L480-360Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.ngos-page__sort {
  display: flex;
  border-radius: 4px;
  padding: 16px 48px 16px 24px;
  background: #F8F9FA;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.ngos-page__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 120px;
}

.ngos-page__item {
  display: flex;
  width: calc(100% / 4 - 18px);
  min-height: 100%;

}

.ngos-page__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.ngos-page__img-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ngos-page__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ngos-page__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
  flex-grow: 1;
}

.ngos-page__name {
  color: var(--orange);
  margin-bottom: 16px;
}

.ngos-page__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.ngos-page__link:hover .ngos-page__img {
  transform: scale(1.050);
}

.ngos-page__link:hover .ngos-page__name {
  opacity: 0.75;
}

.ngos-page__button {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .ngos-page__up {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ngos-page__list {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .ngos-page__item {
    width: 100%;
  }

  .ngos-page__img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.75;
  }

  .ngos-page__list {
    margin-bottom: 64px;
  }

  .ngos-page__button {
    width: 100%;
  }
}











.top--faq {
  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)),
    url(../img/faq__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top__breadcrumbs {
  display: flex;
  gap: 8px;
}

.top__breadcrumbs-link,
.top__breadcrumbs-divider {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  color: var(--white);
}

.top__breadcrumbs-link:hover {
  opacity: 0.75;
}

.questions {
  background: var(--white);
}

.questions__wrapper {}

.ac {
  margin-top: 0;
  border: none;
  background-color: #F8F9FA;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.ac-trigger:hover {
  transform: scale(1);
}

.ac .ac-trigger {
  font: inherit;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: var(--orange);
  padding: 32px;
}

.ac .ac-trigger:focus {
  color: var(--orange-hover);
}

.ac .ac-panel .ac-text {
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--dark);
  padding: 0 32px 32px 32px;
  margin: 0;
}

.ac .ac-trigger::after {
  content: '';
  text-align: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--orange);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FFFFFF"><path d="M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z"/></svg>');
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 32px;
  top: 50%;
  transition: 0.2s;
}

.ac:hover .ac-trigger::after {
  background-color: var(--orange-hover);
}

.ac.is-active>.ac-header .ac-trigger::after {
  content: '';
  text-align: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--dark);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23FFFFFF"><path d="M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z"/></svg>');
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  -webkit-transform: translate(0, -50%) rotate(-45deg) !important;
  transform: translate(0, -50%);
  position: absolute;
  right: 32px;
  top: 50%;

  transition: 0.2s;
}

@media (max-width: 767px) {

  .top__breadcrumbs-link,
  .top__breadcrumbs-divider {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
    color: var(--white);
  }

  .ac .ac-trigger {
    font: inherit;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    padding: 24px 88px 24px 24px;
  }

  .ac .ac-trigger::after,
  .ac.is-active>.ac-header .ac-trigger::after {
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
    right: 24px;
  }

  .ac .ac-panel .ac-text {
    padding: 0 24px 24px 24px;
  }


}















.top--regions {
  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)),
    url(../img/regions__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.regions {
  background: var(--white);
}

.regions__list {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.regions__item {
  display: flex;
  width: calc(100% / 4 - 18px);
  min-height: 100%;
}

.regions__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.regions__img-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.regions__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.regions__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
  flex-grow: 1;
}

.regions__name {
  color: var(--orange);
  margin-bottom: 16px;
}

.regions__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.regions__link:hover .regions__img {
  transform: scale(1.050);
}

.regions__link:hover .regions__name {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .regions__list {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .regions__item {
    width: 100%;
  }

  .regions__img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.75;
  }
}















.top--blog {
  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)),
    url(../img/blog__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog {
  background: var(--white);
}

.blog__list {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.blog__item {
  display: flex;
  width: calc(100% / 4 - 18px);
  min-height: 100%;
}

.blog__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.blog__img-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
  flex-grow: 1;
}

.blog__name {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--orange);
  margin-bottom: 16px;
}

.blog__text {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.blog__link:hover .blog__img {
  transform: scale(1.050);
}

.blog__link:hover .blog__name {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .blog__list {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .blog__item {
    width: 100%;
  }

  .blog__img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.75;
  }
}



















.top--ngos-inner {
  background: linear-gradient(rgba(52, 52, 52, 0.55), rgba(52, 52, 52, 0.55)), url(../img/MercyCorps__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top__img-wrapper {
  display: flex;
  width: 144px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 8px;

  margin-bottom: 32px;
}

.top__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ngos-inner .header__one {
  background: var(--orange);
}

.ngos-inner .header__two {
  background: var(--white) !important;
}

.ngos-inner .header__link {
  color: var(--dark);
}

.ngos-inner .header__item--active .header__link {
  color: var(--orange);
}

.ngos-inner .header__nav--open .header__link {
  color: var(--white) !important;
}

.ngos-inner .header__nav--open .header__item--active .header__link {
  color: var(--orange) !important;
}

.top__list {
  display: flex;
  width: 100%;
  gap: 8px;
}

.top__item {}

.top__item-link {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 4px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 4px;
}

.top__link-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top__item-link:hover {
  transform: scale(0.95);
  opacity: 0.75;
}

.ngos-inner {
  background: var(--white);
}

.ngos-inner__wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 24px;
}

.ngos-inner__content {
  display: flex;
  flex-direction: column;
  width: calc(70% - 12px);
}

.ngos-inner__name {}

.ngos-inner__text {
  margin-bottom: 48px;
}

.ngos-inner__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;

  margin-bottom: 48px;
}

.ngos-inner__item {
  display: flex;
  width: calc(100% / 3 - 16px);
  min-height: 100%;
}

.ngos-inner__item-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.ngos-inner__img-wrapper {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ngos-inner__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 30%;
  height: 30%;
  object-fit: contain;
  z-index: 10;
}

.ngos-inner__item-link:hover .ngos-inner__play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
}

.ngos-inner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ngos-inner__item-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
  flex-grow: 1;
}

.ngos-inner__title {
  display: -webkit-box !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;


  color: var(--dark);
  margin-bottom: 0;
}

.ngos-inner__aside {
  display: flex;
  flex-direction: column;
  width: calc(30% - 12px);
  min-height: 100%;
  align-items: flex-start;
}

.ngos-inner__item-link:hover .ngos-inner__img {
  transform: scale(1.050);
}

.ngos-inner__item-link:hover .ngos-inner__title {
  opacity: 0.75;
}

.fancybox__nav {
  display: none !important;
}

.ngos-inner__map {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/0.5;
}

.ngos-inner__map iframe {
  width: 100% !important;
  height: 100% !important;
}



.ngos-inner__contacts {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  background: var(--dark-blue);
  border-radius: 4px;

  margin-bottom: 24px;
}

.ngos-inner__name--white {
  color: var(--white);
}

.ngos-inner__contacts-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ngos-inner__contacts-item {
  display: flex;
  width: 100%;
}

.ngos-inner__contacts-link {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
}

.ngos-inner__contacts-icon-wrapper {
  display: flex;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.ngos-inner__contacts-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ngos-inner__contacts-text {
  color: var(--orange);
}

.ngos-inner__contacts-text--white {
  color: var(--white);
}

.ngos-inner__buttons-wrapper {
  display: flex;
  width: 100%;
  gap: 16px;
}

.ngos-inner__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 4px;
  cursor: pointer;
}

.ngos-inner__button--outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.ngos-inner__button:hover {
  transform: scale(0.98);
}

.ngos-inner__locations {
  display: flex;
  width: 100%;
  border-radius: 4px;
  flex-direction: column;
  padding: 24px;
  background: #F8F9FA;
}

.ngos-inner__contacts-link:hover {
  opacity: 0.75;
}

.ngos-inner__locations-list {
  display: block !important;
  list-style-type: disc !important;
  padding-left: 20px;
}

.ngos-inner__locations-item {
  display: list-item;
  list-style-type: disc !important;
}

.ngos-inner__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 48px;
  background: var(--dark-blue);
  border-radius: 4px;

  margin-bottom: 120px;
}

.ngos-inner__banner-pre-title {
  color: var(--white);
}

.ngos-inner__banner-title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  color: var(--white);
}

.ngos-inner__button--banner {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: auto;
}

.ngos-inner__button--banner:hover {
  top: 50%;
  right: 48px;
  transform: translateY(-50%) scale(0.98);
  border: 2px solid var(--orange-hover);
  width: auto;
}


@media (max-width: 767px) {

  .ngos-inner__wrapper {
    flex-direction: column;
  }

  .ngos-inner__content {
    width: 100%;
    order: 2;
  }

  .ngos-inner__aside {
    width: 100%;
    order: 1;
  }

  .ngos-inner__locations {
    display: none;
  }

  .ngos-inner__buttons-wrapper {
    flex-direction: column;
  }

  .ngos-inner__list {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .ngos-inner__item {
    width: 100%;
  }

  .ngos-inner__img-wrapper {
    aspect-ratio: 1/0.75;
  }

  .ngos-inner__banner {
    flex-direction: column;
    padding: 24px;
    margin-bottom: 64px;
  }

  .ngos-inner__banner-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .ngos-inner__button--banner {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    transform: none;
  }
}














.top--contacts {
  background: linear-gradient(rgba(0, 31, 51, 0.55), rgba(0, 31, 51, 0.55)),
    url(../img/contacts__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contacts {}

.contacts__wrapper {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
}

.contacts__title {
  width: 60%;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 24px;
  margin-bottom: 64px;
}

.contacts-form__input {
  display: flex;
  align-items: center;
  width: 100%;
  background: #F8F9FA;
  border-radius: 4px;
  padding: 24px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  transition: outline 0s;
}

.contacts-form__input:hover {
  background: #ebebeb;
}

.contacts-form__input--textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 200px;
  transition: 0s;
  transition: background-color 0.2s;
}

/* По умолчанию убираем обводку */
.contacts-form__input {
  outline: 2px solid transparent;
}

/* Обводка для невалидных полей после попытки отправки формы */
.error {
  outline: 2px solid var(--orange) !important;
}


.contacts__list {
  display: flex;
  width: 100%;
  gap: 24px;
  margin-bottom: 64px;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 3 - 16px);
  background: #F8F9FA;
  border-radius: 4px;
  padding: 48px;
}

.contacts__item:hover {
  background: #ebebeb;
}

.contacts__icon-wrapper {
  display: flex;
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contacts__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts__text {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.contacts__text:hover {
  color: var(--orange);
}

.contacts__map {
  display: flex;
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
}

.contacts__map iframe {
  width: 100% !important;
  height: 100% !important;
}


@media (max-width: 767px) {

  .contacts__title {
    width: 100%;
  }

  .contacts-form {
    width: 100%;
    gap: 16px;
  }

  .contacts__list {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .contacts__item {
    width: 100%;
  }

  .contacts__map {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.5;
  }

}


.ngos__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}


