/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
}


/* TYPOGRAPHY */

h1 {
    /* font-size: 1.75rem;*/
    font-size: 40px;
    font-weight: 800;
    line-height: 1.375rem;
    margin: 1.5rem 0;
    color: #125680;
}

h2 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.375rem;
    margin: 1.25rem 0;
    color: #125680;
}

p,
a,
select {
    font-size: 1rem;
    font-weight: 400;
    /*line-height: 1.5625rem;
    letter-spacing: 0.01rem;
    margin: 1rem 0;*/
    color: #323a45;
}

.meta {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.9375rem;
    letter-spacing: 0.01rem;
    margin: 0.5rem 0 0 0;
    color: #125680;
}

.meta span:before {
    content: ' | '
}

article .meta span:first-of-type:before {
    content: ' '
}


/* BUTTON */

.button-primary {
    background-color: rgba(72, 150, 181, 1);
    color: white;
    font-weight: 600;
    padding: 0.75em 2.5rem;
    border-radius: 50px;
    transition: all 300ms;
    text-decoration: none !important;
}

.button-primary:hover {
    background-color: rgba(72, 150, 181, 0.7);
}


/* TOGGLER */

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 17px;
    margin: 0 4px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background-color: #ebeef4;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-color: #104b68;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

input:checked+.slider {
    background-color: #afd4e2;
}

input:focus+.slider {
    box-shadow: 0 0 1px #afd4e2;
}

input:checked+.slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}


/* HEADER */

header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    /*justify-content: flex-end;*/
    align-items: center;
    height: 5rem;
    box-shadow: 0 2px 21px 0 rgba(236, 237, 253, 0.93);
}

.main-logo {
    margin-right: auto;
    margin-left: 5%;
}

.main-logo img {
    padding: 20px 0;
    width: 230px;
    display: block;
}

.main-navbar {
    display: flex;
    align-items: center;
}

.main-navbar a {
    padding: 1.9rem 1.5rem;
    border-bottom: 2px solid transparent;
}

.main-navbar a:hover,
.main-navbar .active {
    border-bottom: 2px solid #c3184b;
    font-weight: bold;
    transition: all 0.3s;
    /* text-shadow: 0 0 0.65px #323a45, 0 0 0.65px #323a45; */
}

.search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #104b68;
    border-top-left-radius: 1rem 70%;
    border-bottom-left-radius: 0.5rem 30%;
    width: 5rem;
    height: 100%;
    z-index: 1;
}

.wrappSearch {
    display: inline-block;
    position: relative;
    width: 80%;
}

.wrappSearch button {
    position: absolute;
    right: 15px;
    top: 50%;
    background: transparent url(../img/searchBlue.png) no-repeat center center / 100%;
    height: 20px;
    width: 20px;
    border: none;
    margin-top: -10px;
}

.search-xl {
    position: absolute;
    width: 0;
    top: 0;
    right: 0;
    background-color: #104b68;
    height: 5rem;
    padding: 1rem;
    padding-left: 3rem;
    border-top-left-radius: 1rem 70%;
    border-bottom-left-radius: 0.5rem 30%;
    transition: all 0.3s;
}

.hide {
    display: none;
}

.display {
    display: block;
}

.search-xl.display {
    width: 60%;
    height: 5.1rem;
}

.search-xl input {
    border-radius: 50px;
    border: none;
    padding: 0.5rem;
    line-height: 1.5rem;
    width: 100%;
}

header .icon {
    display: block;
    position: fixed;
    top: 10px;
    left: 5%;
    z-index: 100;
}

.menu-burger {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 2px 21px 0px rgba(236, 237, 253, 0.93);
    transition: all 0.4s;
}

.menu-burger>div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #125680;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.menu-burger>div:before,
.menu-burger>div:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background-color: inherit;
    transition: transform 0.4s;
}

.menu-burger>div:after {
    top: 10px;
}

.menu-burger:hover>div {
    transform: rotate(90deg);
    background-color: white;
}

.menu-burger:hover {
    background-color: #125680;
}

.menu-burger.cross>div:before,
.menu-burger.cross>div:after {
    top: 0;
    transform: rotate(90deg);
}

.menu-burger.cross>div {
    background-color: white;
}

.menu-burger.cross {
    transform: rotate(45deg);
    box-shadow: none;
    background-color: transparent;
}


/* POP-UP MENU */

.responsive-menu {
    display: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
}

.responsive-menu.display {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #125680;
}

.responsive-menu .logo-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    text-align: center;
}

.responsive-menu .logo-right img {
    display: inline-block;
    width: 230px;
    padding: 20px 0;
}

.menu-left {
    background-color: #4896b5;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 8rem;
    padding-right: 4rem;
}

.menu-left .read-more {
    color: white;
}

.menu-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 5rem;
}

.menu-right img {
    max-height: 1.75rem;
    margin-right: 1rem;
    transition: all 0.3s;
}

.menu-right img:hover {
    opacity: 0.7;
}

.menu-right ul {
    column-count: 2;
    column-gap: 4rem;
    margin-right: 4rem;
}

.menu-right li {
    margin-top: 0;
    margin-bottom: 2rem;
    list-style: none;
}

.menu-right li a {
    color: white;
    font-size: 1.75rem;
}

.menu-right li a:hover {
    opacity: 0.7;
}

.menu-right hr {
    border: none;
    border-bottom: 1px solid #104b68;
    margin-bottom: 1.75rem;
}

.menu-right p {
    color: white;
}

.menu-right input {
    border-radius: 50px;
    border: none;
    padding: 0.5rem;
    line-height: 1.5rem;
    width: 100%;
}

.logo-right img {
    /* position: absolute; */
    /* top: 5%; */
    /* right: 5%; */
    /* max-height: 5rem; */
}


/* SHOWCASE */

.showcase {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    margin: 3rem auto;
}

.showcase h1 {
    font-size: 30px;
}

.showcase article {
    padding: 1rem;
    margin: 1rem;
    max-width: 400px;
    text-align: center;
}

.showcase img {
    max-width: 230px;
    height: auto;
}

.showcase article a:hover {
    opacity: 0.9;
}


/* NAV-ABOUT */

.navabout {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    background-color: #f7fafd;
    border-bottom-left-radius: 50% 1.5rem;
    border-bottom-right-radius: 50% 1.5rem;
}

.navabout a {
    margin: 0 2rem;
}

.navabout .active {
    text-shadow: 0 0 0.65px #323a45, 0 0 0.65px #323a45;
}

.nicer-ul ul {
    background-image: linear-gradient(to bottom, #f7fafd, white);
    padding: 3rem;
    border-top-left-radius: 50% 1rem;
    border-top-right-radius: 50% 1rem;
    margin: 1rem 0;
}


/* NEWS */

.news {
    margin-top: 3rem;
    padding-top: 5rem;
    background-color: #f7fafd;
    border-top-left-radius: 50% 1rem;
    border-top-right-radius: 50% 1rem;
    border-bottom-left-radius: 50% 1rem;
    border-bottom-right-radius: 50% 1rem;
    padding-bottom: 20rem;
    position: relative;
}

.news h1 {
    text-align: center
}

.news-carousel {
    margin-left: 10%;
}

.fade-out {
    height: 465px;
    width: 20%;
    background-image: linear-gradient(to right, transparent, #f7fafd);
    position: absolute;
    top: 165px;
    right: 0;
}

.nav-prev {
    position: absolute;
    top: 35%;
    left: 5%;
    cursor: pointer;
    border: 1px solid #efefef;
    padding: 1.3rem;
    border-radius: 50%;
    background-color: white;
}

.nav-prev:hover {
    opacity: 0.7;
}

.nav-next {
    position: absolute;
    top: 35%;
    right: 5%;
    cursor: pointer;
    border: 1px solid #efefef;
    padding: 1.3rem;
    border-radius: 50%;
    background-color: white;
}

.nav-next:hover {
    opacity: 0.7;
}


/* ARTICLES HP */

.work-article {
    margin: 1rem;
    width: 320px;
    height: 460px !important;
    text-align: center;
    overflow: hidden;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(192, 193, 213, 0.3);
}

.member-article {
    margin: 1rem;
    width: 320px;
    height: 290px !important;
    text-align: center;
    overflow: hidden;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(192, 193, 213, 0.3);
}

.member-article h2 {
    margin-top: 10px;
}

.work-article img {
    border-bottom-left-radius: 50% 5%;
    border-bottom-right-radius: 50% 5%;
    width: 100%;
    margin: auto;
    height: 218px;
}

.member-article .logoPicture {
    height: 110px;
    display: table;
    width: 100%;
}

.member-article .logoPicture div {
    display: table-cell;
    vertical-align: middle;
}

.member-article .logoPicture img {
    max-height: 120px;
    width: auto !important;
    max-width: 210px;
}

.member-article:hover {
    box-shadow: 0 0 15px 0 rgba(192, 193, 213, 0.5);
}

.work-article .news-intro,
.work-article h2 {
    padding: 0 1rem;
}

.work-article .button-primary {
    margin-top: 0.5rem;
    display: inline-block;
}

.work-article .news-intro,
.work-article .button-primary {
    opacity: 0;
    transition: all 0.3s;
}

.work-article:hover .news-intro,
.work-article:hover .button-primary {
    opacity: 1;
}

.translate {
    transform: translate(0);
    transition: all 0.3s;
}

.work-article:hover .translate {
    transform: translate(0, -218px);
}

.work-article:hover {
    box-shadow: 0 0 15px 0 rgba(192, 193, 213, 0.5);
}


/* FOCUS */

#focus {
    max-width: 1400px;
    margin: -15rem auto 0 auto;
}

#focus h1 {
    text-align: center;
    position: relative
}

.focus {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.focus article {
    height: 420px;
    width: 47%;
    margin: 1rem;
    background-color: #125680;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 36px 76px 0px rgba(192, 193, 213, 0.5);
    z-index: 1;
    position: relative;
}

.focus img {
    position: absolute;
    right: 60%;
    height: 100%;
    width: auto;
    border-top-right-radius: 5% 50%;
    border-bottom-right-radius: 5% 50%;
}

.focus-content {
    position: absolute;
    height: 100%;
    left: 45%;
    top: 1rem;
}

.focus h2,
.focus p {
    color: white;
    padding-right: 1.5rem;
}

.focus-intro {
    padding-bottom: 1rem;
    color: #fff;
}

.focus-intro.from-admin p {
    color: #fff;
    text-align: left;
}


/* POLICIES */

.policies {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 3rem auto 0 auto;
}

.policies a {
    margin: 1rem;
    background-color: white;
    padding: 3rem;
    height: 300px;
    width: 300px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.1);
    transform: scale(1);
    transition: transform 100ms ease;
}

.policies a:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1);
}

.policies h1 {
    flex: 0 0 100%;
    text-align: center;
    margin: 3rem 0;
}


/* MEMBERS */

.members {
    background-color: #f7fafd;
    margin-top: 3rem;
    text-align: center;
}

.members h1 {
    margin: 3rem 0;
}

.curved-up-bg {
    background-color: white;
    height: 3rem;
    border-bottom-left-radius: 50% 1rem;
    border-bottom-right-radius: 50% 1rem;
}

.curved-down-bg {
    background-color: white;
    height: 3rem;
    border-top-left-radius: 50% 1rem;
    border-top-right-radius: 50% 1rem;
}

.members ul {
    max-width: 1400px;
    margin: 5rem auto 3rem auto;
    overflow: hidden;
    /* max-height: 400px;*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.members img {
    -webkit-filter: grayscale(100%) opacity(0.4);
    filter: grayscale(100%) opacity(0.8);
    max-width: 90px;
    margin: 25px 45px;
    display: inline-block;
   mix-blend-mode: darken;
}

.members img:hover {
    -webkit-filter: opacity(0.8) drop-shadow(0 0 0 rgb(217, 220, 223));
    filter: opacity(0.8) drop-shadow(0 0 0 rgb(217, 220, 223));
}

.members a.button-primary {
    display: inline-block;
    margin-bottom: 3rem;
}


/* TWITTER */

.twitter {
    margin-top: 3rem;
    margin-bottom: 7rem;
    text-align: center;
}

.twitter-carousel {
    max-width: 1800px;
    margin: 1rem auto;
}

.tweet {
    text-align: left;
    width: 560px;
    height: 260px !important;
    overflow: hidden;
    border-radius: 5px;
    margin: 1rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0px 5px 16px 0px rgba(192, 193, 213, 0.21);
    transform: scale(1);
    transition: all 0.1s;
}

.tweet-meta {
    display: flex !important;
    /*justify-content: flex-end;*/
    align-items: center;
}

.pill {
    color: #c00350;
    font-size: 0.75rem;
    letter-spacing: 0.01rem;
    line-height: 1.9375rem;
    font-weight: 300;
    background-color: rgba(250, 237, 243, 1);
    border-radius: 50px;
    margin-right: 0.5rem;
    padding: 0 1.3rem;
    border: none;
}

.pill:hover {
    background-color: rgba(250, 237, 243, 0.7);
}

.tweet img {
    height: 35px;
    width: auto;
    opacity: 0.7;
}

.tweet img:hover {
    opacity: 1;
}

.tweet-content {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5625rem;
    letter-spacing: 0.01rem;
    color: #323a45;
}

.tweet .date {
    color: #c1c1c1;
    letter-spacing: 0.01rem;
    line-height: 1.6875rem;
    font-size: 0.75rem;
    font-weight: 300;
}

.tweet:hover {
    box-shadow: 0px 5px 8px 0px rgba(192, 193, 213, 0.5);
    transform: scale(1.02);
}


/* OUR WORK */

.filter-by-policies {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 3rem 1rem;
}

.allFiltersWrapper {
    display: block;
    clear: both;
    width: 100%;
    text-align: center;
}

.allFiltersWrapper a {
    background-color: #f3f8fa;
    font-weight: 600;
    padding: 0.75em 2.5rem;
    border-radius: 50px;
    transition: all 300ms;
    text-decoration: none !important;
    display: inline-block !important;
    color: #125680;
    font-size: 1.25rem;
    font-weight: 800;
}

.filter-by-policies img {
    max-width: 100px;
}

.filter-by-policies a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 0.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.filter-by-policies h2 {
    padding: 0 1rem;
}

.filter-by-policies a:hover,
.filter-by-policies .active {
    opacity: 1;
}

.work-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    justify-content: center;
    border-top-left-radius: 50% 1rem;
    border-top-right-radius: 50% 1rem;
    padding: 5rem 1rem;
    background-image: linear-gradient(to bottom, #f7fafd, transparent);
}

.memberArea-wrapper {
    max-width: 1200px;
    margin: auto;
}

.work-wrapper .work-container-wrap {
    overflow: hidden
}

.work-wrapper .work-container {
    overflow: hidden
}

.work-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    padding: 1rem;
}

.work-wrapper aside {
    padding: 1rem;
    min-width: 250px;
}

.work-wrapper aside hr {
    border: none;
    border-bottom: 1px solid #ebeef4;
}

.work-wrapper aside li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #104b68;
    font-size: 1rem;
    line-height: 1.5625rem;
    letter-spacing: 0.01rem;
    margin: 1rem 0;
}

.policy-tag {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-article .policy-logo {
    margin: 0.5rem 0.5rem 0 0.5rem;
}

.work-article .policy-logo img {
    max-width: 20px;
    height: auto;
}


/* TEAM */

.page-title {
    text-align: center;
    margin-top: 3rem;
}

.team-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    max-width: 1600px;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.1);
    width: 300px;
    height: 340px;
}

.team-member img {
    border-radius: 50%;
    width: 124px;
    height: 124px;
}

.team-member a:hover {
    text-decoration: underline;
}


/*.team-member:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1);
}*/


/* GOVERNANCE */

.governance-team img {
    display: block;
    max-width: 1400px;
    width: 100%;
    height: auto;
    margin: 3rem auto;
    border-radius: 50% 1rem;
}

.governance-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 2rem auto;
}

.presidents {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 2rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.1);
    width: 420px;
    height: 220px;
    overflow: hidden;
}


/*.presidents:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1);
}*/

.presidents img {
    border-radius: 50%;
    height: 124px;
    width: 124px;
    flex: 0 0 auto;
}

.presidents-content {
    margin-left: 2rem;
}

.board-members {
    /* display: flex; */
    text-align: center;
    /* flex-direction: column;
    justify-content: center;
    align-items: center; */
    padding: 2rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.1);
    width: 420px;
    height: 180px;
}


/*.board-members:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1);
}*/


/* STORIES */

.stories-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: 3rem 5%;
}

.stories-title h1 {
    margin-right: 3rem;
}

#stories-categories {
    border: none;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    min-width: 350px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../img/select-arrow.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 1em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.stories-intro {
    column-count: 2;
    column-gap: 3rem;
    margin: 0 5% 30px 5%;
}

.stories-select {
    text-align: center;
    margin-bottom: 20px;
}

.stories-intro p {
    margin-top: 0;
}

.story-margin {
    margin-bottom: 1rem;
}


/* ARTICLE */

.article {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.article-title {
    text-align: center;
    padding: 0 2rem;
	line-height: 47px
}

.article .meta {
    text-align: center;
    margin-bottom: 3rem;
}

.metatag {
    text-align: center;
}

.metatag img {
    width: 30px;
    vertical-align: middle;
    margin: 0 10px;
}

.metatag {
    font-weight: bold;
    color: #125680;
}

.article-intro p {
    font-weight: 600;
    padding: 0 2rem;
}

.article h2 {
    margin: 3rem 0;
}

.article img {
    max-width: 1200px;
    border-radius: 5px;
}

.article a {
    text-decoration: underline;
}

.article li {
    margin-left: 2rem;
}


/* IDENTITY */

.identity h1 {
    margin: 3rem 0;
    text-align: center;
}

.identity h2 {
    text-align: center;
}

.identity p,
.identity li {
    text-align: justify;
}

.identity .illustration {
    border-radius: 50% 1rem;
    width: 50%;
    float: left;
    margin-right: 3rem;
    margin-left: -20%;
    overflow: hidden;
}

.illustration img {
    display: block;
    width: 100%;
}

.identity blockquote {
    color: #4896b5;
    font-size: 1.5rem;
    text-align: right;
    margin: 3rem -1rem 3rem 0;
}

.vision ul {
    background-image: linear-gradient(to bottom, #f7fafd, white);
    padding: 2rem;
    border-radius: 5px;
}


/* .history {
    column-count: 2;
    column-gap: 3rem;
} */


/* .history h2 {
    column-span: all !important;
    margin-bottom: 3rem !important;
} */


/* .history p {
    margin-top: 0 !important;
    margin-bottom: 1rem;
} */

.curious {
    background-image: linear-gradient(to bottom, #f7fafd, white);
    padding: 3rem;
    border-top-left-radius: 50% 1rem;
    border-top-right-radius: 50% 1rem;
    margin: 3rem 0;
}


/* PAGE MEMBERS */

.banner {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-bottom-left-radius: 50% 1rem;
    border-bottom-right-radius: 50% 1rem;
}

.members-intro {
    column-count: 2;
    column-gap: 3rem;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #ebeef4;
    text-align: justify;
    padding: 3rem 1rem;
}

.members-intro p {
    margin-top: 0;
}

.members-apply {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.members-apply a {
    margin: 2rem;
}

.members-wrapper {
    max-width: 1600px;
    margin: 3rem auto;
}

.members-wrapper>h2 {
    margin: 2rem 0;
    text-align: center;
    font-size: 27px;
}

.members-wrapper .work-article {
    box-shadow: 0px 5px 5px 0px rgba(192, 193, 213, 0.21);
    transition: all 0.3s;
}

.members-wrapper .work-article:hover {
    box-shadow: 0px 16px 16px 0px rgba(192, 193, 213, 0.21);
}


/* MEMBERS AREA */

.membersarea-title {
    margin: 5rem 0;
    text-align: center;
}

.document-box {
    background-color: white;
    width: 100%;
    padding: 2rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 255, 0.2);
}

.document-box h2 {
    border-bottom: 1px solid #125680;
    padding-bottom: 10px;
    font-size: 25px
}

.document-box a.linkmember {
    position: absolute;
    bottom: 5%;
    right: 5%;
    padding: 1rem;
    background-color: #f7fafd;
    border-radius: 50%;
    color: white;
    fill: currentColor;
    transition: all 0.2s;
}

.document-box img {
    height: 15px;
    width: 15px;
}


/*.document-box:hover {
    box-shadow: 0px 16px 16px 0px rgba(192, 193, 213, 0.21);
}

.document-box:hover a {
    background-color: rgba(72, 150, 181, 0.3);
}*/


/* MEMBERS SIGN-IN */

.sign-in {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.75);
}

.sign-in.display {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.sign-in-form {
    background-color: white;
    text-align: center;
    padding: 2rem 5rem;
    border-radius: 5px;
    position: relative;
}

.login-form {
    background: transparent;
}

.sign-in-form img {
    position: absolute;
    top: -17px;
    right: -17px;
    background-color: #4896b5;
    padding: 1rem;
    max-width: 50%;
    height: auto;
    border-radius: 50%;
}

.sign-in-form input {
    display: block;
    border-radius: 50px;
    border: 1px solid #efefef;
    padding: 0.5rem 2rem;
    line-height: 1.5rem;
    background-color: rgba(247, 250, 253, 0.7);
    min-width: 400px;
    margin: 1rem auto;
}

.sign-in-form input[type="text"],
.sign-in-form input[type="email"] {
    font-weight: 300;
}

.sign-in-form button {
    border: none;
    margin: 1rem 0;
}


/* DATA POLICIES */

.article-body {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}


/* FOOTER */

footer {
    background-color: #125680;
    margin-top: 3rem;
}

footer .flex-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    padding: 3rem 0;
    max-width: 1400px;
    margin: auto;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

footer img {
    max-width: 150px;
    max-height: 5rem;
    margin-right: 1rem;
    transition: all 0.3s;
}

footer .footsocials img {
    max-width: 35px;
    margin-right: 5px
}

footer img:hover {
    opacity: 0.7;
}

footer li {
    margin-bottom: 1rem;
}

footer a {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 0;
    color: white;
}

footer .flex-wrapper div {
    padding-left: 2rem;
    margin: 2rem;
}

footer .data-protection {
    text-decoration: underline;
}


/* FROM ADMIN */

.from-admin h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 3rem;
    margin: 1.5rem 0 3rem 0;
    color: #125680;
}

.from-admin h2 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.375rem;
    margin: 2rem 0 1.5rem 0;
    color: #125680;
}

.from-admin h3 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.375rem;
    margin: 1.5rem 0;
    color: #125680;
}

.from-admin p,
.from-admin a,
.from-admin select,
.from-admin li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5625rem;
    letter-spacing: 0.01rem;
    margin: 0 0 1rem 0;
    color: #323a45;
    list-style-position: inside;
    text-align: justify;
}

.from-admin a {
    color: rgba(72, 150, 181, 1);
}

.from-admin hr {
    border: none;
    border-bottom: 1px solid #ebeef4;
    margin: 2rem 0;
}

.from-admin blockquote p {
    color: #4896b5;
    font-style: italic;
    font-size: 1.5rem;
    text-align: right;
    margin: 3rem -2rem 3rem 0;
}

.from-admin blockquote a {
    color: #4896b5;
    font-style: italic;
    font-size: 1.5rem;
    text-align: right;
}

.from-admin ul {
    margin-bottom: 20px
}

.from-admin ol {
    margin-bottom: 20px
}

.from-admin li {
    margin-bottom: 5px;
    margin-left: 20px
}

.event-socialnav {
    max-width: 1400px;
    margin: 3rem auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: solid 2px #f5f7fb;
    padding-top: 1rem;
    border-bottom: solid 2px #f5f7fb;
    padding-bottom: 1rem;
}

.event-socialnav p {
    color: #256092;
    font-size: 1.2rem;
    font-weight: 400;
    margin-right: 1rem;
}

.event-socialnav img {
    margin: 0 1rem;
    display: inline-block;
    opacity: 0.7;
}

.event-socialnav img:hover {
    opacity: 1;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .menu-left,
    .menu-right {
        padding: 2rem;
    }
}

@media (max-width: 1100px) {
    .work-wrapper {
        -webkit-flex-wrap: wrap;
        -ms-flex-flow: row wrap;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
    .work-wrapper .work-container {
        order: 1;
    }
    .work-wrapper aside {
        text-align: center;
    }
    .work-wrapper aside ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-flow: row wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 1000px) {
    .main-navbar {
        display: none;
    }
    header .icon {
        display: block;
    }
    footer .curved-up-bg {
        display: none;
    }
    .menu-left {
        display: none;
    }
    .filter-by-policies img {
        max-width: 50px;
    }
    .stories-intro {
        column-count: 1;
    }
    .focus article {
        width: 100%;
    }
    .main-logo {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
        width: 100%;
    }
    .main-logo a {
        display: inline-block;
    }
}

@media (max-width: 720px) {
    .focus-content {
        left: 1rem;
    }
    .focus img {
        opacity: 0.1;
    }
    .identity .illustration {
        display: none;
    }
    .identity .history {
        column-count: 1;
    }
    .identity .curious {
        padding: 1rem;
    }
    .members-intro {
        column-count: 1;
    }
    .banner {
        display: none;
    }
    .search {
        display: none;
    }
    .search-xl {
        display: none;
    }
    .sign-in-form input {
        min-width: 0;
    }
    .navabout {
        display: block;
        text-align: center;
        padding: 0 0 20px;
        height: auto;
    }
    .navabout a {
        margin: 0 2rem;
        display: block;
        margin: 10px;
    }
}

@media (max-width: 600px) {
    .twitter,
    .members {
        display: none;
    }
    .menu-right ul {
        column-count: 1;
    }
    .menu-right hr,
    .menu-right br {
        display: none;
    }
    .work-wrapper aside ul {
        display: block;
    }
    .presidents img {
        display: none;
    }
}

#pagination {
    clear: both;
    width: 100%;
    display: block;
    text-align: center;
}

#pagination li {
    display: inline-block;
    padding: 5px;
}

#pagination li.active {
    font-weight: bold;
}

.back {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.searchResultsWrapper {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.search-card {
    box-shadow: 0px 5px 5px 0px rgba(192, 193, 213, 0.21);
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
}

.search-card h2 {
    margin: 0 0 10px 0;
}

.searchResults {
    margin-bottom: 80px;
}

.searchResults h3 {
    margin-bottom: 30px;
}

.members li,
footer li,
.slick-dots li {
    list-style: none;
}

#hiddenDisclaimerBox {     max-width: 1090px;
    padding: 0 5%;
    margin: 0 auto;
    margin-bottom: 30px;
}
#hiddenDisclaimerBox p{ margin-bottom: 10px; text-align: center}

#hiddenDisclaimerBox .insideFlex{    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
 }
#hiddenDisclaimerBox img{ width: 100px; margin: 0 30px}

