@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
  --white: #fff;

  --primary: #1FAD45;
  --secondary: #3A4554;
  --dark: #090d13;
  --borders: #32343A;
}

/* .meetings-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
     min-height: 800px;
  }
  .meetings-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 800px!important;
    border: 0;
  } */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  color: var(--white);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--dark);
  font-weight: 100;
}

h1 {
  font-size: 140px;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-size: 30px;
  font-weight: 200;
}

h3 {
  font-size: 20px;
  font-weight: 200;
}

.para-lg {
  font-size: 18px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.d-flex {
  display: flex !important;
}

.gap-2 {
  gap: 2rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.d-block {
  display: block !important;
}

.btn {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 100;
  transition: border-color .2s, background-color .2s;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 13px;
}

.btn.btn-default {
  background-color: var(--primary);
  color: var(--white);
}

.btn.btn-default:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.btn.is-large {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.xs-none {
  display: none;
}

/* Small: ≥576px */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .sm-none {
    display: none;
  }

  .sm-inline-block {
    display: inline-block;
  }
}

/* Medium: ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .container-sp {
    width: 85%;
    margin: 0 auto;
  }

  .md-none {
    display: none;
  }

  .md-inline-block {
    display: inline-block;
  }
}

/* Large: ≥992px */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .aboutHolder .aboutSec,
  .leadershipTeamSec .leadershipTeamContent,
  .contactHolder .contactSec {
    width: 73%;
  }
}

/* Extra Large: ≥1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

header .headerSec {
  background: var(--dark);
  border-radius: 0px 0px 10px 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .headerSec .navbar-logo {
  width: 180px;
}

header .headerSec nav {
  margin-left: auto;
}

header .headerSec nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}

header .headerSec nav ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  padding: 13px 20px;
  line-height: 20px;
  transition: .4s;
}

header .headerSec nav ul li a:hover {
  color: var(--primary);
}

.mainBannerHolder {
  padding-top: 90px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mainBannerHolder .mainBannerImgSec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #000;
  opacity: 0.5;
}

.mainBannerHolder .mainBannerImgSec img {

  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* .mainBannerHolder .mainBannerImgSec:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
} */
.mainBannerCaptionSec {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  width: 100%;
}

.mainBannerCaptionSec .badge {
  background-color: var(--dark);
  padding: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  display: inline-block;
  font-size: 14px;
  font-weight: 100;
  line-height: 23px;
}

.mainBannerCaptionSec h1 {
  margin: 0;
}

.counterHolder {
  padding: 3.125rem 0;
}

.counterSec {
  display: grid;
  padding: 10px 0;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.counterSec strong {
  font-size: 40px;
  font-weight: 600;
}

.counterSec p {
  margin: 0;
  font-size: 14px;
  font-weight: 100;
  line-height: 23px;
}

.counterBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aboutHolder {
  padding: 3.125rem 0;

}

.aboutHolder .aboutSec h2 {
  margin: 0;
}

.leadershipTeamHolder {
  padding: 3.125rem 0;
}

.leadershipTeamHolder .leadershipTeamCalloutSec {
  display: flex;
  gap: 55px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.leadershipTeamHolder .leadershipTeamCallout {
  max-width: calc(33.3333% - 36.66666666666667px);
  flex: 0 0 calc(33.3333% - 36.66666666666667px);
}

.leadershipTeamSec h2 {
  margin: 0;
}

.leadershipTeamHolder .leadershipTeamCalloutSec .leadershipTeamCallout img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  max-width: 280px;
}

.leadershipTeamHolder .leadershipTeamCalloutSec .leadershipTeamCallout svg path {
  fill: var(--white);
  transition: all.2s;
}

.leadershipTeamHolder .leadershipTeamCalloutSec .leadershipTeamCallout a:hover svg path {
  fill: var(--primary);
}

.contactHolder {
  padding: 3.125rem 0;
}

.contactHolder .contactSec h2 {
  margin: 0;
  font-size: 38px;
}

footer {
  padding: 2rem 0;
}

footer .ft-linkedIn svg path {
  fill: var(--white);
}

footer .ft-linkedIn:hover svg path {
  fill: var(--primary);
}

footer .copyrightSec {
  border-top: 1px solid var(--borders);
  padding-top: 2rem;
  margin-top: 2rem;
}

footer .copyrightSec p {
  margin: 0;
  font-size: 16px;
  color: var(--secondary);
}

.menuTrigger {
  display: none;
  border: 1px solid var(--secondary);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.menuTrigger .cross {
  display: none;
}

.menuTrigger svg {
  width: 22px;
  height: 22px;
}

.menuTrigger svg path {
  fill: var(--secondary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainBannerCaptionSec h1 {
    font-size: 119px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainBannerCaptionSec h1 {
    font-size: 90px;
  }

  .counterSec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .leadershipTeamHolder .leadershipTeamCalloutSec {
    gap: 55px 25px;
  }

  .leadershipTeamHolder .leadershipTeamCallout {
    max-width: calc(33.3333% - 16.66666666666667px);
    flex: 0 0 calc(33.3333% - 16.66666666666667px);
  }
}

@media only screen and (max-width: 767px) {
  .mainBannerCaptionSec h1 {
    font-size: 40px;
  }

  .counterSec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  header {
    position: relative;
  }

  header.active .menuTrigger .hamburger {
    display: none;
  }

  header.active .menuTrigger .cross {
    display: block;
  }

  header .headerSec nav ul {
    flex-direction: column;
  }

  header .headerSec nav ul li {

    width: 100%;
  }

  header .headerSec nav ul li a {
    color: var(--dark);
    text-align: left;
    width: 100%;
    display: block;
    padding: 10px 20px;
  }

  header .headerSec nav ul li a:hover {
    background: var(--primary);
    color: var(--white);
  }

  header .headerSec nav {
    position: absolute;
    top: -100%;
    background: var(--white);
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.2s;
    z-index: -1;
  }

  header.active .headerSec nav {

    top: 100%;
    transform: translateY(0);
  }

  header .headerSec .navbar-logo {
    margin-right: auto;
  }

  .leadershipTeamHolder .leadershipTeamCalloutSec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .leadershipTeamHolder .leadershipTeamCallout {
    max-width: calc(50% - 12.5px);
    flex: 0 0 calc(50% - 12.5px);
  }

  .menuTrigger {
    display: flex;
  }

  header .container {
    padding: 0;
    max-width: 100%;
  }

}

@media only screen and (max-width: 575px) {
  .counterSec {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .leadershipTeamHolder .leadershipTeamCallout {
    max-width: 100%;
    flex: 0 0 100%;
  }
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
