/************************
GLOBAL
************************/
html,
body {
  height: 100%;
  margin: 0;
}
body {
  overflow-x: hidden;
}
a {
  color: #2f80ed;
  text-decoration: none;
}
a:hover {
  color: #91c717;
  transition: 0.4s;
}
p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #54565b;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "rama-gothic-e", sans-serif;
}
.btn-blue {
  background-color: #2f80ed;
  border-radius: 20px;
  color: #fff;
  padding: 8px 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 12px;
  border: 1px solid #2f80ed;
}
.btn-blue:hover {
  cursor: pointer;
  background: transparent;
  border: 1px solid #2f80ed;
  color: #2f80ed;
  transition: 0.4s;
}
.wrap-after-hero {
  background: #fff;
  z-index: 10;
  position: relative;
}
/* initial hidden state */
[data-aos="garage-slide"] {
  transform: translateY(-100%);
  opacity: 0;
}

/* when AOS triggers */
[data-aos="garage-slide"].aos-animate {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 1.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 17px;
    line-height: 28px;
  }
}
/*--------------------------------------------------------------
  NAVIGATION
--------------------------------------------------------------*/
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000000;
  padding-top: 30px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.top-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
body.nav-swapped .top-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.top-nav-rt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fadeIn 3s ease 4s forwards; /* fade in over 2 seconds */
}
.top-nav ul {
  padding-left: 45px;
  margin-bottom: 0px;
}
.top-nav ul li {
  display: inline-block;
  color: #808080;
  padding-left: 15px;
}
.top-nav ul li a {
  color: #808080;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.top-nav p {
  margin-bottom: 0px;
  color: #808080;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.top-nav img {
  max-width: 130px;
}
.top-nav a:hover {
  color: #91c717;
  transition: 0.4s;
}
.top-nav-menu-wrap {
  display: flex;
  align-items: center;
}
.top-nav-menu-wrap:hover {
  cursor: pointer;
}
.scrolled-nav {
  position: fixed;
  /* padding-top: 6px;
  padding-bottom: 6px; */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  background: #d9d9d9;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000000;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.scrolled-nav ul li a.active {
  border-top: 6px solid #0f8ae7;
}
.scrolled-nav .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scrolled-nav p {
  margin-bottom: 0px;
  color: #54565b;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 1px;
}
.scrolled-nav ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.scrolled-nav ul li {
  display: inline-block;
  color: #808080;
  padding-left: 15px;
  text-transform: uppercase;
  color: #54565b;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding-top: 6px;
  padding-bottom: 6px;
}
.scrolled-nav ul li a {
  color: #808080;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #54565b;
  padding-top: 6px;
  padding-bottom: 6px;
}
.scrolled-nav a:hover {
  color: #91c717;
  transition: 0.4s;
}
.scrolled-nav .menu {
  display: none;
  align-items: center;
}
.scrolled-nav .menu:hover {
  cursor: pointer;
}
body.nav-swapped .scrolled-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (max-width: 1399px) {
  .scrolled-nav ul li a,
  .scrolled-nav p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .scrolled-nav ul li a,
  .scrolled-nav p {
    font-size: 16px;
  }
  .scrolled-nav ul li {
    padding-left: 8px;
  }
}
@media screen and (max-width: 991px) {
  .scrolled-nav .menu {
    display: flex;
    align-items: center;
  }
  .top-nav-rt {
    justify-content: end;
  }
}
@media screen and (max-width: 767px) {
  .top-nav .container {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
  NAVIGATION MODAL
--------------------------------------------------------------*/
.custom-modal-backdrop {
  background-color: rgba(255, 255, 255, 0.8); /* Change the last value (0.5) to set the desired opacity */
}
.custom-modal-backdrop .modal-content {
  background: transparent;
  border-radius: 0;
  border: none;
}
.custom-modal-backdrop .modal-dialog {
  max-width: 100%;
  margin-top: 0px;
}
.custom-modal-backdrop .modal-body {
  padding: 0px;
  padding-top: 100px;
}
.nav-modal-wrap {
  list-style: none;
}
.nav-modal-wrap li {
  font-size: 22px;
  line-height: 38px;
  font-weight: 600;
  position: relative;
  color: #54565b;
  font-family: "rama-gothic-e", sans-serif;
}
.nav-modal-wrap li a {
  color: #54565b;
  font-family: "rama-gothic-e", sans-serif;
}
.nav-modal-wrap li:hover {
  font-size: 30px;
  line-height: 45px;
  cursor: pointer;
}
.nav-modal-wrap li:hover::before {
  content: "";
  background: #91c717;
  width: 8px;
  height: 100%;
  position: absolute;
  left: -15px;
}
/*--------------------------------------------------------------
  HERO
--------------------------------------------------------------*/
.hero-wrap {
  height: 100vh;
  max-height: 1000px;
  min-height: 450px;
  display: flex;
  position: relative;
  z-index: 2;
}
.left-hero {
  background-size: cover;
  width: 50%;
  height: 100%;
  opacity: 0; /* start invisible */
  animation: fadeIn 3s ease forwards; /* fade in over 2 seconds */
  position: absolute;
  left: 0;
}
.left-hero-1 {
  background-image: url("img/hero-left-1.webp");
  animation-delay: 0.1s; /* optional delay before fade starts */
  background-position: center center;
}
.right-hero {
  background-size: cover;
  width: 50%;
  height: 100%;
  opacity: 0; /* start invisible */
  animation: fadeIn 3s ease forwards; /* fade in over 2 seconds */
  position: absolute;
  right: 0;
}
.right-hero-1 {
  background-image: url("img/hero-right-1.webp");
  animation-delay: 0.7s; /* optional delay before fade starts */
  background-position: center top;
}
.hero-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg); /* start at 0° */
  animation: rotate90 1.5s ease forwards; /* rotate over 1 second */
  animation-delay: 2s; /* optional delay */
}
.down-arrow {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  opacity: 0;
  animation: fadeIn 3s ease 18s forwards; /* fade in over 2 seconds */
}
.right-hero-2 {
  background-image: url("img/hero-right-2.webp");
  animation-delay: 8.7s; /* optional delay before fade starts */
}
.right-hero-3 {
  background-image: url("img/hero-right-3.webp");
  animation-delay: 16.7s; /* optional delay before fade starts */
  background-position: center center;
}
.right-hero-4 {
  background-image: url("img/hero-right-4b.webp");
  animation-delay: 24.7s; /* optional delay before fade starts */
}
.left-hero-2 {
  background-image: url("img/hero-left-2.webp");
  animation-delay: 8.1s; /* optional delay before fade starts */
  background-position: center center;
}
.left-hero-3 {
  background-image: url("img/hero-left-3.webp");
  animation-delay: 16.1s; /* optional delay before fade starts */
  background-position: center center;
}
.left-green-box {
  background-color: #91c717;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0px;
  bottom: -100vh;
  animation: slideUp 2s ease forwards; /* animation name, duration, easing */
  color: #fff;
  display: flex; /* enable flex */
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
}
.left-green-box-1 {
  animation-delay: 3s; /* wait 3 seconds before starting */
}
.left-green-box-2 {
  animation: slideDown 2s ease 10s forwards;
}
.left-green-box-3 {
  animation-delay: 18s; /* wait 3 seconds before starting */
}
.left-green-box-4 {
  animation: slideDown 2s ease 24s forwards;
}
.left-green-box p {
  width: 660px;
  text-align: center;
  margin-left: auto;
  padding-right: 60px;
  display: block;
  color: #fff;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 45px;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-left: 12px;
}
.right-box {
  background-color: #fff;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: -100vh;
  animation: slideDown 2s ease forwards; /* animation name, duration, easing */
  color: #fff;
  display: flex; /* enable flex */
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  padding-right: 12px;
}
.right-box-1 {
  animation-delay: 3.5s; /* wait 3 seconds before starting */
  padding-top: 90px;
}
.right-box-2 {
  animation: slideUp 2s ease 10.5s forwards;
  top: initial;
  bottom: -100vh;
  padding-top: 168px;
}
.right-box-3 {
  animation-delay: 18.5s; /* wait 3 seconds before starting */
  padding-top: 169px;
}
.right-box-4 {
  animation: slideUp 2s ease 26.5s forwards;
  top: initial;
  bottom: -100vh;
  flex-direction: column; /* THIS */
  padding-top: 107px;
}
.right-box p {
  margin-right: auto;
  display: block;
  color: #92c83e;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 45px;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-left: 60px;
  text-align: center;
}
p.hero-small-text {
  color: #54565b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 18px !important;
}
.hero-wrap hr {
  border: none;
  height: 2px;
  background: gray;
  width: 34px;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
.hr-wrap {
  padding-left: 60px;
  margin-right: auto;
}
.left-green-box p span,
.right-box p span {
  display: block;
  color: #808080;
  font-size: 28px;
  font-weight: 400;
  line-height: 30px;
  text-transform: initial;
  margin-top: 14px;
}
@keyframes slideDown {
  from {
    top: -100vh;
  }
  to {
    top: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    bottom: -100vh;
  }
  to {
    bottom: 0;
  }
}
@keyframes rotate90 {
  to {
    transform: translate(-50%, -50%) rotate(-90deg); /* end at 90° */
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  } /* grow slightly, then shrink */
}
@media screen and (min-width: 768px) {
  .left-green-box p,
  .right-box p,
  .hr-wrap {
    width: 360px;
  }
}
@media screen and (min-width: 992px) {
  .left-green-box p,
  .right-box p,
  .hr-wrap {
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .left-green-box p,
  .right-box p,
  .hr-wrap {
    width: 570px;
  }
}
@media screen and (min-width: 1400px) {
  .left-green-box p,
  .right-box p,
  .hr-wrap {
    width: 660px;
  }
}

@media screen and (max-width: 1399px) {
  .right-box-3 {
    padding-top: 197px;
  }
}

@media screen and (max-width: 1199px) {
  .left-green-box p,
  .right-box p {
    font-size: 40px;
    line-height: 40px;
  }
  .right-box-4 {
    padding-top: 153px;
  }
  .right-box-1 {
    padding-top: 120px;
  }
  .right-box-2 {
    padding-top: 156px;
  }
  .right-box-3 {
    padding-top: 184px;
  }
}
@media screen and (max-width: 991px) {
  .left-green-box p,
  .right-box p {
    font-size: 32px;
    line-height: 32px;
  }
  .left-green-box p {
    padding-right: 30px;
  }
  .right-box p,
  .hr-wrap {
    padding-left: 30px;
  }
  .hero-icon {
    width: 40px;
  }
  .right-box-4 {
    padding-top: 138px;
  }
  .right-box-1 {
    padding-top: 110px;
  }
  .right-box-2 {
    padding-top: 173px;
  }
  .right-box-3 {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .left-green-box p,
  .right-box p {
    font-size: 28px;
    line-height: 28px;
  }
  .hr-wrap {
    width: 100%;
  }
  .hero-small-text {
    width: 100%;
  }
  .right-box-4,
  .right-box-1,
  .right-box-2,
  .right-box-3 {
    padding-top: 0px;
  }
  .hero-wrap {
    min-height: 420px;
  }
  .left-green-box p span,
  .right-box p span {
    font-size: 24px;
    line-height: 22px;
  }
}
@media screen and (max-width: 499px) {
  .left-green-box p,
  .right-box p {
    font-size: 24px;
    line-height: 24px;
  }
}
/************************
MAIN SECTIONS
************************/
.section-wrap {
  overflow: hidden;
  position: relative;
  scroll-margin-top: 42px;
}
.section-wrap h2 {
  color: #91c717;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
p.quote {
  font-size: 20px;
  line-height: 29px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 40px;
}
.top-section-wrap {
  z-index: 2;
  background-color: #efefef;
  position: relative;
  overflow-x: hidden;
}
.top-section-wrap .col-sm-8 {
  align-self: center;
}
.top-section-wrap .col-md-6 {
  align-self: center;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.my-sidebar {
  background-color: #54565b;
  padding-left: 0px;
  padding-right: 0px;
}
.my-sidebar img {
  width: 100%;
}
.side-img p,
.my-sidebar p {
  color: #fff;
}
.side-img p:first-of-type,
.my-sidebar p:first-of-type {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  font-family: "rama-gothic-e", sans-serif;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.side-img p:last-of-type,
.my-sidebar p:last-of-type {
  color: #cacaca;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 0px;
}
.side-img div,
.my-sidebar div:last-of-type {
  background-color: #54565b;
  padding: 40px;
}
.green-stat {
  background: #91c717;
  height: 100%;
  width: 100%;
  align-content: center;
  height: 100%;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 12px;
  padding-right: 12px;
}
.green-stat p.large-stat {
  font-size: 80px !important;
  line-height: 80px !important;
}
.green-stat p {
  color: #fff;
  margin-bottom: 0px;
}
.green-stat p:first-of-type {
  font-weight: 600;
  font-size: 60px;
  text-transform: uppercase;
  font-family: "rama-gothic-e", sans-serif;
  line-height: 56px;
  margin-bottom: 2px;
}
.green-stat p:last-of-type {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
}
.container-3-col {
  max-width: 100%;
  width: 1700px;
  padding-left: 0px;
  padding-right: 0px;
}
.container-3-col .col-md-3 {
  padding-right: 0px;
}
.container-3-col .row {
  margin-left: 0px;
  margin-right: 0px;
}
.container-3-col .row .col-md-3:first-of-type {
  padding-left: 0px !important;
}
.container-3-col .row .col-md-3:last-of-type {
  padding-right: 0px !important;
  padding-left: 0px;
}
.container-2-col-photo-rt .row {
  margin-left: 0px;
  margin-right: 0px;
}
.container-2-col-photo-rt .row .col-md-4 {
  padding-right: 0px;
}
.container-2-col-photo-rt {
  max-width: 100%;
  width: 1700px;
  padding-left: 0px;
  padding-right: 0px;
}
.container-2-col-photo-rt .col-md-8 {
  padding-right: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.people-col-8 {
  padding-left: 60px;
  padding-right: 12px;
}
@media screen and (min-width: 1100px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 660px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 810px;
  }
}
@media screen and (min-width: 1300px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 790px;
  }
}
@media screen and (min-width: 1400px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 950px;
  }
}
@media screen and (min-width: 1500px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 930px;
  }
}
@media screen and (min-width: 1600px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 910px;
  }
}
@media screen and (min-width: 1700px) {
  .container-2-col-photo-rt .col-md-8 {
    width: 890px;
  }
}
@media screen and (max-width: 991px) {
  p.quote {
    font-size: 18px;
    line-height: 23px;
  }
  .side-img div,
  .my-sidebar div:last-of-type {
    padding: 40px 20px;
  }
  .green-stat p:first-of-type,
  .green-stat p.large-stat {
    font-size: 44px !important;
    line-height: 40px !important;
  }
  .green-stat {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1099px) {
  .container-2-col-photo-rt .col-md-8 {
    padding-right: 20px;
  }
  .people-col-8 {
    padding-left: 20px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .my-sidebar {
    display: flex;
    align-items: center;
  }
  .my-sidebar img,
  .my-sidebar div {
    width: 50%;
  }
}
@media screen and (max-width: 567px) {
  .my-sidebar div:last-of-type {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .my-sidebar p:first-of-type {
    font-size: 20px;
    line-height: 20px;
  }
}
/************************
LARGE PHOTO SECTIONS
************************/
.large-photo-wrap {
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden; /* keep inner animation contained */
  background-position: center center;
}
.large-photo-visible h3 {
  color: #fff;
  font-size: 80px;
  line-height: 75px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.large-photo-visible p {
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "rama-gothic-e", sans-serif;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.large-photo-visible .row {
  min-height: 400px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .large-photo-visible h3 {
    font-size: 58px;
    line-height: 52px;
  }
  .large-photo-visible p {
    font-size: 30px;
    line-height: 32px;
  }
  .large-photo-visible .row {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .large-photo-visible h3 {
    font-size: 38px;
    line-height: 34px;
  }
  .large-photo-visible p {
    font-size: 26px;
    line-height: 27px;
  }
  .large-photo-visible .row {
    min-height: 250px;
  }
}
/********************************
OPEN SECTIONS (HIDDEN ON INITIAL)
*********************************/
.section-open {
  background-color: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(-100%); /* start hidden above */
  /* transition: transform 4.6s ease 0.4s; */
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  will-change: transform; /* GPU acceleration to prevent bounce */
  opacity: 1;
  z-index: 1;
}
.section-open.open {
  transform: translateY(0); /* slide down */
  opacity: 1;
}
.section-open-inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.close-section {
  font-size: 24px;
  color: #90be3e;
  margin-top: 30px;
}
.close-btn {
  display: block;
  text-align: center;
  margin-top: 40px;
}
.close-btn p {
  display: inline-block;
}
.close-btn p:hover {
  cursor: pointer;
}
/* SUBTLE FONT AWESOME SHIMMER ICON */
.shimmer {
  font-size: 48px;
  color: transparent; /* hides solid color for gradient */

  /* subtle green shimmer gradient */
  background: linear-gradient(120deg, #90be3e 25%, /* base green */ #a4d15a 37%, /* slightly lighter green for shimmer */ #90be3e 63% /* base green */);
  background-size: 200% 100%;

  -webkit-background-clip: text; /* for Safari */
  background-clip: text;

  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* END SUBTLE FONT AWESOME SHIMMER ICON */

/*--------------------------------------------------------------
  CUSTOM OPEN SECTIONS (HIDDEN ON INITIAL)
--------------------------------------------------------------*/
.small-text {
  color: #54565b;
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}
.chart-title {
  color: #91c717;
  text-align: center;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 80px;
  margin-bottom: 5px;
}
.chart-subtitle {
  color: #808080;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

.stat {
  font-family: "rama-gothic-e", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.stat .counter {
  font-size: 60px;
  line-height: 60px;
}
.stat-1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 600;
  font-family: "rama-gothic-e", sans-serif;
  text-align: center;
  margin-bottom: 0px;
}
.stat-2 {
  font-family: "rama-gothic-e", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
}
.ceo-title {
  color: #91c717;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
}
.callout-text {
  display: flex;
  margin-bottom: 0px;
  color: #fff;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px; /* 125% */
  text-transform: uppercase;
  text-align: left;
  padding-left: 40px;
  border-left: 1px solid #fff;
  margin-left: 40px;
  height: 100%;
  align-items: center;
}
.callout-text-custom {
  font-size: 32px;
  line-height: 34px;
}
.callout-icon {
  max-width: 180px;
  display: flex;
}
.icon-text {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "rama-gothic-e", sans-serif;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 0px;
  text-align: right;
  min-width: 115px;
}
.icon-text span {
  font-size: 42px;
  line-height: 26px;
}
/* WINDOW RESIZE BUG - Learn more sections when viewed on small screen size and then expanded to larger - the elements do not resize their height so there is way too much white space at the bottom*/
@media screen and (min-width: 768px) {
  #ceo-reveal {
    max-height: 3000px;
  }
}
@media screen and (min-width: 992px) {
  #ceo-reveal {
    max-height: 2400px;
  }
}
@media screen and (min-width: 1200px) {
  #ceo-reveal {
    max-height: 2100px;
  }
}
@media screen and (min-width: 1400px) {
  #ceo-reveal {
    max-height: 1950px;
  }
  #innovation-reveal {
    max-height: 708px;
  }
}
@media screen and (max-width: 767px) {
  .callout-text {
    font-size: 22px;
    line-height: 25px; /* 125% */
    padding-left: 20px;
    margin-left: 20px;
  }
  .callout-icon {
    max-width: 120px;
  }
  .icon-text {
    font-size: 20px;
    line-height: 20px;
    min-width: 115px;
  }
  .icon-text span {
    font-size: 34px;
    line-height: 26px;
  }
}
/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
footer {
  background: #54565b;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #979797;
}
footer p {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
footer ul li {
  display: inline-block;
  padding: 0px 5px;
  padding-bottom: 8px;
  font-size: 14px;
}
footer ul li a:hover {
  -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.6) 30%, #000 50%, rgba(0, 0, 0, 0.6) 70%) !important;
  -webkit-mask-size: 200% !important;
  animation: shine 2s infinite !important;
  color: #91c717;
}
.footer-social a img:hover {
  -webkit-animation: pulse 0.9s infinite; /* Safari 4+ */
  -moz-animation: pulse 0.9s infinite; /* Fx 5+ */
  -o-animation: pulse 0.9s infinite; /* Opera 12+ */
  animation: pulse 0.9s infinite; /* IE 10+, Fx 29+ */
  animation-iteration-count: 2;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
footer a:hover {
  text-decoration: none !important;
  cursor: pointer !important;
}
ul.footer-nav,
ul.footer-nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 1px;
}
footer ul {
  list-style: none;
}
footer ul.footer-nav-two {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0px;
  padding-left: 0px;
}
/* .footer-logo img {
  width: 100px;
  float: left;
} */
.footer-logo p {
  color: #fff;
  margin-top: 15px;
  text-align: center;
}
.footer-logo a {
  color: inherit !important;
  text-decoration: none !important;
}
.footer-logo {
  /* padding-top: 10px; */
  padding-right: 0px;
}
.footer-title {
  float: right;
  padding-top: 10px;
  color: #fff;
}
.footer-social {
  position: relative;
  padding-bottom: 9px;
  padding-top: 10px;
}
.social-rt a:first-of-type {
  margin-left: 32px;
}
.footer-social img {
  width: 38px;
}
.footer-social a:nth-of-type(2) img {
  margin-left: 20px;
  margin-right: 20px;
}
.copyright {
  font-size: 10px;
  line-height: 11px;
  margin-top: 20px;
  color: #fff;
  text-align: right;
}
.footer-rt-col {
  align-self: flex-end;
}
/* Shine Animation */
@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@-moz-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@-o-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/********** RESPONSIVE STYLE **********/
@media screen and (min-width: 1400px) {
  .copyright {
    padding-right: 185px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .copyright {
    padding-right: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-logo {
    font-size: 12px;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-title {
    float: left;
  }
  ul.footer-nav,
  ul.footer-nav a {
    font-size: 12px;
  }
  footer ul.footer-nav-two {
    font-size: 11px;
  }
  p.footer-title {
    font-size: 12px;
    padding-left: 7px;
  }
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 10px;
    line-height: 11px;
  }
}
@media screen and (max-width: 991px) {
  .footer-rt-col {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo img,
  .footer-title {
    float: none;
  }
  .copyright {
    padding-right: 0px;
    text-align: center;
  }
  .footer-logo {
    text-align: center;
    padding: 15px;
  }
  footer ul {
    text-align: center;
    padding-left: 0px;
  }
  ul.footer-nav li,
  ul.footer-nav-two li {
    line-height: 35px;
  }
  .footer-social {
    text-align: center;
  }
  .footer-rt-col {
    padding-left: 12px;
  }
}
/*--------------------------------------------------------------
  REVEAL SECTIONS
--------------------------------------------------------------*/
.reveal-section {
  height: 0;
  overflow: hidden;
  background: #fff;
  transition: height 2.5s ease;
  z-index: 1;
  position: relative;
}
.reveal-section .container {
  padding-top: 70px;
  padding-bottom: 70px;
}
/************************
DOWNLOADS PAGE
************************/
.downloads-page h2 {
  color: #91c717;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 600;
  border-top: 1px solid #54565b;
  padding: 40px 0px 0px 0px;
}
