/************************
GLOBAL
************************/
html,
body {
  height: 100%;
  margin: 0;
}
body {
  overflow-x: hidden;
}
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;
}
.btn-blue:hover {
  cursor: pointer;
}
/* 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;
}
/*--------------------------------------------------------------
  HERO
--------------------------------------------------------------*/
.hero-wrap {
  height: 100vh;
  max-height: 1000px;
  display: flex;
  position: relative;
}
.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 */
}
.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 */
}
.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 */
}
.right-hero-2 {
  background-image: url("img/hero-right-2.webp");
  animation-delay: 7.7s; /* optional delay before fade starts */
}
.right-hero-3 {
  background-image: url("img/hero-right-3.webp");
  animation-delay: 12.7s; /* optional delay before fade starts */
}
.right-hero-4 {
  background-image: url("img/hero-right-4.webp");
  animation-delay: 17.7s; /* optional delay before fade starts */
}
.left-hero-2 {
  background-image: url("img/hero-left-2.webp");
  animation-delay: 7.1s; /* optional delay before fade starts */
}
.left-hero-3 {
  background-image: url("img/hero-left-3.webp");
  animation-delay: 12.1s; /* optional delay before fade starts */
}
.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 9s forwards;
}
.left-green-box-3 {
  animation-delay: 14s; /* wait 3 seconds before starting */
}
.left-green-box-4 {
  animation: slideDown 2s ease 17s 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;
}
.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 */
}
.right-box-1 {
  animation-delay: 3.5s; /* wait 3 seconds before starting */
}
.right-box-2 {
  animation: slideUp 2s ease 9.5s forwards;
  top: initial;
  bottom: -100vh;
}
.right-box-3 {
  animation-delay: 14.5s; /* wait 3 seconds before starting */
}
.right-box-4 {
  animation: slideUp 2s ease 19.5s forwards;
  top: initial;
  bottom: -100vh;
  flex-direction: column; /* THIS */
}
.right-box p {
  width: 660px;
  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;
}
p.hero-small-text {
  color: #54565b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.hero-wrap hr {
  border: none;
  height: 2px;
  background: gray;
  width: 34px;
  margin-right: auto;
  margin-left: 60px;
}
@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° */
  }
}
/************************
MAIN SECTIONS
************************/
/* .section-wrap {
  padding-bottom: 50px;
} */
.section-wrap h2 {
  color: #91c717;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 600;
}
p.quote {
  font-size: 20px;
  line-height: 24px;
  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-9 {
  align-self: center;
}
.top-section-wrap .col-6 {
  align-self: center;
  padding-left: 40px;
  padding-right: 40px;
}
.side-img p {
  color: #fff;
}
.side-img 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 {
  color: #cacaca;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.side-img div {
  background-color: #54565b;
  padding: 50px;
}
.green-stat {
  background: #91c717;
  height: 100%;
  width: 100%;
  align-content: center;
  height: 100%;
  text-align: center;
}
.green-stat p {
  color: #fff;
}
.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 .row {
  margin-left: 0px;
  margin-right: 0px;
}
.container-3-col .row .col-3:first-of-type {
  padding-left: 0px !important;
}
.container-3-col .row .col-3:last-of-type {
  padding-right: 0px !important;
}
.container-2-col-photo-rt .row {
  margin-left: 0px;
  margin-right: 0px;
}
.container-2-col-photo-rt .row .col-3 {
  padding-right: 0px;
}
.container-2-col-photo-rt {
  max-width: 100%;
  width: 1700px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (min-width: 1700px) {
  .container-2-col-photo-rt .col-9 {
    width: 890px;
    margin-left: auto;
    margin-right: auto;
  }
}
/************************
LARGE PHOTO SECTIONS
************************/
.large-photo-wrap {
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden; /* keep inner animation contained */
  overflow-y: auto;
}
.large-photo-visible h3 {
  color: #fff;
  font-size: 80px;
  line-height: 75px;
  font-weight: 600;
  text-transform: uppercase;
}
.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;
}
.large-photo-visible .row {
  min-height: 400px;
  align-items: center;
}
/********************************
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: 80px;
}
.close-section {
  font-size: 24px;
  color: #90be3e;
  margin-top: 30px;
}
.close-btn {
  display: block;
  text-align: center;
}
.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";
  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;
}

/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
footer {
  background: #54565b;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #979797;
}
footer ul li {
  display: inline-block;
  padding: 0px 5px;
  font-size: 16px;
}
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;
}
footer a:hover {
  text-decoration: none !important;
  cursor: pointer !important;
}
ul.footer-nav,
ul.footer-nav a {
  font-family: rama-gothic-e, 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;
}
/********** 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;
    /*position: absolute; 
    right: 0; 
    bottom: -4px;*/
  }
}
@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: 0px;
  }
}

/*--------------------------------------------------------------
  TEST
--------------------------------------------------------------*/
/* .accordion-button {
  background-image: none;
  display: none;
}
.collapsed {
  background-image: url(img/10.webp);
  display: flex;
  height: 600px;
  background-size: cover;
} */
