/* :root {
  --primary-color: #80c904;
  --secondary-color: rgb(255, 253, 208);
} */
html,
body {
  font-family: "Montserrat", sans-serif;
}
/* 
.primaryBgColor {
  background-color: var(--primary-color);
}
.secondaryBgColor {
  background-color: var(--secondary-color);
}
.primaryTextColor {
  color: var(--primary-color);
}
.secondaryTextColor {
  color: var(--secondary-color);
} */

header {
  /* background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../assets/images/hero-2.jpg"); */
  background-image: url("../assets/images/hero.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
}

.sectionTitle {
  font-weight: bold;
  text-transform: capitalize;
}

.typingDivContainer {
  height: 300px;
  background-color: rgb(246, 247, 249);
  color: #000000;
}

#typingDiv {
  font-weight: bold;
}

.navbar-bg {
  background: rgba(0, 0, 0, 1);
}

.infoSection {
  height: 500px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.founderImage {
  object-fit: cover;
  max-height: 500px;
  width: 100%;
}

.overlayVisible {
  opacity: 1 !important;
}

.left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.galleryImage {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  object-position: 0% 50%;
}

.galleryImageOverlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

.galleryImageContainer {
  position: relative;
}

.galleryImageContainer:hover .galleryImageOverlay {
  opacity: 1;
}

.horizontalSlider {
  overflow-x: auto;
  flex-wrap: nowrap;
  position: relative;
}

/* .horizontalSlider::-webkit-scrollbar {
  display: none;
} */

.infoOne {
  background-image: linear-gradient(
      to bottom,
      rgba(100, 0, 100, 0.7) 0%,
      rgba(100, 0, 100, 0.7) 100%
    ),
    url("../assets/images/hero-1.jpg");
}
.infoTwo {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 76, 151, 0.7) 0%,
      rgba(0, 76, 151, 0.7) 100%
    ),
    url("../assets/images/hero-2.jpg");
}

.infoThree {
  background-image: linear-gradient(
      to bottom,
      rgba(1, 50, 32, 0.7) 0%,
      rgba(1, 50, 32, 0.7) 100%
    ),
    url("../assets/images/hero-3.jpg");
}

.greyBackground {
  background-color: #f2f2f2;
}

.history {
  line-height: 2;
}
.designedBy {
  font-size: 0.7rem;
}

@media only screen and (min-width: 576px) {
  .typingDivContainer {
    height: 400px;
    margin-top: 100px;
  }
  .galleryImage {
    height: 600px;
  }
}
@media only screen and (min-width: 1024px) {
  .w-lg-75 {
    width: 75%;
  }
}

/*CUSTOM SCROLLBAR*/
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
