@keyframes call-to-action-arrow-before {
  0% {transform: translateX(0);}
  50% {transform: translateX(-100%);}
  100% {transform: translateX(0);}
}

@keyframes call-to-action-arrow-after {
  0% {transform: translateX(0);}
  50% {transform: translateX(100%);}
  100% {transform: translateX(0);}
}



html {
  height: 100%;

}

body {
  background-color: #FFFFFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 72.5%;
  line-height: 1.2em;
  font-weight: 400;
  background-color: #FFFFFF;
  color: #3C3C3C; 
  color: #1C345C;
  height: 100%;
  overflow-x: hidden;
/*
  background-image: url(img/header-curve.svg);
  background-size: auto 400px;
  background-position: center -15px;
  background-repeat: no-repeat;
*/
}

body.with-nav {
  overflow: hidden;
}

body[style] {
  position: static !important;
}

.header-background {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  pointer-events: none;
  max-width: 1750px;
  margin: 0 auto;
}


html.no-scroll,body.no-scroll {
  overflow-y: hidden;
}

.nowrap {
  white-space: nowrap;
}

.centered {
  text-align: center;
}

.video-wrap {
  padding-bottom: 56.25%;
  position: relative;
}

.video-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.video-wrap.narrow {
  max-width: 600px;
  margin: 0 auto;
}

.video-wrap video {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%; 
}

.video-wrap.with-margin {
  margin-bottom: 30px;
}

.image-wrap {
  overflow: hidden;
}

.popup .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background-image: url(img/cross.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.95);
  z-index: 999;
  padding: 50px;
  overflow: hidden;
  display: none;
}

.popup .popup-content {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
}

.popup.video-popup {
  transform: scale(0);
  transition: transform 1s ease-in-out;
}

.popup.video-popup.active {
  transform: scale(1);
}

.popup.video-popup .popup-content {
  bottom: 100px;
  max-width: 900px;
  margin: 0 auto;
}

.popup.video-popup .social-links-wrap {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.popup.video-popup .social-links-wrap span {
  display: block;
}

.popup.video-popup .social-links-wrap .copy-wrap textarea {
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  padding: 5px;
  border: 1px solid #CCCCCC;
  min-height: auto;
  white-space: nowrap;
  max-width: 300px;
  margin: 10px auto 0 auto;
} 


.video-popup .wp-video > video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1024px;
  max-height: 768px;
  margin: 0 auto;
  display: block;
  height: calc( 100vh - 200px );
}

.chatbot-trigger {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #F0B750;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #FFFFFF;
  text-align: center;
}

.popup.chatbot-popup .close {
  margin-top: -75px;
  right: 0;
}

.popup.chatbot-popup .popup-content {
   max-width: 600px;
  margin: auto;
  filter: drop-shadow(5px 5px 10px #000000);
  top: calc(50vh - 50px);
  bottom: 0;
  transform: translateY(-50%);
}

.image-wrap img {
  width: 100%;
  height: auto;
  float: left;
}

.menu-toggle {
  display: none;
}

.screen-reader-text {
  display: none;
}


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p a {
  color: #1C345C;
  text-decoration: underline;
}


.hide {
  display: none;
}

button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
input:focus,
input:active {
  outline: none;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  font-family: inherit;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

button {
  font-family: inherit;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  min-height: 200px;
  width: 100%;
  background-color: transparent;
  font-family: inherit;
}

select {
  font-family: inherit;
}

.with-error,
.with-error {
  border-color: red;
}

.form-messages {
  padding: 15px;
  margin-bottom: 30px;
}

.form-messages.errors {
  background-color: #FFAFAF;
}

.form-messages.success {
  background-color: #73FA73;
}

button,
input[type=button],
input[type=submit] {
  color: #FFFFFF;
  cursor: pointer;
}

.field-wrap {
  margin-bottom: 15px;
}

.field-wrap-1-2 {
  display: inline-block;
  width: 45%;
}

.field-wrap label {
  display: block;
}

.field-wrap label.hide {
  display: none !important;
}

.field-wrap .required {
  color: red;
}


.user-form .form-message-wrap {
  margin-bottom: 30px;
  text-align: center;
}

.user-form .form-message-wrap p {
  font-size: 2.0em;
  font-weight: 300;
  line-height: 1.2em;
  text-align: center;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}

.user-form .form-message-wrap li {
  list-style-type: none;
  text-align: center;
  margin-bottom: 10px;
}


.user-form .form-message-success p {
  color: #F0C40D;
}

.user-form .form-message-success .disclaimer {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.2em;
}

.user-form .form-message-error p {
  color: #DC006B;
}

.user-form .form-message-success {
  color: #F0C40D;
}


.page-sleeve {
  text-align: left;
  margin: 0 auto;
  max-width: 1024px;
}

#masthead {
  position: relative;
  z-index: 999;
}


#header .page-sleeve {

}

#header .google-translate-element {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: block;
  opacity: 0;
}

#header .google-translate-element img {
  display: none;
}

#header .google-translate-element .goog-te-menu-value span {
  display: none;
}


#header .site-branding {
  overflow: hidden;
  padding-top: 20px;
  margin-bottom: 20px;
  position: absolute;
  top: -70px;
}

#header .site-branding .site-title a {
  display: block;
  float: left;
  background-image: url(img/main-logo-white.svg);
  /* background-image: url(img/main-logo-anniversary-white.svg); */
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}

#header .site-branding .site-title a span { 
  display: block;
  width: 300px;
  height: 100px;
  text-indent: -999px;
}


#header .toolbar {
  margin-bottom: 30px;
  margin-top: 70px;
  text-align: right;
}

#header .toolbar li {
  position: relative;
}

#header .toolbar .social-links-wrap {
  display: inline-block;
  margin-left: 15px;
}

#header .toolbar .social-links-wrap ul li {
  display: inline-block;
  text-align: center;

}

#header .toolbar .social-links-wrap ul li a {
  display: block;
  color: #FFFFFF;
  background-color: #0069AE;
  border: 1px solid #0069AE;
  border-radius: 5px;  
  width: 18px;
  height: 12px;
  padding: 3px 0;
}

#header .toolbar .social-links-wrap ul li a:hover {
  color: #0069AE;
  background-color: #FFFFFF;
  text-decoration: none;
}

#header .toolbar .social-links-wrap ul li a span {
  display: none;
}


#header .toolbar .action-links-wrap {
  display: inline-block;
  margin-left: 15px;
}

#header .toolbar .action-links-wrap ul li {
  display: inline-block;
  text-align: center;
  line-height: 12px;
  font-size: 1.2em;
}

#header .toolbar .action-links-wrap ul li a {
  display: block;
  color: #FFFFFF;
  background-color: #0069AE;
  border: 1px solid #0069AE;
  border-radius: 5px;
 
  padding: 3px 10px;
}

#header .toolbar .action-links-wrap ul li a:hover {
  color: #0069AE;
  background-color: #FFFFFF;
  text-decoration: none;
}

#header .toolbar .search-form-wrap {
  display: inline-block;
  border: 1px solid #0069AE;
  border-radius: 5px;
  vertical-align: top;
  margin-left: 15px;
  overflow: hidden;
} 

#header .toolbar .search-form-wrap input[type=search] {
  border: 0;
  background-color: transparent;
  padding: 0px 10px;
  color: #0069AE;
  font-weight: 300;
}

#header .toolbar .search-form-wrap input[type=submit] {
  background-color: #0069AE;
  border: 0;
  width: 21px;
  text-indent: -9999px;
  background-image: url(img/magnifier-white.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}



#header .main-nav {
  margin-bottom: 60px;
} 

#header .main-nav ul {
  text-align: right;
}

#header .main-nav ul li {
  display: inline-block;
  margin-left: 10px;
  transition: all 0.5s ease-in-out;
  font-weight: 700; 
  font-size: 1.2em;
}

#header .main-nav ul li:first-child {
  display: none;
}

#header .main-nav ul li a {
  display: block;
  border: 1px solid #0069AE;
  padding: 3px 10px;
  border-radius: 5px;  
  color: #0069AE;
  overflow: hidden;
}


body.single-news #header .main-nav ul li.menu-item-446 a,
body.single-voice #header .main-nav ul li.menu-item-28 a,
#header .main-nav ul li.current-page-ancestor a,
#header .main-nav ul li.current-menu-item a {
  background-color: #F0B750;
  color: #FFFFFF;
/*
  color: #F0B750;
*/
}

#header .main-nav ul li:hover {
  transform: scale(1.1);
}

#header .main-nav ul li a:hover {
  background-color: #0069AE;
  text-decoration: none;
  color: #FFFFFF;
}


#footer {
  background-color: #1C345C;
  padding: 30px 0;
  color: #FFFFFF;
}

#footer .page-sleeve {
  background-image: url(img/icon.svg);
  background-size: 100px auto;
  background-position: right 15px bottom;
  background-repeat: no-repeat;
}

#footer .contact-wrap {
  margin-bottom: 15px;
}

#footer .contact-wrap .label {
  font-size: 1.3em;
  line-height: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .contact-wrap p {
  font-size: 1.1em;
  line-height: 1.6em;
  font-weight: 400;
}

#footer .contact-wrap p a {
  color: #FFFFFF;
}

#footer .disclaimer-wrap {
  margin: 30px 0 15px 0;
}


#footer .disclaimer-wrap p {
  font-size: 1.1em;
  line-height: 1.6em;
  font-weight: 400;
  margin-bottom: 15px;
}

#footer .disclaimer-wrap p a {
  color: inherit;
  text-decoration: underline;
}


#footer .thanks-wrap {

}

#footer .thanks-wrap p {
  font-size: 1.1em;
  line-height: 1.6em;
  font-weight: 400;
}

#footer .thanks-wrap p a {
  color: #FFFFFF;
} 

.page-column-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.page-column-wrap .page-column-1-3 {
  width: calc(40% - 30px);
}

.page-column-wrap .page-column-2-3 {
  width: calc(60% - 30px);
}

.entry-content .bookmarks {
  
}

.entry-content .bookmarks .title {
  margin-bottom: 10px;
  font-size: 1.2em;
  line-height: 1em;
  color: #F0B750;
  font-weight: bold;
}

.entry-content .bookmarks ul li {
  margin-bottom: 5px !important;
  color: #F0B750;
  font-weight: bold;
}

.entry-content .bookmarks ul li a {
  color: #1C345C;
}

.entry-content {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.entry-content .main-content {
  width: calc(60% - 30px);
}  

.entry-content .main-content.full-width  {
  width: 100%;
}  

/*
.entry-content .main-content .content-bookmarks {

}

.entry-content .main-content .content-bookmarks ul {

}

.entry-content .main-content .content-bookmarks ul li {
  margin-bottom: 0;
  color: 
}

.entry-content .main-content .content-bookmarks ul li span {
  
}
*/

.entry-content .main-content img {
  max-width: 100%;
  height: auto;
}


.entry-content .main-content iframe {
  width: 100%;
}

.entry-content .main-content .video-wrap {
  padding-bottom: 56.25%;
}

.entry-content .main-content .video-wrap video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.entry-content .main-content .news-date {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #F0B750;
}

.entry-content .main-content h2 {
  color: #1C345C;
  font-size: 2.4em;
  line-height: 1.2em;
  margin-bottom: 15px;
} 

.entry-content .main-content h3 {
  color: #1C345C;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 15px;
} 

.entry-content .text-wrap p,
.entry-content .main-content p {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 30px;
}

.entry-content .text-wrap ul,
.entry-content .text-wrap ol,
.entry-content .main-content ul,
.entry-content .main-content ol {
  margin-left: 15px;
  margin-bottom: 30px;
}

.entry-content .text-wrap ul li,
.entry-content .text-wrap ol li,
.entry-content .main-content ul li,
.entry-content .main-content ol li {
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.entry-content .text-wrap p:last-child,
.entry-content .text-wrap ul li:last-child,
.entry-content .text-wrap ol li:last-child,
.entry-content .main-content p:last-child,
.entry-content .main-content ul li:last-child,
.entry-content .main-content ol li:last-child {
  margin-bottom: 0;
}

.entry-content .main-content blockquote {
  border-left: 10px solid #F0B750;
  padding-left: 30px;
  font-style: italic;
  margin-right: 50px;
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.4em;
  font-weight: 300;
}

.entry-content .main-content blockquote p {
  font-size: 1.0em;
  line-height: 1.4em;
}

.entry-content .main-content figure[style] {
  width: 100% !important;
  margin-bottom: 30px;
}

.entry-content .main-content figure img {
  width: 100%;
  height: auto;
}


.entry-content .sidebar {
  width: calc( 40% - 30px );
}

.entry-content .sidebar .sleeve {
  border: 2px solid #0069AE;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 45px;
}

.entry-content .sidebar h2 {
  color: #1C345C;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F0B750;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item a:hover {
  text-decoration: none;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item h3 {
  color: #1C345C;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 5px;
  font-weight: 700;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item a:hover h3 {
  color: #F0B750;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item .subtitle {
  color: #1C345C;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item .date {
  color: #1C345C;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item .location {
  margin-bottom: 5px;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item .teaser {
  color: #1C345C;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.entry-content .sidebar .sidebar-wrap .sidebar-item .teaser .country {
  font-weight: bold;
}








.section-landing-header > .sleeve {
  background-color: #00A5DA;
  border-radius: 45px;
  padding: 0 45px;
  position: relative;
  margin-bottom: 75px;
  box-sizing: border-box;
}

.section-landing-header .entry-title {
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px 160px 20px 45px;
  background-color: #0069AE;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 3em;
  line-height: 1em;
  border-bottom-right-radius: 45px;
  border-top-left-radius: 45px;
  font-weight: bold;
}

.section-landing-header .page-title {
  color: #1C345C;
  font-weight: 700;
  font-size: 4.8em;
  line-height: 1.2em;
  margin-bottom: 15px;

}



.section-landing-header h2.subtitle {
  margin: 0 auto 60px auto;
  text-align: center;
  color: #1C345C;
  font-weight: 500;
  font-size: 2.2em;
  line-height: 1.2em;
  max-width: 800px;
}

.section-landing-header .featured-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  min-height: 300px;
}


.section-landing-header .featured-item .content-wrap {
  width: calc(70% - 15px);
  padding: 100px 45px 25px 0;
  box-sizing: border-box;
}

.section-landing-header .featured-item .content-wrap h2,
.section-landing-header .featured-item .content-wrap .intro-text,
.section-landing-header .featured-item .content-wrap .main-quote  {
  color: #1C345C;
  font-weight: 700;
  font-size: 3.2em;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.section-landing-header .featured-item .content-wrap .subtitle {
  color: #FFFFFF;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 30px;
}

.section-landing-header .featured-item .content-wrap a:hover {
  text-decoration: none;
}

.section-landing-header .featured-item .content-wrap .call-to-action {
  color: #FFFFFF;
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1.2em;
}

.section-landing-header .featured-item .content-wrap .call-to-action:before {
  content: '>';
  position: absolute;
  left: 0px;
}

.section-landing-header .featured-item .content-wrap .call-to-action:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.section-landing-header .featured-item .image-wrap {
  width: calc(30% - 15px);
  border-radius: 50%;
  transform: translateY(45px);
  position: absolute;  
  right: 45px;
}

.section-landing-header .featured-item .image-wrap img {
  height: 100%;
}


/*
.post-page-news .section-landing-header .featured-item {
  min-height: 350px;
}

.post-page-news .section-landing-header .featured-item .image-wrap {
  width: calc(35% - 15px);
}

.post-page-news .section-landing-header .featured-item .content-wrap {
  width: calc(60% - 15px);
}
*/

.section-intro-block {
  margin-bottom: 60px;
}

.section-intro-block > .page-sleeve > .sleeve {
  background-color: #A0D9F4;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}


.section-intro-block .image-wrap {
  width: calc(60%);
}

.section-intro-block .content-wrap {
  width: calc(40%);
  box-sizing: border-box;
  padding: 30px;
}

.section-intro-block .content-wrap h2 {
  color: #0069AE;
  font-size: 3em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.section-intro-block .content-wrap .teaser-wrap p {
  font-size: 1.4em;
  line-height: 1.2em;
  color: #1C345C;
  margin-bottom: 10px;
}

.section-intro-block .content-wrap .teaser-wrap ul {
  margin-bottom: 10px;
}

.section-intro-block .content-wrap .teaser-wrap ul li {
  font-size: 1.4em;
  line-height: 1.2em;
  color: #1C345C;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  list-style-type: none;
}


.section-intro-block .content-wrap .teaser-wrap ul li:before {
  content: '•';
  color: #FFFFFF;
  position: absolute;
  left: 0;
  font-size: 2em;
}

.section-intro-block .quote-wrap {
  position: absolute;
  left: 90px;
  bottom: 45px;
}

.section-intro-block .quote-wrap .sleeve:before {
  content: '';
  position: absolute;
  top: 0px;
  transform: rotate(90deg) scaleX(-1);
  right: -70px;
  height: 100px;
  width: 50px;
  background-image: url(img/quote-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}

.section-intro-block .quote-wrap .sleeve {
  background-color: #0069AE;
  border-radius: 15px;
  padding: 15px;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 700; 
  width: 200px;
}










body.single-voice .section-landing-header .featured-item .content-wrap .headline {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 3.2em;
  line-height: 1.2em;
  margin-bottom: 15px;
}


body.single-news .section-landing-header > .sleeve {
  padding-right: 0;
  overflow: hidden;
  background-color: #F0B750;
}

body.single-news .section-landing-header .featured-item .content-wrap .headline {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 3.2em;
  line-height: 1.2em;
  margin-bottom: 15px;
}

body.single-news .section-landing-header .featured-item .content-wrap {
  width: calc(50% - 15px);
}

body.single-news .section-landing-header .featured-item .image-wrap {
  border-radius: 0;
  transform: none;
   width: calc(50% - 15px);
  position: static;
  right: 0;
}

body.single-news .section-landing-header .featured-item .image-wrap img {
  width: 100%;
  height: auto;
}













.home-intro-block-2  {
  background-color: #0069AE;
  border-radius: 45px;
  padding: 0 30px;
  margin: 100px auto 30px auto;
  max-width: 964px;
}

.home-intro-block-2 > .sleeve {

}

.home-intro-block-2 > .sleeve .content-wrap {
  display: flex;
}


.home-intro-block-2 .carousel-images-wrap {
  width: 45%;
  flex-shrink: 0;
  padding-bottom: 45%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transform: translateY(-60px);
}

.home-intro-block-2 .carousel-images-wrap .image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-intro-block-2 .carousel-images-wrap .image-wrap:first-child {

}


.home-intro-block-2 .content-wrap {
  color: #FFFFFF;
  /*margin-top: -30px;
  transform: translateY(30px);*/
}

.home-intro-block-2 .content-wrap:after {
  content: '';
  clear: both;
  display: table;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap {
  margin-top: 30px;
  margin-right: 30px;
  
}

.home-intro-block-2 .top-content-wrap .teaser-wrap p {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 15px;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap h2 {
  font-size: 2.75em;
  line-height: 1.2em;
  font-weight: 600;
  color: #F0B750;
  margin-bottom: 15px;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap li {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
  list-style-type: none;
  color: #FFFFFF;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap li a {
  color: #FFFFFF;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap li:before {
  content: '>';
  color: #F0B750;
  position: absolute;
  left: 0;
  top: 0;
}

.home-intro-block-2 .top-content-wrap .teaser-wrap li:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.home-intro-block-2 .bottom-content-wrap {
  margin-top: -60px;
}

.home-intro-block-2 .bottom-content-wrap .image-wrap {
  width: 40%;
  flex-shrink: 0;
  margin-right: 90px;
  margin-bottom: 30px;
}

.home-intro-block-2 .content-wrap .quote-wrap {
  float: right;
  width: calc( 45% - 30px );
  box-sizing: border-box;
  margin-top: 45px;
}

.home-intro-block-2 .content-wrap .quote-wrap .sleeve {
  background-color: #00b2e6;
  border-radius: 15px;
  padding: 25px;
  color: #FFFFFF;
  text-align: center;
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 700;  
  position: relative;
}

.home-intro-block-2 .content-wrap .quote-wrap .sleeve:before {
    content: '';
    position: absolute;
    left: -90px;
    transform: rotate(-90deg) scaleX(-1);
    top: -20px;
    height: 140px;
    width: 50px;
    background-image: url(img/quote-arrow-light-blue.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left top;
}


.home-intro-block-2 .content-wrap .call-to-action-wrap {
  float: right;
  width: calc( 33.3% - 30px );
  box-sizing: border-box;
  text-align: center;
}

.home-intro-block-2 .content-wrap .call-to-action-wrap a {
  display: inline-block;
  background-color: #F0B750;
  border-radius: 5px;
  padding: 3px 20px 3px 35px;
  color: #1C345C;
  text-align: center;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 700; 
  position: relative;
}

.home-intro-block-2 .content-wrap .call-to-action-wrap a:before {
  content: '>';
  position: absolute;
  left: 20px;
  top: 3px; 
}

.home-intro-block-2 .content-wrap .call-to-action-wrap a:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.home-intro-block-2 .content-wrap .call-to-action-wrap a:hover {
  color: #FFFFFF;
  text-decoration: none;
}












.home-intro-block  {
  background-color: #0069AE;
  border-radius: 45px;
  padding: 0 30px;
  margin: 130px auto 30px auto;
  max-width: 964px;
}

.home-intro-block > .sleeve {
  transform: translateY(-80px);
}

.home-intro-block .images-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home-intro-block .images-wrap .image-wrap {
  border-radius: 50%;
  width: calc( 33.3% - (60px / 3) );
}

.home-intro-block .content-wrap {
  color: #FFFFFF;
  margin-top: -30px;
  transform: translateY(30px);
}

.home-intro-block .content-wrap:after {
  content: '';
  clear: both;
  display: table;
}

.home-intro-block .content-wrap .teaser-wrap {
  float: left;
  width: calc( ((33.3% - (60px / 3)) * 2) + 30px );
}

.home-intro-block .content-wrap .teaser-wrap p {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 15px;
}

.home-intro-block .content-wrap .teaser-wrap h2 {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 500;
  color: #F0B750;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.home-intro-block .content-wrap .teaser-wrap li {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 0px;
  padding-left: 20px;
  position: relative;
  list-style-type: none;
}

.home-intro-block .content-wrap .teaser-wrap li:before {
  content: '>';
  color: #F0B750;
  position: absolute;
  left: 0;
  top: 0;
}

.home-intro-block .content-wrap .teaser-wrap li:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}


.home-intro-block .content-wrap .quote-wrap {
  float: right;
  width: calc( 33.3% - 30px );
  box-sizing: border-box;
  margin-bottom: 60px;
}

.home-intro-block .content-wrap .quote-wrap .sleeve {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 15px;
  color: #009DDD;
  text-align: center;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 700;  
  position: relative;
}

.home-intro-block .content-wrap .quote-wrap .sleeve:before {
  content: '';
  position: absolute;
  left: 30px;
  top: -90px;
  height: 100px;
  width: 50px;
  background-image: url(img/quote-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}


.home-intro-block .content-wrap .call-to-action-wrap {
  float: right;
  width: calc( 33.3% - 30px );
  box-sizing: border-box;
  text-align: center;
}

.home-intro-block .content-wrap .call-to-action-wrap a {
  display: inline-block;
  background-color: #F0B750;
  border-radius: 5px;
  padding: 3px 20px 3px 35px;
  color: #1C345C;
  text-align: center;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 700; 
  position: relative;
}

.home-intro-block .content-wrap .call-to-action-wrap a:before {
  content: '>';
  position: absolute;
  left: 20px;
  top: 3px; 
}

.home-intro-block .content-wrap .call-to-action-wrap a:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.home-intro-block .content-wrap .call-to-action-wrap a:hover {
  color: #FFFFFF;
  text-decoration: none;
}


.home-news-block {
  margin-bottom: 60px;
}

.home-news-block h2 {
  margin-bottom: 15px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}

.home-news-block h2 a {
  display: inline-block;
}

.home-news-block h2 a:hover {
  text-decoration: none;
}

.home-news-block h2 a:after {
  content: '>';
  color: #0069AE;
  position: absolute;
  margin-left: 10px;
}

.home-news-block h2 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.home-news-block .news-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home-news-block .news-wrap .news-item {
  width: calc( 33.3% - (60px / 3) );
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.home-news-block .news-wrap .news-item a:hover {
  text-decoration: none;
}  

.home-news-block .news-wrap .news-item .image-wrap {
  width: 50%;
}

.home-news-block .news-wrap .news-item .content-wrap {
  width: calc( 50% - 15px );
  color: #1C345C;
}

.home-news-block .news-wrap .news-item .content-wrap h3 {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2em; 
  margin-bottom: 5px;
}

.home-news-block .news-wrap .news-item .content-wrap .subtitle {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2em; 
  margin-bottom: 5px;
}

.home-news-block .news-wrap .news-item .content-wrap .date {
  margin-bottom: 5px;
}

.home-news-block .news-wrap .news-item .content-wrap .call-to-action {
  margin-bottom: 5px;
  padding-left: 10px;
  position: relative;
}

.home-news-block .news-wrap .news-item .content-wrap .call-to-action:before {
  content: '>';
  position: absolute;
  left: 0;
  top: 0;
}

.home-news-block .news-wrap .news-item .content-wrap .call-to-action:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.home-news-block .featured-news {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;  
  background-color: #F0B750;
  border-radius: 45px;
  overflow: hidden;
  position: relative;
}

.home-news-block .featured-news a:hover {
  text-decoration: none;
}

.home-news-block .featured-news .slug {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 1.6em;
  line-height: 1.2em;
}

.home-news-block .featured-news .slug a {
  background-color: #0069AE;
  padding: 5px 15px 5px 25px;
  border-radius: 5px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.home-news-block .featured-news .slug a:before {
  content: '>';
  position: absolute;
  left: 12px;
}

.home-news-block .featured-news .slug a:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}


.home-news-block .featured-news .image-wrap {
  width: 50%;
}

.home-news-block .featured-news .content-wrap {
  width: 50%;
  box-sizing: border-box;
  padding: 45px;
}

.home-news-block .featured-news .content-wrap h3 {
  font-size: 2.0em;
  font-weight: 700;
  line-height: 1.2em; 
  margin-bottom: 15px;
  color: #FFFFFF;
}

.home-news-block .featured-news .content-wrap .subtitle {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.2em; 
  margin-bottom: 15px;
  color: #1C345C;
}

.home-news-block .featured-news .content-wrap .date {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.2em; 
  margin-bottom: 15px;
  color: #1C345C;
}

.home-news-block .featured-news .content-wrap .call-to-action {
  background-color: #00A5DA;
  border-radius: 5px;
  padding: 3px 15px 3px 30px;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.6em;
  line-height: 1.2em;
  font-weight: 700; 
  position: relative;
  display: inline-block;
}

.home-news-block .featured-news .content-wrap .call-to-action:before {
  content: '>';
  position: absolute;
  left: 12px;
}

.home-news-block .featured-news .content-wrap .call-to-action:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}

.home-video-block {
  background-color: #CEE7F7;
  padding: 30px 0;
}

.home-video-block h2 {
  margin-bottom: 30px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}

.home-video-block h2 a {
  display: inline-block;
}

.home-video-block h2 a:hover {
  text-decoration: none;
}

.home-video-block h2 a:after {
  content: '>';
  color: #0069AE;
  position: absolute;
  margin-left: 10px;
}

.home-video-block h2 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}


.home-video-block .multimedia-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


.home-video-block .multimedia-wrap .multimedia-item {
  width: calc(50% - (30px / 2) );
  margin-bottom: 30px;
}

.home-video-block .multimedia-wrap .multimedia-item .image-wrap,
.home-video-block .multimedia-wrap .multimedia-item .video-wrap {
  margin-bottom: 15px;
}

.home-video-block .multimedia-wrap .multimedia-item .content-wrap a {
  display: block;
}

.home-video-block .multimedia-wrap .multimedia-item .content-wrap a:hover {
  text-decoration: none;
}

.home-video-block .multimedia-wrap .multimedia-item .content-wrap h3 {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.2em; 
  margin-bottom: 5px;
  color: #1C345C;
}

.home-video-block .multimedia-wrap .multimedia-item .content-wrap .subtitle {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.2em; 
  margin-bottom: 5px;
  color: #1C345C;
}





.home-connect-block {
  background-color: #CEE7F7;
  padding: 30px 0;
}

.home-connect-block h2 {
  margin-bottom: 30px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}

.home-connect-block .connect-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home-connect-block .connect-wrap .connect-item {
  width: calc( 33.3% - (60px / 3) );
  width: calc( 50% - (30px / 2) );
  border: 1px solid #0069AE;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  background-color: #FFFFFF;
}

.home-connect-block .connect-wrap .connect-item h3 {
  background-color: #0069AE;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 1.2em;
}

.home-connect-block .connect-wrap .connect-item h3 span {
  margin-right: 5px;
}







.post-type-archive-news .entry-content .news-wrap {
  border-top: 2px solid #00A5DA;
  margin-bottom: 45px;
}

.post-type-archive-news .entry-content .news-wrap .news-item {
  padding: 30px 0;
  border-bottom: 2px solid #00A5DA;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.post-type-archive-news .entry-content .news-wrap .news-item .image-wrap {
  width: 200px;
  margin-bottom: 15px;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap {
  width: calc( 100% - 230px );
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap a:hover {
  text-decoration: none;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap h3 {
  color: #0069AE;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap .date {
  font-size: 1.2em;
  line-height: 1.2em;
  color: #1C345C;
  margin-bottom: 5px;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap .subtitle {
  font-size: 1.2em;
  line-height: 1.2em;
  color: #1C345C;
  margin-bottom: 10px;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap .call-to-action {
  font-weight: 700;
  padding-left: 12px;
  position: relative;
  color: #1C345C;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap .call-to-action:before {
  content: '>';
  position: absolute;
  left: 0px;
}

.post-type-archive-news .entry-content .news-wrap .news-item .content-wrap .call-to-action:hover:before {
  animation-name: call-to-action-arrow-before;
  animation-duration: 1s;
}











.post-page-voices .entry-content .voice-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.post-page-voices .entry-content .voice-wrap .voice-item {
  padding: 0;
  border: 2px solid #00A5DA;
  width: calc( 50% - (30px / 2) );
  box-sizing: border-box;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.post-page-voices .entry-content .voice-wrap .voice-item:nth-child(1),
.post-page-voices .entry-content .voice-wrap .voice-item:nth-child(2) {
  padding-top: 0;
}

.post-page-voices .entry-content .voice-wrap .voice-item .content-wrap {
  padding: 15px;
}

.post-page-voices .entry-content .voice-wrap .voice-item .content-wrap a:hover {
  text-decoration: none;
}

.post-page-voices .entry-content .voice-wrap .voice-item .content-wrap h3 {
  color: #0069AE;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.post-page-voices .entry-content .voice-wrap .voice-item .content-wrap .teaser {
  margin-bottom: 15px;
}

.post-page-voices .entry-content .voice-wrap .voice-item .content-wrap .teaser .country {
  font-weight: bold;
  color: #0069AE;
}


.post-page-voices .entry-content .featured-voice-wrap {
  margin-bottom: 60px;
  overflow: hidden;
  width: 100%;
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item a:hover {
  text-decoration: none;
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .image-wrap {
  width: calc(60% - 30px);
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .video-wrap {
  width: calc(60% - 30px);
  padding-bottom:  calc( 56.25% * 0.6 );
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .content-wrap {
  width: calc(40% + 30px);
  padding: 30px;
  box-sizing: border-box;
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .content-wrap h3 {
  color: #0069AE;
  font-size: 2.4em;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .content-wrap .teaser {
  font-size: 1.4em;
  line-height: 1.2em;
}


.who-we-are-detail-block {
  margin-bottom: 60px;
}

.who-we-are-detail-block > .sleeve {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


.who-we-are-detail-block .priorities-wrap {
  width: calc( 45% - 15px );
  box-sizing: border-box;
}

.who-we-are-detail-block .priorities-wrap h2 {
  color: #1C345C;
  font-size: 3em;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.who-we-are-detail-block .priorities-wrap h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.who-we-are-detail-block .priorities-wrap h3 a {
  display: inline-block;
  background-color: #00A5DA;
  padding: 5px 40px 5px 12px;
  border-radius: 10px;
  color: #FFFFFF;
}

.who-we-are-detail-block .priorities-wrap h3 a:hover {
  text-decoration: none;
}

.who-we-are-detail-block .priorities-wrap h3 a:after {
  content: '>';
  position: absolute;
  margin-left: 10px;
}

.who-we-are-detail-block .priorities-wrap h3 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.who-we-are-detail-block .priorities-wrap .teaser-wrap p {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 30px;
  padding-left: 12px;
}

.who-we-are-detail-block .background-wrap {
  width: calc( 55% - 15px );
  padding-left: 250px;
  box-sizing: border-box;
  background-size: 175px auto;
  background-repeat: no-repeat;
  background-position: left center;
}

.who-we-are-detail-block .background-wrap h2 {
  color: #1C345C;
  font-size: 2.4em;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.who-we-are-detail-block .background-wrap h3 {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.who-we-are-detail-block .background-wrap h3 a {
  display: inline-block;
}

.who-we-are-detail-block .background-wrap h3 a:hover {
  text-decoration: none;
}

.who-we-are-detail-block .background-wrap h3 a:after {
  content: '>';
  position: absolute;
  margin-left: 10px;
}

.who-we-are-detail-block .background-wrap h3 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.who-we-are-detail-block .background-wrap .teaser-wrap p {
  font-size: 1.2em;
  line-height: 1.2em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F0B750;
}


.who-we-are-scientific-committee-block {
  padding: 30px 0;
}

.who-we-are-scientific-committee-block h2 {
  margin-bottom: 30px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}


.who-we-are-history-block {
  background-color: #F1F1F1;
  padding: 30px 0;
}

.who-we-are-history-block h2 {
  margin-bottom: 30px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}


.who-we-are-board-block {
  background-color: #F1F1F1;
  padding: 30px 0;
}

.who-we-are-board-block > .page-sleeve {

}

.who-we-are-board-block h2 {
  margin-bottom: 30px;
  font-size: 2.0em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0069AE;
}

.who-we-are-board-block .board-member-wrap {
  overflow: hidden;
  margin-bottom: 30px;
}

.who-we-are-board-block .board-member-wrap .board-member-item {
  float: left; 
  width: calc(25% - (90px / 4));
  margin-right: 30px;
  margin-bottom: 30px;
}

.who-we-are-board-block .board-member-wrap .board-member-item:nth-child(4n+4) {
  margin-right: 0;
}

.who-we-are-board-block .board-member-wrap .board-member-item .image-wrap {
  border: 2px solid #F0B750;
  margin-bottom: 10px;
} 

.who-we-are-board-block .board-member-wrap .board-member-item h3 {
  color: #1C345C;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 2px;  
}

.who-we-are-board-block .board-member-wrap .board-member-item .job-title {
  color: #1C345C;
  font-size: 1.2em;
  line-height: 1.2em;  
}

.who-we-are-board-block .board-member-wrap .board-member-item-suffix {
  background-color: #F0B750;
  position: relative;
  padding-bottom: calc(25% - (90px / 4));
}

.who-we-are-board-block .board-member-wrap .board-member-item-suffix .sleeve {
  padding: 10px;  
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.who-we-are-board-block .board-member-wrap .board-member-item-suffix .sleeve li,
.who-we-are-board-block .board-member-wrap .board-member-item-suffix .sleeve p {
  font-size: 1.2em;
  line-height: 1.4em;
}

.who-we-are-board-block .board-member-wrap .board-member-item-suffix .sleeve ul {
  margin-bottom: 10px;
 padding-left: 15px;
}



.who-we-are-board-block .board-footer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.who-we-are-board-block .board-footer .label span {
  display: inline-block;
  background-color: #0069AE;
  border-radius: 10px;
  padding: 5px 15px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6em;
  line-height: 1.0em;  
  white-space: nowrap;
}

.who-we-are-board-block .board-footer .teaser-wrap {
  font-size: 1.4em;
  line-height: 1.2em; 
  padding-left: 30px;
}



.why-we-are-needed-detail-block {
  margin-bottom: 60px;
}

.why-we-are-needed-detail-block > .sleeve {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


.why-we-are-needed-detail-block .main-content {
  width: calc( 45% - 15px );
  box-sizing: border-box;
}


.why-we-are-needed-detail-block .main-content p {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 30px;
  padding-left: 12px
}

.why-we-are-needed-detail-block .main-content h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #00A5DA;
  padding: 5px 40px 5px 12px;
  border-radius: 10px;
  color: #1C345C;
}


.why-we-are-needed-detail-block .sidebar {
  width: calc( 55% - 15px );
  padding-left: 250px;
  box-sizing: border-box;
  background-size: 175px auto;
  background-repeat: no-repeat;
  background-position: left center;
}

.why-we-are-needed-detail-block .sidebar h2 {
  color: #1C345C;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-we-are-needed-detail-block .sidebar h3 {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.why-we-are-needed-detail-block .sidebar h3 a {
  display: inline-block;
}

.why-we-are-needed-detail-block .sidebar  h3 a:hover {
  text-decoration: none;
}

.why-we-are-needed-detail-block .sidebar h3 a:after {
  content: '>';
  position: absolute;
  margin-left: 10px;
}

.why-we-are-needed-detail-block .sidebar h3 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.why-we-are-needed-detail-block .sidebar .teaser-wrap p {
  font-size: 1.2em;
  line-height: 1.2em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F0B750;
}

.resource-section-wrap .resource-section-item {
  margin-bottom: 60px;
}

.resource-section-wrap .resource-section-item h2 {
  font-size: 2.8em;
  line-height: 1.0em;
  color: #F0B750;
}

.resource-section-wrap .resource-section-item .intro {
  margin-bottom: 15px;
}

.resource-section-wrap .resource-section-item .resource-wrap {
  padding-left: 45px;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item {
  
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
  line-height: 1.2em;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .teaser {
  margin-bottom: 10px;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .teaser p {
  font-size: 1.1em;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .teaser p:last-child {
  margin-bottom: 0;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .download-link {
  font-size: 1.0em;
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .download-link a {
  display: inline-block;  
  padding: 0 5px 0 0;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .download-link a:after {
  content: '>';
  color: #0069AE;
  position: absolute;
  margin-left: 10px;
}

.resource-section-wrap .resource-section-item .resource-wrap .resource-item .download-link a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}




.members-landing-detail-block {
  margin-bottom: 60px;
}

.members-landing-detail-block > .sleeve {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}


.members-landing-detail-block .sub-sections-wrap {
  width: calc( 45% - 15px );
  box-sizing: border-box;
}

.members-landing-detail-block .sub-sections-wrap h2 {
  color: #1C345C;
  font-size: 3em;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.members-landing-detail-block .sub-sections-wrap h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.members-landing-detail-block .sub-sections-wrap h3 a {
  display: inline-block;
  background-color: #00A5DA;
  padding: 5px 40px 5px 12px;
  border-radius: 10px;
  color: #FFFFFF;
}

.members-landing-detail-block .sub-sections-wrap h3 a:hover {
  text-decoration: none;
}

.members-landing-detail-block .sub-sections-wrap h3 a:after {
  content: '>';
  position: absolute;
  margin-left: 10px;
}

.members-landing-detail-block .sub-sections-wrap h3 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.members-landing-detail-block .sub-sections-wrap .teaser-wrap p {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 30px;
  padding-left: 12px;
}

.members-landing-detail-block .sidebar-news {
  width: calc( 55% - 15px );
  padding-left: 250px;
  box-sizing: border-box;
  background-size: 175px auto;
  background-repeat: no-repeat;
  background-position: left top;
}


.pagination {
  
}

.pagination .page-numbers {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #F0C40D;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-right: 5px;
}

.pagination .page-numbers:hover {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #F0C40D;
}

.members-container {
  width: calc(60% - 30px);
}

.members-container .country-list-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 45px;
}

.members-container .country-list-wrap .country-list-item {
  border-bottom: 1px solid #1C345C;
  padding: 10px;
  width: calc(50% - 15px);
  box-sizing: border-box;
}

.members-container .country-list-wrap .country-list-item h3 {
  font-size: 1.6em;
  line-height: 1.2em;
}

.members-container .country-list-wrap .country-list-item.active,
.members-container .country-list-wrap .country-list-item:hover {
  background-color: #F0C40D;
}

.members-container .country-list-wrap .country-list-item h3 a:hover {
  text-decoration: none;
}

.members-container .country-list-wrap .country-list-item h3 a:after {
  content: '>';
  color: #0069AE;
  position: absolute;
  margin-left: 10px;
}

.members-container .country-list-wrap .country-list-item h3 a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}



.members-container .member-list-wrap {
  
}


.members-container .member-list-wrap .member-list-item {
  margin-bottom: 30px;
  background-color: #F0C40D; 
  padding: 30px;
  border-radius: 30px;
}

.members-container .member-list-wrap .member-list-item h3 {
  font-size: 1.6em; 
  line-height: 1.2em;
  margin-bottom: 10px;
}

.members-container .member-list-wrap .member-list-item .meta-item {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  font-size: 1.1em;
  line-height: 1.2em;
}

.members-container .member-list-wrap .member-list-item .meta-item .label {
  width: 150px;
}

.members-container .member-list-wrap .member-list-item .meta-item .value {
  flex: 1;
}



.event-wrap {

}

.event-wrap .event-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #F0B750;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}


.event-wrap .event-item .date-wrap {
  width: 100px;
  flex-shrink: 1;
}

.event-wrap .event-item .content-wrap {
  flex: 1;
}

.event-wrap .event-item .content-wrap .meta-item {
  margin-bottom: 5px;
}

.event-wrap .event-item .content-wrap .meta-item a {
  padding-right: 10px;
  display: inline-block;
  position: relative;
}

.event-wrap .event-item .content-wrap .meta-item a:after {
  content: '>';
  position: absolute;
  right: 0px;
}

.event-wrap .event-item .content-wrap .meta-item a:hover:after {
  animation-name: call-to-action-arrow-after;
  animation-duration: 1s;
}

.event-wrap .event-item .date-wrap .sleeve {
  background-color: #F0B750;
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
  text-align: center;
}

.event-wrap .event-item .date-wrap .sleeve .date span {
  display: block; 
}

.event-wrap .event-item .date-wrap .sleeve .label {
  margin: 5px 0;
  color: #FFFFFF;
}



.contact-details-wrap {
  font-size: 1.4em;
  line-height: 1.4em;
}

.contact-details-wrap .contact-details-section {
  margin-bottom: 30px;
}

.contact-details-wrap .contact-details-section .contact-details-item {
  margin-bottom: 5px;
}

.contact-details-wrap .contact-details-section .contact-details-item .label {
  font-weight: bold; 
  color: #00A5DA;
  padding-right: 10px;
}



.search-result-wrap {

}


.search-result-wrap .search-result-item {
  padding: 30px 0;
  border-bottom: 2px solid #00A5DA;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.search-result-wrap .search-result-item:last-child {
  border-bottom: 0;
}

.search-result-wrap .search-result-item a,
.search-result-wrap .search-result-item a:hover {
  text-decoration: none;
}

.search-result-wrap .search-result-item .image-wrap {
  width: 200px;
}

.search-result-wrap .search-result-item .content-wrap {
  width: calc( 100% - 230px );
}

.search-result-wrap .search-result-item .content-wrap h3 {
  color: #1C345C;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.search-result-wrap .search-result-item .content-wrap .slug {
  color: #00A5DA;
  margin-bottom: 15px;
  font-size: 1.2em;
  line-height: 1.2em;
}

.search-result-wrap .search-result-item .content-wrap .teaser {
  font-size: 1.2em;
  line-height: 1.2em;
}


.email-subscribe-form .field-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.2em;
  line-height: 1.0em;
}


.email-subscribe-form .field-wrap label {
  padding: 12px 20px 10px 20px;
  color: #1C345C;
}

.email-subscribe-form .field-wrap .input-wrap-email {
  flex: 1;
}

.email-subscribe-form .field-wrap .input-wrap-email input {
  padding: 10px 20px;
  border: 0;
}

.email-subscribe-form .field-wrap .input-wrap-email input:focus::-webkit-input-placeholder { color: transparent; }
.email-subscribe-form .field-wrap .input-wrap-email input:focus:-ms-input-placeholder { color: transparent; }
.email-subscribe-form .field-wrap .input-wrap-email input:focus::placeholder { color: transparent; }


.email-subscribe-form .field-wrap .input-wrap-button button {
  background-color: #F0B750;
  padding: 10px 20px;
  border: 0;
}

.sidebar-email-subscribe-form .email-subscribe-form .field-wrap .input-wrap-email input {
  padding: 5px 0;
}

.sidebar-email-subscribe-form .email-subscribe-form .field-wrap label {
  padding: 12px 0px 10px 0px;
}

.newsletter-wrap {

}

.newsletter-wrap .newsletter-item {
  padding-bottom: 15px;
  margin-bottom: 15px;  
  border-bottom: 1px solid #F0B750;
}

.newsletter-wrap .newsletter-item h3 {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 0;
}


.twitter-wrap {
  padding: 15px;
  position: absolute;
  top: 45px;
  bottom: 20px;
  left: 0;
  right: 0; 
  overflow-y: scroll;
}

.twitter-wrap .twitter-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F0B750;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.twitter-wrap .twitter-item .image-wrap {
  width: 50px;
}

.twitter-wrap .twitter-item .content-wrap {
  width: calc( 100% - 75px ); 
  font-size: 1.1em;
  line-height: 1.4em;
}


.page-id-1019 .main-content img {
  display: block;
  margin: 30px 0;
}


.gravity-theme input[type=radio] {
  -webkit-appearance: radio;
  margin: 0;
}

.gravity-theme h3 {
  margin-top: 50px;
  color: #0069AE;
}

.gravity-theme .gfield_radio .gchoice {
  margin-bottom: 10px;
}

.gravity-theme .gfield_radio .gchoice label {
  padding-left: 10px;
}

.gravity-theme .gfield--type-checkbox .gfield_description {
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: normal;
}

.gravity-theme .gfield--type-html p {
  font-size: 14px;
  line-hieight: 18px;
  font-weight: normal;
}

.gravity-theme input[type=submit] {
  background-color: #F0B750;
  padding: 10px 20px;
  border: 0;
}

.cky-modal p {
  text-align: left;
}

@media screen and (max-width: 600px) {

  .page-sleeve {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-background {
    top: 0;
  }


  #header {
    overflow: hidden;
    margin-bottom: 30px;
  }

  #header .site-branding {
    top: 0;
    margin: 10px 15px 0 0;
    position: relative;
    float: right;
    z-index: 100; 
  }
 
  #header .site-branding .site-title a {
    background-image: url(img/main-logo-blue.svg);
    /*background-image: url(img/main-logo-anniversary-blue.svg);*/

  }

  #header .site-branding .site-title a span {
    width: 200px;
    height: 66px;
  }

  #nav-wrap {

  }

  #nav-wrap .sleeve {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;   
    position: fixed;
    left: 0;  
    top: 0;
    right: 0;
    background-color: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    background-image: url(img/header-curve.svg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 100px;
  }


  body.with-nav #nav-wrap .sleeve { 
    opacity: 1;
    pointer-events: initial;
  }

  #nav-wrap .sleeve .toolbar  {
    order: 10;
    margin: 0;
    padding: 15px;
  }

  #nav-wrap .sleeve .main-nav {
    margin-bottom: 0;
    padding: 15px;
  }

  #nav-wrap .sleeve .main-nav ul li {
    display: block;
    text-align: center;
    margin: 0;
  }

  #nav-wrap .sleeve .main-nav ul li a {
    border: 0;
    margin-bottom: 5px;
  }

  #nav-wrap .menu-toggle {
    display: block;
    z-index: 100; 
    position: absolute;
    left: 15px;
    top: 15px;
    width: 30px;
    height: 20px;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    cursor: pointer;
  }

  #nav-wrap .menu-toggle:before {
    content: '';
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;  
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
  }

  #header .toolbar .action-links-wrap { 
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  #header .toolbar .social-links-wrap { 
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  #header .toolbar .search-form-wrap { 
    display: block;
    text-align: center;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 191px;
  }

  .home-video-block .multimedia-wrap .multimedia-item {
    width: 100%;
  }

  .home-news-block .news-wrap .news-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .home-news-block .news-wrap .news-item .image-wrap {
    width: 30%;
  }

  .home-news-block .news-wrap .news-item .content-wrap {
    width: calc( 70% - 15px );
  }


  .home-news-block .featured-news .image-wrap {
    width: 100%;
  }

  .home-news-block .featured-news .content-wrap {
    width: 100%;
    padding: 30px;
  }

  .home-connect-block .connect-wrap .connect-item {
    width: 100%;
    margin-bottom: 15px;
  }

  .home-intro-block  {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 40px;
  }

  .home-intro-block > .sleeve {
    transform: translateY(-30px);
  }

  .home-intro-block .content-wrap .teaser-wrap,
  .home-intro-block .content-wrap .quote-wrap,
  .home-intro-block .content-wrap .call-to-action-wrap {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }

  .entry-content .main-content {
    width: 100%;
    margin-bottom: 45px;
  }

  .entry-content .sidebar {
    width: 100%;
  }

  #footer .page-sleeve {
    padding-bottom: 150px;
    background-position: 15px bottom;
  }



  .section-landing-header .entry-title {
    font-size: 1.8em;
    padding-right: 30px;
    padding-left: 30px;
    max-width: calc(100% - 90px);
  }

  .section-landing-header .page-title {
    font-size: 2.4em;
    line-height: 1.2em;
  }

  .section-landing-header > .sleeve {
    padding: 0;
    overflow: hidden;
  }

  .section-landing-header .featured-item {
    min-height: 0;
    
  }

  .section-landing-header.without-image .featured-item {
    padding-top: 45px;
  }

  .section-landing-header .featured-item .content-wrap {
    width: 100%;
    padding: 30px 30px 15px 30px;
  }  

  .section-landing-header .featured-item .content-wrap .main-quote {
    font-size: 1.8em;
    line-height: 1.2em;
  }  

  .section-landing-header .featured-item .image-wrap {
    width: 100%;
    order: -1;
    position: static;
    transform: none;
    border-radius: 0;
  }  

  .section-intro-block > .sleeve {

  }

  .section-intro-block > .page-sleeve > .sleeve {
    display: block;
  }

  .section-intro-block .image-wrap,
  .section-intro-block .content-wrap,
  .section-intro-block .quote-wrap {
    width: 100%;
  }

  .section-intro-block .quote-wrap {
    position: static;
  }

  .section-intro-block .quote-wrap .sleeve {
    width: initial;
  }

  .who-we-are-board-block .board-member-wrap .board-member-item-suffix {
    padding-bottom: 0;
    background-color: transparent;
  }

  .who-we-are-board-block .board-member-wrap .board-member-item-suffix .sleeve {
    position: static;
    padding: 0;
  }

  .who-we-are-detail-block .priorities-wrap {
    width: 100%;
    padding-left: 0;
    background-position: right top;
    background-size: 50px auto;
    box-sizing: border-box;
    margin-bottom: 45px;
  }

  .who-we-are-detail-block .priorities-wrap h3 {
    font-size: 1.3em;
  }

  .who-we-are-detail-block .background-wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 100px;
    background-position: right top;
    background-size: 90px auto;
    box-sizing: border-box;
  }

  .who-we-are-board-block .board-footer {
    display: block;
  }

  .who-we-are-board-block .board-footer .label {
    margin-bottom: 15px;
  }
 
  .who-we-are-board-block .board-footer .teaser-wrap {
    padding-left: 0;
  }

  .who-we-are-board-block .board-member-wrap .board-member-item {
    width: calc(50% - (30px / 2));
  }
 
  .who-we-are-board-block .board-member-wrap .board-member-item:nth-child(2n+2) {
    margin-right: 0;
  }

  .why-we-are-needed-detail-block .sidebar {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background-image: none !important;
  }

  .members-landing-detail-block .sub-sections-wrap {
    width: 100%;
  }

  .members-landing-detail-block .sidebar {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background-image: none !important;
  }

  .post-page-news .entry-content .news-wrap .news-item .content-wrap {
    width: 100%;
  }

  .email-subscribe-form .field-wrap label {
    line-height: 1.3em;
  }

  body.single-news .section-landing-header .featured-item .image-wrap {
    width: 100%;
  }

  body.single-news .section-landing-header .featured-item .content-wrap {
    width: 100%;
  }


  body.single-news .section-landing-header .featured-item .content-wrap .headline {
    font-size: 2.2em;
    line-height: 1.2em;
  }

  .post-page-voices .entry-content .voice-wrap .voice-item {
    width: 100%;
  }

  .post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .video-wrap {
    width: 100%;
    padding-bottom: 56.25%;
  }

  .post-page-voices .entry-content .featured-voice-wrap .featured-voice-item .content-wrap {
    width: 100%;
  }

  .members-container {
    width: 100%;
  }

  .members-container .country-list-wrap .country-list-item {
    width: 100%;
  }

  .home-intro-block .content-wrap .quote-wrap .sleeve {
    margin-top: 100px;
  }

  .twitter-wrap {
    position: static;
    height: 300px;
 

  }

  .home-intro-block-2 > .sleeve .top-content-wrap {
    flex-direction: column;
    transform: translateY(-60px);
  }  

  .home-intro-block-2 > .sleeve .content-wrap .carousel-images-wrap {
     order: -1;
     width: 100%;
     padding-bottom: 100%;
     transform: none;
  }

  .home-intro-block-2 > .sleeve .bottom-content-wrap {
    flex-direction: column;
    margin-top: 15px;
  }  

  .home-intro-block-2 .bottom-content-wrap .image-wrap {
     width: 100%;
     margin-right: auto;
  }

  .home-intro-block-2 .bottom-content-wrap .quote-wrap {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .home-intro-block-2 .content-wrap .quote-wrap .sleeve:before {
    left: 30px;
    transform: rotate(0deg) scaleX(-1);
    top: -80px;
  }

  .home-intro-block-2 .content-wrap .quote-wrap .sleeve span {
    display: block;
    z-index: 1;
    position: relative;
  }

}