.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #2f363a;
  background-color: #ededed;
  line-height: 1.3;
  overflow-x: hidden;
}
@media (min-width: 64em) {
  body {
    font-size: 1.25rem;
  }
}
body.noscroll {
  overflow: hidden;
}

h1,
h2 {
  font-weight: 600;  
  line-height: 1.8;
  color: #222536;
  margin-top: 0px;
}

h3 {
  font-weight: 550;  
  line-height: 1.8;
  color: #222536;
  margin-top: 0px;
  font-size: -webkit-xxx-large; 
}

@media (max-width: 70em) {
  h3 {
    font-weight: 550;  
    line-height: 4.0rem;
    color: #222536;
    margin-top: 0px;
    font-size: 2.5rem; 
  }
}

@media (max-width: 45em) {
  h3 {
    font-weight: 550;  
    line-height: 1.8rem;
    color: #222536;
    margin-top: 0px;
    font-size: 0.92125rem; 
  }
}


h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  font-size: -webkit-xx-large;
  margin-bottom: 1.5625rem;
}
@media (max-width: 45em) {
  h2 {
    font-size: 0.9rem;
    margin-bottom: 0.81rem;
    line-height: 1.1;

  }
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  background-image: linear-gradient(to right, #31d35c, #2bb7da);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}
button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
button:hover::before,
.button:hover::before {
  opacity: 1;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  background-color: #ededed;
  color: white;
  position: relative;
  z-index: 1;
}
.header.open .header__toggle > span:first-child {
  opacity: 0;
}
.header.open .header__toggle > span:nth-child(2) {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(3) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(#0f1120);
}
.header nav {
  position: relative;
  background-color: #fafafa;
  padding-top: 1.0625rem;
  padding-bottom: 0.8625rem;
}
.header__logo img {
  width: 9.6935rem;
  height: 1.5125rem;
}
.header__toggle > span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #2d314d;
  transition: all 200ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background:rgba(255, 255, 255, 0.99);
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 5px;
  z-index: 2000;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: #2d314d;
  text-align: center;
  font-weight: 500;

}
.header__links a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #45464b;
  transition: color 300ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: linear-gradient(to right, #31d35c, #2bb7da);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.header__links a:hover {
  color: #202235;
}
.header__links a:hover::before {
  opacity: 1;
}



.hero {
  background-color: #fafafa;
}
@media (min-width: 64em) {
  .hero .container {
    display: flex;
    align-items: center;
  }
}
.hero__image {
  position: relative;
  background-image: url("./images/bg-intro-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
  filter: opacity(0.75);
}
@media (min-width: 40em) {
  .hero__image {
    min-height: 25rem;
    background-position: center 70%;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    height: 41rem;
    background-image: none;
  }
}
@media (min-width: 64em) {
  .hero__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("./images/bg-intro-desktop.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 150%;
    background-size: 100%;
    background-position: 0% 3%;
    filter: opacity(0.75);
  }
}
.hero__image::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background-image: url("./images/image-theme.jpg");
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center center;
  filter: grayscale(0.1) opacity(0.85);
}
@media (min-width: 40em) {
  .hero__image::after {
    background-size: 80%;
    height: 100%;
  }
}
@media (min-width: 64em) {
  .hero__image::after {
    width: 120%;
    height: 120%;
    background-size: 105%;
    background-position: center 30%;
    left: 22%;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}

.feature {
  background-color: #fafafa;
  text-align: center;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}
.feature__intro {
  margin-bottom: 2.75rem;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 90%;
    margin: auto;
  }
}
.feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .feature__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .feature__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}


.feature__grid__support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .feature__grid__support {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .feature__grid__support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}



@media (min-width: 64.1em) {
  #leadership {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 64.1em) {
  #board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature__item {
  padding: 0.9375rem;
  border-radius: 0.6125rem;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.feature__item:hover {
  transform: scale(1.01);
}
@media (min-width: 40em) {
  .feature__item {
    flex: 0 0 50%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.875rem;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2d314d!important;
  padding-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}
.feature__description {
  font-size: 0.975rem;
  line-height: 1.5;
}

.articles {
  background-color: #e7eef0;
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .article__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .article__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article__item {
  border-radius: 1.5125rem;
  overflow: hidden;
  background-color: #dfe1e9;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-in-out;
  text-align: center;
}

.article__item:hover {
  transform: scale(1.09);
}

@media (min-width: 64em) {
#news:hover {
  transform: scale(1.450);
}
}

.article__image {
  height: 12rem;
  width: 12rem;
  border-radius: 9.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: #5c5d67;
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.875rem 1.5625rem;
  }
}
.article__author {
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  color: #2d314d;
  margin-bottom: 0.3rem;
}
.article__description {
  font-size: 0.8125rem;
}


.yleader__icon {
  height: 12rem;
  width: 12rem;
  border-radius: 9.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 1.5rem;
  background-size:cover;
  overflow: hidden;
  background-position: center center;
}

.ysupport__icon {
  height: 12rem;
  width: 16rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  background-size:100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.footer {
  background-color: #2d1566;
  color: white;
  padding: 2.5rem;
  padding-top: 3.5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 3fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
    gap: 0.4rem;
    justify-items:first baseline;
  }
}
.footer a {
  color: #bbbbc0;
}
.footer__logo {
  display: inline-block;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 0.5rem;

}
.footer__logo img {
  size-adjust: 150%;
  width: 6.6935rem;
  height: 1.5125rem;
}

@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
    margin-top: 0.975rem
  }
}
@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: end;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a svg path {
  transition: fill 150ms ease-in-out;
}
.footer__social a:hover svg path {
  fill: #31d35c;
}
.footer__social a:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.975rem;
  margin-left: 5rem;
  margin-right: 5rem;
  
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: #31d35c;
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}
.footer__copyright {
  font-size: 0.8525rem;
  color: #bbbbc0;
  margin-right: 1rem;
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}
.footer .attribution {
  margin-top: 4rem;
  font-size: 0.815rem;
  color:#5c5d67;
}/*# sourceMappingURL=style.css.map */









/* Responsive image gallery rules begin*/

.container-poster {
  padding-bottom: 3.75rem;
}


.image-gallery {
  /* Mobile first */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.image-item img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .image-gallery {
    flex-direction: row;
  }
}

/* overlay styles */

.image-item {
  position: relative;
  cursor: pointer;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(45, 21, 102, 0.75);
  top: 0;
  left: 0;
  transform: scale(1);
  /* transition: all 0.2s 0.1s ease-in-out; */
  color: #fff;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.image-item:hover .overlay {
  transform: scale(1);
}

.themetitle {
  margin: auto;
  font-weight: 600; 
  color: #1c1b1b; 
  margin-left: 1.8rem;    
  font-size: 1.4rem;

}
@media (max-width: 50em) {
  .themetitle {
    font-size: 0.7rem;
  }
}