* {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  margin: 0;
  padding: 90px 0 0;
}

.container {
  width: 100%;
  padding: 0 20px;
  max-width: 1300px;
  margin: auto;
}

.row {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 993px) {
  .row {
    flex-direction: column;
  }
}
.row img {
  display: block;
  width: 30%;
  height: auto;
  align-self: flex-start;
}
@media screen and (max-width: 993px) {
  .row img {
    width: 100%;
  }
}

.main-text-block h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 56px;
}
@media screen and (max-width: 993px) {
  .main-text-block h1 {
    font-size: 28px;
  }
}
.main-text-block p {
  line-height: 1.35em;
  font-size: 17px;
}
@media screen and (max-width: 993px) {
  .main-text-block p {
    font-size: 15px;
  }
}
.main-text-block > div {
  background: url("../images/Star_of_David-bg.webp") no-repeat center/contain;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: #005398;
  z-index: 999;
}
header a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}
header a span {
  text-transform: uppercase;
  font-weight: 300;
  white-space: nowrap;
  font-size: 13px;
}
header a img {
  width: 30px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --btn-h: 30px;
}
.header-wrapper button {
  display: block;
  width: var(--btn-h);
  height: var(--btn-h);
  background: transparent;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
}
.header-wrapper button svg {
  width: var(--btn-h);
  height: var(--btn-h);
}
.header-wrapper button svg path {
  fill: white;
}

.section-activities {
  margin-top: 30px;
  background: rgba(0, 83, 152, 0.1);
  padding: 50px 0;
}
.section-activities h2 {
  font-size: 30px;
  margin: 0;
}
.section-activities p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 0;
  max-width: 45%;
}
@media screen and (max-width: 993px) {
  .section-activities p {
    max-width: 100%;
  }
}
.section-activities a {
  color: #005398;
  outline: none;
  text-decoration: none;
}

.section-activities-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 993px) {
  .section-activities-wrapper {
    flex-direction: column;
  }
}
.section-activities-wrapper p:nth-child(2) span {
  display: block;
  font-weight: bold;
  font-size: 20px;
}
.section-activities-wrapper p:nth-child(2) a.mail-text {
  display: block;
  font-size: 24px;
  margin-top: 10px;
}
@media screen and (max-width: 993px) {
  .section-activities-wrapper p:nth-child(2) a.mail-text {
    margin-top: 0;
    font-size: 16px;
  }
}

.section-files-download h4 {
  text-align: center;
  font-size: 30px;
}
.section-files-download-wrapper {
  margin-bottom: 120px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.section-files-download-wrapper a {
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  outline: none;
  text-align: center;
}
.section-files-download-wrapper a div {
  color: black;
  font-size: 13px;
  margin-bottom: 10px;
  min-height: 50px;
}
.section-files-download-wrapper a span {
  background: #005398;
  margin-top: 10px;
  color: white;
  width: 80px;
  height: 30px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  text-decoration: none;
}
.section-files-download-wrapper a span:hover {
  background: #187dd0;
}
.section-files-download-wrapper img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 993px) {
  .section-files-download-wrapper img {
    height: 427px;
    width: 300px;
  }
}
@media screen and (min-width: 993px) {
  .section-files-download-wrapper {
    flex-direction: row;
  }
}

.header-link {
  transition: 0.2s;
  font-weight: 300;
  font-size: 18px;
}
.header-link:hover {
  opacity: 0.5;
}
.header-link.active {
  cursor: default;
  color: #bddfff;
  font-weight: 400;
}

.header-menu {
  display: flex;
  gap: 20px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 993px) {
  .team-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.team-member {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f6f6f6;
  padding: 20px;
  border-radius: 10px;
}
.team-member .img {
  display: flex;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background: url("../images/Star_of_David-blue.webp") no-repeat center/contain;
}
.team-member .img img {
  width: 100%;
  height: auto;
}
.team-member h4 {
  margin: 0;
}
.team-member p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5em;
}

.who-we-are h1, .who-we-are h2, .who-we-are h3 {
  text-align: center;
  margin: 0;
}
.who-we-are h3 {
  font-weight: 400;
  color: #3a3a3a;
  margin-top: 10px;
}
.who-we-are h2 {
  margin: 40px 0 20px;
}

.member-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 14px;
}
.member-location svg {
  width: 15px;
  height: 15px;
}

#geo-alt-fill path {
  fill: #005398;
}

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