@font-face {
  font-family: 'sohne';
  src: local('sohne-buch'),
    url('../fonts/sohne-buch.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'sohne';
  src: local('sohne-halbfett'),
    url('../fonts/sohne-halbfett.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}


/* BASE */
*,
*:before,
*:after {
  box-sizing: inherit;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  box-sizing: border-box;
  margin: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'sohne', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #484c4f;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow: auto;
}

body *::-moz-selection {
  color: #fff;
  background: #2c3f5e;
  -webkit-text-fill-color: #fff;
}

body *::selection {
  color: #fff;
  background: #2c3f5e;
  -webkit-text-fill-color: #fff;
}

input[type=text],
input[type=email],
section select {
  background-color: transparent;
  font-family: 'sohne', sans-serif;
  box-shadow: none;
  color:#2c3f5e;
}
input[type="text"]:focus{
background: transparent;
border: none;}

section,
header,
footer {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
}

.container {
  padding: 0 40px;
}

.container_full {
  max-width: 100%;
  width: 100%;
  margin: 0 40px;
}

.flex-container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

strong {
  font-weight: 600;
}

ul,
ol {
  list-style: none;
  margin-top: 15px;
  padding: 0;
}
ul li,
ol li {
  font-size: 18px;
  line-height: 30px;
}

select,
textarea,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.cc-window.cc-floating,
.cc-banner .cc-message {
  width: 100% !important;
  max-width: 100% !important;
}

h1 {
  font-family: 'sohne', sans-serif;
  font-size: 120px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  margin-top: 0;
}

h2 {
  font-family: 'sohne', sans-serif;
  font-size: 48px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
}

h3 {
  font-family:'sohne', sans-serif;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
}

h4 {
  font-family: 'sohne', sans-serif;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #2c3f5e;
}
h5 {
  font-family: 'sohne', sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}
h6 {
  font-family: 'sohne', sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
}

h7 {
  font-family: 'sohne', sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-transform: uppercase;
}


p,
li {
  font-family: 'sohne', sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #2c3f5e;
}

a {
  font-family:'sohne', sans-serif;
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #2c3f5e;
  text-decoration: none;
  text-transform: uppercase;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 44px;
    line-height: 1.14;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 18px;
    line-height: 1.33;
  }
  h6 {
    font-size: 13px;
  }
  p {
    font-size: 14px;
  }
  .flex-container {
    flex-direction: column-reverse;
  }
  .container{
    padding:0 20px;
  }
}

/* Animations & Keyframes */
.js-reveal {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
 0% {
    opacity: 0;
  }
  25%{
    opacity: 0.3;
  }
  50%{
    opacity: 0.6;
  }
  75%{
    opacity: 0.8;
  }
  100%{
    opacity: 1;
  }
}
@keyframes fadeIn {
   0% {
    opacity: 0;
  }
  25%{
    opacity:0.3;
  }
  50%{
    opacity: 0.6;
  }
  75%{
    opacity: 0.8;
  }
  100%{
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100%{
    opacity: 0.5;
  }
}
@keyframes fadeOut {
 0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100%{
    opacity: 0.5;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.transition {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  position: relative;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  transition: all 0.8s ease 0s;
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  transition: all 0.8s ease 0s;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  transition: all 0.8s ease 0s;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  transition: all 0.8s ease 0s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  transition: all 0.8s ease 0s;
}

header {
  background: url("../img/herobg.jpg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header h1.logo {
  font-size: 40px;
  position: fixed;
  top: 40px;
  left: 40px;
  opacity: 0;
}

header h1.logo.show {
  color: #fff;
  opacity: 1;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  transition: all 0.8s ease 0s;
  mix-blend-mode: difference;
}
header .hero-container {
  max-width: 948px;
  margin-left: auto;
  height: 100vh;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0 75px 40px;
}
header .hero-container h5 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
}
header .hero-container .logo-full {
  font-weight: bold;
  color: #fff;
  margin: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}
header .hero-container .logo-full.hidden {
  opacity: 0;
}

header .hero-container .logo-full .read-more {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
header a.arrow-down {
  width: 50px;
  position: absolute;
  left: 40px;
  bottom: 75px;
  opacity: 1;
}
header a.arrow-down.hidden {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  header a.arrow-down {
    position: absolute;
    right: 20px;
    left: unset;
    bottom: 70px;
    opacity: 1;
    width: 30px;
  }
   header .hero-container{
    padding: 40px 20px 75px 20px;
   }
  
  header .hero-container h1{
    position: absolute;
    top:40%;
    transform: translateY(50%);
  }
}

main {
  overflow: hidden;
  background-image: linear-gradient(
    to bottom,
    #e1e1e1 0%,
    rgba(225, 225, 225, 0) 100%
  );
}

/*** Intro Section ***/
main #intro {
  padding: 150px 40px;
}
main #intro .intro {
  width: calc(100% / 2);
  background-color: #fff;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 80px 100px;
}
main #intro .intro h3 {
  color: #2c3f5e;
  text-transform: uppercase;
}
main #intro .bio-image {
  width: 50%;
  background-size: cover;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
}
main #intro .intro .highlights {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
}

main #intro .intro .highlights .item h3{
  color: #00aeef !important;
  margin-top:0;
  margin-bottom:8px;
}
main #intro .intro .highlights .item h7 {
  color: #00aeef !important;
}

.Partner-highlights {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.saf-logo img{
  max-width:150px;
}
@media screen and (max-width: 1200px) {
  main #intro {
    padding: 100px 20px 60px 20px;
  }
  main #intro .intro {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  
  main  #intro .flex-container {
    flex-direction: column-reverse;
  }
  main #intro .intro {
    width: 100%;
    border-top-left-radius: unset;
    border-bottom-right-radius: 16px;
  }
  main #intro .bio-image {
    width: 100%;
    border-top-left-radius: 16px;
    border-bottom-right-radius: unset;
  }
  main #intro .intro .highlights {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top:0;
  }
  /*main #intro .intro .highlights .item h3{
    margin-top:10px;
  }*/
  .Partner-highlights{
    justify-content: space-between;
    flex-direction: row-reverse;
  }
/*  .saf-logo {
    
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
  }*/

}
@media screen and (max-width: 408px) {
  .saf-logo img{max-width:100px;}

}
#about .about {
  width: 70%;
  padding-bottom:100px;
}
@media screen and (max-width: 1024px) {
  #about .about {
  width: 100%;
  padding-bottom:60px;
}
#about .about h4{
  margin-bottom:0;
}

}

/* Genral logo container style  */
.logo-container {
  border-top: 1px solid rgba(44, 63, 94, 0.3);
  border-bottom: 1px solid rgba(44, 63, 94, 0.3);
  margin-bottom: 50px;
}
.thumbnail img {
  max-width: 209px;
  padding:40px 20px;
}


.logo-inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  margin: 0 40px;
  justify-content: flex-start;
  border-right: 1px solid rgba(44, 63, 94, 0.3);
  border-left: 1px solid rgba(44, 63, 94, 0.3);
}
.
section.ventures {
  margin: 90px 0;
}
section.ventures h6 {
  padding: 0 40px;
  text-transform: uppercase;
  color: #2c3f5e;
  font-size: 12px;
}
/*** current venture Section - the two columns style ***/
.current-venture {
  width: calc(100% / 3);
}
.current-venture:nth-child(1), .current-venture:nth-child(2), .current-venture:nth-child(4), .current-venture:nth-child(5){
  border-right: 1px solid rgba(44, 63, 94, 0.3);
}

.current-venture:nth-child(1),
.current-venture:nth-child(2),
.current-venture:nth-child(3) {
  border-bottom: 1px solid rgba(44, 63, 94, 0.3);
}

/*.current-venture:not(:last-of-type) {
  border-right: 1px solid rgba(44, 63, 94, 0.3);
}*/

/*** past venture section - the three columns style ***/

.past-venture {
  width: calc(100% / 2);
  position: relative;
}

/*.past-venture:not(:nth-of-type(3n)) {
  border-right: 1px solid rgba(44, 63, 94, 0.3);
}*/

.past-venture:nth-child(1), .past-venture:nth-child(3){
  border-right: 1px solid rgba(44, 63, 94, 0.3);
}

/*.past-venture:nth-child(1),
.past-venture:nth-child(2),
.past-venture:nth-child(3) {
  border-bottom: 1px solid rgba(44, 63, 94, 0.3);
}*/

.past-venture:nth-child(1),
.past-venture:nth-child(2) {
  border-bottom: 1px solid rgba(44, 63, 94, 0.3);
}

/*.past-venture:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -50px;
  width: 50px;
  height: 1px;
  background-color: rgba(44, 63, 94, 0.3);
}*/

/* plus sign added for the past venture*/
.past-venture:nth-child(1) span::after {
  content: url(../../source/img/plus.svg);
  position: absolute;
  bottom: -14px;
  right: -8px;
}

.past-venture:nth-child(2) span::after {
  content: url(../../source/img/plus.svg);
  position: absolute;
  bottom: -14px;
  right: -8px;
}
.past-venture:nth-child(3) span::before {
  content: url(../../source/img/plus.svg);
  position: absolute;
  bottom: -14px;
  right: -8px;
}
.past-venture:nth-child(4) span::before {
  content: url(../../source/img/plus.svg);
  position: absolute;
  top: -11px;
  left: -8px;
}

.past-venture:nth-of-type(3)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -50px;
  width: 50px;
  height: 1px;
  background-color: rgba(44, 63, 94, 0.3);
}

@media screen and (max-width: 1024px) {
  .logo-inner-container {
    margin: 0 20px;
  }
  .thumbnail img{
    max-width:180px;
    padding: 32px 20px;
  }
  section.ventures h6{
    padding:0 20px;
  }
 .past-venture {
    width: calc(100% / 2);
  }
  .past-venture:nth-of-type(1) {
    border-right: 1px solid rgba(44, 63, 94, 0.3);
  }
  .past-venture:nth-of-type(3) {
    border-right: 1px solid rgba(44, 63, 94, 0.3);
  }
  .past-venture:nth-of-type(4) {
    border-right: none;
    border-bottom: 1px solid rgba(44, 63, 94, 0.3);
  }
  .past-venture:nth-of-type(2) {
    border-right: none;
  }

  .past-venture:nth-of-type(1)::before {
    position: absolute;
    bottom: -1px;
    left: -50px;
  }
  .past-venture:nth-of-type(2)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -50px;
    width: 50px;
    height: 1px;
    background-color: rgba(44, 63, 94, 0.3);
  }
  .past-venture:nth-of-type(3)::after {
    position: absolute;
    bottom: -1px;
    left: -50px;
  }
  .past-venture:nth-of-type(4)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -50px;
    width: 50px;
    height: 1px;
    background-color: rgba(44, 63, 94, 0.3);
  }

  .past-venture:nth-child(1) span::after {
    content: none;
  }
  .past-venture:nth-child(2) span::after {
    content: none;
  }
  .past-venture:nth-child(3) span::before {
    content: none;
  }
  .past-venture:nth-child(4) span::before {
    content: none;
  }
}


/*** organization  Section - a full column and three columns style ***/
#organizations {
  padding-top: 70px;
}
.organization-full {
  width: 100%;
/*border-bottom: 1px solid rgba(44, 63, 94, 0.3);*/
}
.organization-full .thumbnail img{
  max-width:420px !important;
}
.organizations {
  width: calc(100% / 3);
  position: relative;
}
.organizations:not(:nth-of-type(3n + 1)) {
  border-right: 1px solid rgba(44, 63, 94, 0.3);
}
.organizations:nth-child(1),
.organizations:nth-child(2),
.organizations:nth-child(3),
.organizations:nth-child(4),
.organizations:nth-child(5),
.organizations:nth-child(6),
.organizations:nth-child(7) {
  border-bottom: 1px solid rgba(44, 63, 94, 0.3);
}

.organizations span::after {
  content: url(../../source/img/plus.svg);
  position: absolute;
  top: -11px;
  left: -8px;
}
.organizations span::before {
  content: url(../../source/img/plus.svg);
  position: absolute;
  top: -11px;
  right: -8px;
}
.organizations:nth-of-type(2)::after,
.organizations:nth-of-type(5)::after,
.organizations:nth-of-type(8)::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -50px;
  width: 50px;
  height: 1px;
  background-color: rgba(44, 63, 94, 0.3);
}

.organizations:nth-of-type(4)::after,
.organizations:nth-of-type(7)::after,
.organizations:nth-of-type(10)::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -50px;
  width: 50px;
  height: 1px;
  background-color: rgba(44, 63, 94, 0.3);
}

@media screen and (max-width: 1024px) {
  .organizations {
    width: calc(100% / 2);
  }
  .organizations span::after {
    content: none;
  }
  .organizations span::before {
    content: none;
  }
  .organizations:not(:nth-of-type(2n + 1)) {
    border-right: 1px solid rgba(44, 63, 94, 0.3);
  }
  .organizations:not(:nth-of-type(2n)) {
    border-right: unset;
  }
  .organizations:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -50px;
    width: 50px;
    height: 1px;
    background-color: rgba(44, 63, 94, 0.3);
  }
  .organizations:nth-of-type(5)::after {
    left: unset;
  }
  .organizations:nth-of-type(odd)::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -50px;
    width: 50px;
    height: 1px;
    background-color: rgba(44, 63, 94, 0.3);
  }
}

/*** Popup window style ***/
.fa-share-square{margin-left:20px;}
.bmcl-popup-1 {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box; 
}
.source-popup{
  align-items: flex-start;
}
.logo-container .current-venture .thumbnail:hover,
.logo-container .past-venture .thumbnail:hover
{
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.bmcl-popup-1:not(#bmcl) .popup-window.show {
  opacity: 1;
  display: flex;
}
.bmcl-popup-1:not(#bmcl) .popup-window {
  padding: 10px;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-dialog {
  overflow: auto;
  border-radius: 8px;
  background-color: #fff;
  margin: auto;
  padding: 0;
  max-width: 700px;
  height: 70vh;
  width: 100%;
  position: relative;
  animation-name: fadeIn;
  animation-duration: 0.6s;
}

.bmcl-popup-1:not(#bmcl) .popup-window .popup-source-dialog {
  overflow: auto;
  border-radius: 8px;
  background-color: #fff;
  margin: auto;
  padding: 0;
  max-width: 700px;
  height: auto;
  width: 100%;
  position: relative;
  animation-name: fadeIn;
  animation-duration: 0.6s;
}


.popup-close{
  position: absolute;
  top:20px;
  right:40px;
  width:20px;
  cursor: pointer;
}


.bmcl-popup-1:not(#bmcl) .popup-window .popup-close:hover {
  opacity: 0.8;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-close .fa {
  line-height: 1;
  font-weight: 500;
  font-size: 24px;
  color: #000;
}

.bmcl-popup-1:not(#bmcl) .popup-window .popup-content .visit-site a {
  color: #2c3f5e;
  display: inline-block;
  margin-bottom:40px;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-content h5 {
  color: #2c3f5e;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-content {
  width: 100%;
  height: 100%;
  padding: 48px;
}
.bmcl-popup-1:not(#bmcl) .popup-window .source p,
.bmcl-popup-1:not(#bmcl) .popup-window .source {
  color:#000000;
}

@media (max-height: 480px) and (orientation: landscape) {
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-content {
    grid-template-rows: 100px 1fr;
  }
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-header {
  padding: 15px;
  border: 1px solid rgba(44, 63, 94, 0.3);
  border-radius: 16px;
  margin-top:40px;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-header .popuplogo {
  margin: auto;
  border-radius: 16px;
  height: auto;
  display: block;
  padding: 40px;
}
/*@media (max-width: 480px) {
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-header .popuplogo {
    width: 150px;
  }
}*/
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body {
  padding: 45px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-height: 480px) and (orientation: landscape) {
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-body {
    padding: 15px 15px;
  }
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body h2,
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body h3 {
  max-width: 300px;
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: center;
  color: #000;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body p {
  max-width: 360px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-align: center;
  color: #000;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body h2,
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body h3,
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body p {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-height: 480px) and (orientation: landscape) {
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-body h2,
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-body h3,
  .bmcl-popup-1:not(#bmcl) .popup-window .popup-body p {
    max-width: 100%;
  }
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body button,
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body .btn {
  cursor: pointer;
  width: 150px;
  height: 46px;
  background-color: #304dca;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.23px;
  text-align: center;
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body button:hover,
.bmcl-popup-1:not(#bmcl) .popup-window .popup-body .btn:hover {
  background-color: #0a29b6;
}

@media screen and (max-width: 1024px) {

.bmcl-popup-1:not(#bmcl) .popup-window .popup-content{
  padding:36px 30px;
}

.bmcl-popup-1:not(#bmcl) .popup-window .popup-dialog{
  height:70vh;
}
}

/*** value section ***/
section#value {
  background-image: linear-gradient(
    to bottom,
    #2c3f5e 100%,
    rgba(44, 63, 94, 0) 75%,
    rgba(44, 63, 94, 0) 25%,
    #2c3f5e 0%
  );
}
section#value .value {
  padding: 100px 40px;
  margin-top: 150px;
}
/*section#value .flex-container{
  gap:20px;
}*/
section#value .value h4 {
  color: #fff;
}
section#value .value h2 {
  color: #fff;
}
section#value .value .left {
  width: 50%;
}
section#value .value .right {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  section#value .value{
    padding:90px 20px 40px 20px;
  }
  section#value .value h4{margin-top:0;}
  section#value .flex-container{
    flex-direction: column;
  }
  section#value .value .right{
    width:100%;
  }
   section#value .value .left{
    width:100%;
  }

}
/*** infographic section ***/
#infographic {
  position: relative;
  background-image: url(../img/Infographic-slide-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
    background-attachment: fixed;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-bottom:70px;
}
#infographic.chart-two {
  background-image: url(../img/Infographic-slide-2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.left-column {
  flex-basis: 50%;
  padding: 0 40px;
  display: flex;
/*  align-items: center;*/
  flex-direction: column;
  justify-content: center;
}

#sidebar-pin {
  flex-basis: 50%;
  /*  position: sticky;
  top: 0;*/
/*  padding: 0 40px;*/
  height: 100vh;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
}
.right-column {
  flex-basis: 50%;
}
.right-column h6 {
  color: #ffc700;
  font-size: 18px;
  text-transform: uppercase;
}
.right-column p{
  color: #fff;
}

.text-block {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  max-width: 430px;
  gap:40px;
}
.text-block h5 {
  color: #fff;
  text-transform: uppercase;
  margin:0;
}

.text-block p {
  color: #fff;
  margin:0;

}
.text-block h6 {
  color: #00aeef;
  font-weight: bold;
  margin:0;
}
.text-block h7{
  color:#ffffff;
  margin-top: 40px;
  cursor: pointer;
  margin:0;

}
.charts {
  height: 100vh;
  position: absolute;
  opacity: 0;
  padding:0 40px 0 0;
  display: flex;
  align-items:center;
}
#sidebar-pin.gspacer {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
}

@media screen and (max-width: 1024px) {
  section#infographic {
    display: none;
    visibility: hidden;
  }
}

/* Mobile Inforgraphic section */
#mobile-infographic{
  display:none;
}
@media screen and (max-width: 1024px) {
  #mobile-infographic{
    display: block;
  }
  .mobile-text-block {
    height: auto;
    max-width:100%;
  }
  .mobile-text-block h7{
    color:#fff;
    text-align: left;
  }
.text-block1,
.text-block2{
  padding:20px;
}
.text-block1{
  background-image: url(../img/Infographic-slide-2-mobile.png);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #2c3f5e
}
.text-block2{
  background-image: url(../img/Infographic-slide-1-mobile.png);
  padding-bottom:50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #2c3f5e

}

.text-block1 h5,
.text-block1 p{
  color:#fff;
}
.text-block1 h6{
  color:#00AEEF;
}
.text-block2 h5,
.text-block2 p,
.text-block2 h7{
  color:#fff;


}
.mobile-charts h6 {
  color: #fff;
  text-transform: uppercase;
}
.mobile-charts p{
  color:#fff;
}
.mobile-charts{
 background-image: linear-gradient( to bottom, #2c3f5e 100%, rgba(44, 63, 94, 0) 75%, rgba(44, 63, 94, 0) 25%, #2c3f5e 0% );
 padding:50px 20px;
}
}
/*** giving back section ***/
#giving-back {
  background-image: linear-gradient(
    to bottom,
    rgba(225, 225, 225, 0) 7%,
    #e1e1e1 48%);
  padding-top: 100px;
  
}
#giving-back .flex-container{
  justify-content: space-between;
  gap:60px;
}
#giving-back h2 {
  color: #2c3f5e;
}
.giving-back .left {
  width: calc(30% - 60px);
}
.giving-back .right {
  width: calc(70% - 60px);
}

@media screen and (max-width: 1024px) {
  #giving-back {
    padding-top:100px;
  }

 #giving-back .flex-container{
  flex-direction: column;
  gap:unset;
 }
 .giving-back .left {
  width: 100%;
}
.giving-back .right {
  width: 100%;
}
}

#footer {
  margin-top: 300px;
  padding: 0 40px;
}
.copyright span {
  color: #2c3f5e;
}
.footer-logo img{
  width:100vw;
}


@media screen and (max-width: 1024px) {
  #footer {
    padding: 0 20px;
    margin-top: 100px;
  }

}

/* SignUp Form - June 2023 */
.signup-form{
  max-width:710px;
  margin:170px auto;

}
.signup-form h2{
  margin:0;
  text-align: center;
}
.signup-form p{
  text-align: center;
}
.signup-form .submit-hold{
  width: 100%;
  border-radius: 60px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding:12px 12px 12px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
.signup-form .submit-hold:hover{
  border: solid 1px rgba(0, 0, 0, 0.3);
}
.submit-hold:hover input::placeholder{
  color:#2c3f5e;
  transition: all 0.25s ease-in-out;
}
.submit-hold:hover .signup-button{
  background-color:#2c3f5e;
  color:#fff;
  transition: all 0.25s ease-in-out;
}
.signup-form .submit-hold.active{
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.submit-hold:active .signup-button{
 background-color: #fff;
  color: #2c3f5e;
  transition: all 0.25s ease-in-out;
}
input::placeholder{
  font-family: 'Sohne-Halbfett', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  text-transform: titlecase;
  color: rgba(44, 63, 94, 0.5);
  border: none;
  background-color: transparent;

}

 .signup-email{
    background-color: transparent;
    width:100%;

}

.signup-email input[type=text]{
  width:80%;
  border: none;
  font-size: 24px;
  line-height: 1.5;
}

.checkbox{
  cursor: pointer;
    box-sizing: border-box;
    padding: 0;
    width:32px;
    height:32px;
    border: solid 1px rgba(0, 0, 0, 0.25);
    background-color: transparent;
    margin-right:24px;
    position: relative;
}
.checkbox:before{
    content: '\f00c';
    font-family: fontawesome;
    width: 1em;
    height: 1em;
    position: absolute;
    top: 6px;
    right: 6px;
    display: none;
}
.checkbox.checked:before {
    display: block;
    transition: all 0.25s ease-in-out;
}
.consent{
  margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.consent label{
  width:90%;
  color: #2c3f5e;
  font-size: 14px;
}

.signup-button{
  font-family: 'Sohne-Halbfettf', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  color: rgba(44, 63, 94, 0.5);
  border: none;
  background-color: #fff;
  padding: 18px 30px;
  border-radius: 60px;
}
.signup-message{
  color: #2c3f5e;
  padding-top: 24px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .signup-form{max-width:350px; margin: 100px auto;}
  .signup-form .submit-hold{padding: 8px 8px 8px 24px;}
  input::placeholder{font-size:18px;}
  .signup-button{font-size:13px;padding: 12px 30px;}
  .signup-email input[type=text]{ width:100%;font-size:14px;}

}
@media screen and (max-width: 400px) {
  .signup-form{margin: 100px 20px;}

}

.grecaptcha-badge { display: none !important;}
.grecaptcha-badge.show { display: block !important; visibility: visible !important;}

/*** Media section ***/
#media{padding-top: 60px;}
#media h2{color:#2c3f5e; margin-top:0;}
#media .media.flex-container{
  justify-content: space-between;
  gap:60px;

}
.media-title{width: calc(30% - 60px);}
.media-thumbnail{
  width: calc(70% - 60px );
}
.media-thumbnail div{
  position: relative;
}
.media-thumbnail img {
  width:100%;
  
}
.media-thumbnail div::after {
      content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    text-align: center;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: solid 1px #ffffff;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.media-thumbnail a:hover{
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .media-title{width:100%;}
  .media-thumbnail{width:100%;}
  #media .media.flex-container{
    flex-direction: column;
    gap:unset;
  }

}