@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.organization {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0 60px 0;
}
.organization-hero {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}
.organization-hero__tabs {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #ffffff;
  border-radius: 6px;
}
.organization-hero__link {
  padding: 12px 36px;
  color: #000000;
  font-family: "Poppins-Medium";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22.4px;
  --line-height-rem: 1.4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  transition: 0.4s background-color;
}
.organization-hero__link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.organization-hero__link.-active {
  background-color: #ffffff;
}
.organization-hero__select {
  display: flex;
  max-width: 400px;
  height: 70px;
  background: url("/assets/svg/arrow-down.svg");
  background-position: right 24px top 50%;
  background-size: 1.2em auto, 100%;
  background-repeat: no-repeat;
  background-color: #ebebeb;
  border: 0;
  color: #062f6e;
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 25.6px;
  --line-height-rem: 1.6rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.organization-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.organization-content__people {
  position: sticky;
  top: 110px;
  z-index: 3;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #ebebeb;
}
.organization-content__person {
  margin: 0 33px 0 0;
  padding: 20px 0;
  border-bottom: 2px solid transparent;
  color: #000000;
  --font-size: 13px;
  --font-size-rem: 0.8125rem;
  --line-height: 20.8px;
  --line-height-rem: 1.3rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  text-align: center;
  cursor: pointer;
}
.organization-content__person:hover {
  color: #062f6e;
}
.organization-content__person:last-child {
  margin: 0;
}
.organization-content__person.-active {
  color: #062f6e;
  border-bottom: 2px solid #062f6e;
}
.organization-content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  width: 100%;
  text-align: center;
}
.organization-content__item img {
  width: 100%;
  max-width: 400px;
  margin: 0 0 20px 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.organization-content__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 530px;
}
.organization-content__name {
  margin: 0;
  color: #002F6C;
  font-family: "Poppins-SemiBold";
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.organization-content__title {
  margin: 16px 0 24px 0;
  color: #062f6e;
  font-family: "Poppins-Medium";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22.4px;
  --line-height-rem: 1.4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.organization-content__description {
  max-height: 164px;
  overflow: hidden;
  transition: max-height 0.4s;
}
.organization-content__description.-active {
  max-height: 1200px;
}
.organization-content__readmore {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
  color: #062f6e;
  font-family: "Poppins-Medium";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22.4px;
  --line-height-rem: 1.4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  cursor: pointer;
  transition: opacity 0.4s;
}
.organization-content__readmore.-off {
  display: none;
}
.organization-content__readmore::after {
  content: "";
  margin: 0 0 0 15px;
  width: 10px;
  height: 10px;
  background-image: url("/assets/svg/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .organization-content__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    padding: 50px 0;
  }
  .organization-content__item img {
    max-width: 375px;
    margin: 0 50px 0 0;
  }
  .organization-content__info {
    margin: 20px 0 0 0;
  }
  .organization-content__readmore {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .organization {
    padding: 20px 0 100px 0;
  }
  .organization-hero {
    width: auto;
    background-color: #ebebeb;
  }
  .organization-hero__tabs {
    display: flex;
  }
  .organization-hero__select {
    display: none;
  }
  .organization-content__people {
    display: flex;
  }
  .organization-content__info {
    margin: 50px 0 0 0;
  }
  .organization-content__name {
    --font-size: 22px;
    --font-size-rem: 1.375rem;
    --line-height: 35.2px;
    --line-height-rem: 2.2rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .organization-content__title {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 25.6px;
    --line-height-rem: 1.6rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .organization-content__readmore {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 25.6px;
    --line-height-rem: 1.6rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (min-width: 1200px) {
  .organization-content__people {
    top: 141px;
  }
}