/* ======================= MAIN STYLES ======================= */
*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 20px;
  color: var(--color-black);
  background: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
p {
  color: inherit;
  font-family: "Gotham", sans-serif;
  line-height: 160%;
}

button {
  font-size: 18px;
  font-family: "Gotham", sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 10px;
}

/* PAGE TOP */
.page-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-top > p:last-child {
  opacity: 0.3;
}

.page-top > span {
  color: #009736;
}

.donors {
  width: 100vw;
  padding: 60px 20px;
  background: rgba(0, 151, 54, 0.10);
  margin-top: 100px;
}

.donors > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 1200px) {
    flex-direction: column;
  }
}

.donors__text > p {
  font-size: 18px;
  width: 600px;
  margin-top: 20px;
  /* font-family: "Gotham", sans-serif; */

  @media (max-width: 1440px) {
    width: 400px;
  }

  @media (max-width: 1200px) {
    width: 100%;
  }
}

.donors__text h1 {
  font-size: 38px;
}

.donors__text h1 > span {
  color: #009736;
}

p {
  font-family: "Gotham", sans-serif;
}

.donors__list {
  display: flex;
  gap: 20px;

  @media (max-width: 1200px) {
    margin-top: 20px;
    flex-direction: column;
  }
}

.donors__list > li {
  background: #fff; 
  padding: 30px 20px;
  border-radius: 10px;

  @media (max-width: 425px) {
    padding: 20px 10px;
  }
}

.donors__list > li > img {
  width: 300px;
  height: 90px;
  object-fit: cover;

  @media (max-width: 425px) {
    width: 250px;
    height: 75px;
  }
}

.about-us__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us__wrapper p {
  font-size: 20px;
}

.about-us__wrapper ul > li {
  list-style-type: disc;
  margin-left: 20px;
}

.projects__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects__wrapper p {
  font-size: 20px;
}

.projects__wrapper > img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.picture-video__wrapper {
  display: flex;
  flex-direction: column;
	justyfy-content: center;
	align-items: center;
  gap: 20px;
}

.picture-video__wrapper p {
  font-size: 20px;
}

.picture-video__wrapper iframe {
	text-align: center;
  width: 70%;
  height: 400px;
}

.picture-video__wrapper a {
  text-decoration: underline;
}

.picture-video__wrapper h4 {
  font-size: 32px
	margin-top: 40px;
}

.picture-video__pictures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.picture-video__pictures > img {
  width: 40%;
  height: auto;
  object-fit: contain;
}