* {
  /* font-family: "Inter", sans-serif; */
}

:root {
  --drkgrn: #3B734A;
  --deeppurple: #00042F;
  --babyblue: #F0F1FF;
  --ltgreen: #89FFAA;
  --inter: "Saira", sans-serif;
  --barlow: "Barlow", sans-serif;

}

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

p {
  font-family: var(--inter);
}

strong {
  font-weight: 800;
}

.square-btn {
  display: inline-block;
  padding: 1em 1.3em;
  color: black;
  line-height: 1;
  text-decoration: none;

}

.square-btn.white-bg {
  background: white;
}

.navigation {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    background-color: var(--deeppurple);
    padding: 15px 30px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-radius: 0px;
}


.gf-nav-logo {
    display: block;
    width: 250px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto;
}

.links {
    display: flex;
    gap: 20px; /* Adjust the space between links */
    justify-content: center;
}
.links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

.big-cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 15px 25px;
  border: 1px solid var(--deeppurple);
  border-radius: 38px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--ltgreen);
  color: var(--deeppurple);
  box-shadow: 4px 4px;
  transition: all 333ms;
}

.big-cta:hover {
  background-color: white;
  box-shadow: 0px 0px;
}

.big-cta span {
  display: inline-block;
  height: 0;
  transform: translate(0px, -3px);

  margin-left: 10px;
}


.big-cta span svg {
  width: 25px;
  height: 25px;
}

strong {
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--inter);
  line-height: 1.3;
}

h1 {
  font-weight: 800;
}

h2 {

  font-weight: 300;
  font-size: clamp(1.625rem, 1.1875rem + 1.4583vw, 2.5rem);
  color: var(--deeppurple);
}

h3 {
  font-size: clamp(1.125rem, 0.8125rem + 1.0417vw, 1.75rem);
  font-weight: 300;
  /* text-transform: uppercase;
  margin: 50px 0;
  font-size: 32px; */
}

.site-container {
  min-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  margin-top: 100px;
}

.hero {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: var(--deeppurple);
  padding-bottom: 100%;
}

.hero-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0;
  background: none;
  width: 90%;
}

.hero-intro h1 {
  color: var(--ltgreen);
  font-size: clamp(2.04rem, 1.0625rem + 2.2917vw, 3.125rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.hero-intro h1 span {
  border-bottom: 2px solid var(--ltgreen);
  color: white;
}

.hero-intro p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
}

.investors-hero {
  background-image: url(../images/Greenflare-Site-Hero-Desk.jpg);
  background-size: cover;
  background-position: right;
}

.partners-hero {
  background-image: url(../images/Partners-Page-Hero.jpg);
  background-size: cover;
  background-position: center;
}


#video-con {
  opacity: 0.666;
}

#video-con video {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}

#video-con .mobile-video {
  display: block;
}

#video-con .desk-video {
  display: none;
}

#mission-statement {
  display: block;
  padding: 5% 8%;
  text-align: center;
  background: var(--babyblue);
  margin: 0% auto;
  width: 90%;
  border-radius: 15px;
  box-shadow: 5px 10px 15px 2px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--deeppurple);
  transform: translate(0px, -20%);
}

.content-component {
  padding: 10% 0;
  position: relative;
}

.content-component .copy {
  margin-bottom: 10%;
}

.centered-content-component {
  width: 90%;
  margin: 20% auto 20%;
  text-align: center;
  padding: 10% 5%;
  border-radius: 15px;
  color: var(--deeppurple);
  background: var(--babyblue);
  border: 2px solid var(--deeppurple);
  box-shadow: 5px 10px 15px 2px rgba(0, 0, 0, 0.12);

}

.centered-content-component h2 {
  margin: 0;
  /* color: var(--ltgreen); */
}


.content-component .inner {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}


.content-component .inner picture img {
  display: block;
  box-shadow: 5px 10px 15px 2px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  border: 2px solid var(--deeppurple);
}

.order-1-mobile {
  order: 1;
}

.order-2-mobile {
  order: 2;
}

.copy p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  width: 100%;
}

.copy p a {
  color: inherit;
}


.our-team {
  position: relative;
  margin: 10% 0 10%;
}

.chevron {
  position: absolute;
  top: 0;
  transform: translate(0,-30%);
  width: 190%;
  z-index: -1;
  height: auto;
}

.our-team h2 {
  text-align: center;
  margin: 0 auto 15%;
  color: var(--deeppurple);
}

.our-team .inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 90%;
  margin: 0 auto;
  grid-gap: 0 5%;
}

.member-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 14px;
  overflow: hidden;
  background: gray;
  width: 100%;
  background: #FCFCFC;
  box-shadow: 5px 10px 15px 2px rgba(0, 0, 0, 0.12);
  margin-bottom: 10%;
  border: 2px solid var(--deeppurple);
}

.become-a-partner-box {
  background: var(--babyblue);
  font-family: var(--barlow);
  color: var(--deeppurple);
  font-size: 24px;
  height: 0;
  padding-bottom: 56%;
}

.become-a-partner-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 86%;
}

.portrait-frame {

  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
  /* width: 40%; */
}

.portrait-frame img {
  position: absolute;
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.member-info {
  /* width: 50%; */
  padding: 8%;
  font-family: var(--barlow);
  font-weight: 300;
  font-style: normal;
}

.member-info h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5625rem, 1.0313rem + 1.7708vw, 2.3rem);
  font-weight: 500;
}

.member-info .role {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  background: var(--deeppurple);
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.member-info ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.member-info ul li {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
}

.mountains {
  width: 80%;
  max-width: 450px;
  margin: 0 0 0 auto;
}

footer {
  background-color: var(--deeppurple);
  padding: 20% 5%;
  text-align: center;
}

footer .gf-footer-logo {
  display: block;
  width: 65%;
  max-width: 280px;
  margin: 0 auto;
}

footer .gf-footer-logo svg {
  width: 100%;
}

footer .address {
  margin: 15px 0 25px;
}

footer .address span {
  color: white;
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}


@media only screen and (min-width: 60em) {

  nav {
    /* position: fixed;
    width: auto;
    right: 5%;
    left: auto;
    top: 5%;
    transform: translate(0%, 0px); */

  }

  .navigation {
    display: flex;
    width: auto;
    top: 2.5%;
    padding: 10px 30px;
    border-radius: 15px;
  }

  .gf-nav-logo {
    margin-right: 30px;
    display: block;

  }

  nav .nav-links {
    /* width: 30%; */
  }

  .site-container {
    margin-top: 0;
  }

  .hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 39.7%;
  }

  #video-con .mobile-video {
    display: none;
  }

  #video-con .desk-video {
    display: block;
  }


  .secondary-hero {
    padding-bottom: 31.7%;
  }

  .hero-intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 0;
    background: none;
    width: 80%;
  }


  .hero-intro p {
    width: 45%;
    margin-left: 50%;
    font-size: 18px;
  }

  #mission-statement {
    width: 80%;
  }

  .content-component {
    padding: 7% 0;
  }

  .content-component .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: 0 auto;
    grid-gap: 10%;
  }

  .centered-content-component {
    margin: 10% auto;
    width: 50%;
    padding: 5%;
  }


  .copy p {
    font-size: 16px;
  }

  .order-1-mobile {
    order: 2;
  }

  .order-2-mobile {
    order: 1;
  }

  .our-team {
    margin-top: 0%;
  }

  .chevron {
    width: 100%;
  }

  .our-team .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 75%;
  }

  .our-team h2 {
    margin: 0 auto 5%;
  }

  .member-profile-card {
    grid-template-columns: 0.7fr 1fr;
  }

  .member-info ul {
    display: block;
  }



  .portrait-frame {
    position: relative;
    overflow: hidden;
    height: 100%;
    /* width: 40%; */
  }

  footer {
    padding: 5% 10%;
  }
}

@media only screen and (min-width: 87em) {

  .our-team .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
  }

  .hero-intro {
    width: 60%;
  }

  .become-a-partner-box {
    height: auto;
    padding: 0;
  }

  .become-a-partner-box span {
    width: 60%;
  }
}


@keyframes fadeinall {
0% {
  opacity: 1; }
97% {
  opacity: 0; }
98% {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0); }
100% {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1; } }
#fadein {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background-color: #FFFFFF;
  z-index: 999;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation: fadeinall 1s normal both;
  animation: fadeinall 1s normal both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
