@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.modal-dialog {
  background-color: #ffffff;
  padding: 5%;
  width: 25%;
  margin-top: 10%;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 601px) {
  .modal-dialog {
    width: 90%;
    margin-top: 25%;
  }
}
.modal-dialog .btn-close {
  opacity: 1;
  border-radius: 50%;
  border: 1px solid #0b612d;
  cursor: pointer;
  margin-top: 5%;
}

.header-section {
  height: 15vh;
}
.header-section .navigation-container {
  height: 100%;
  background-color: #ffffff;
  position: relative;
}
.header-section .navigation-container .logo-container {
  width: 85%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.header-section .navigation-container .logo-container .header-logo {
  position: absolute;
  height: 70%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 601px) {
  .header-section .navigation-container .logo-container .header-logo {
    height: 25%;
  }
}
.header-section .navigation-container .logo-container .navigation-icon {
  position: absolute;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  transition: 0.3s;
}
.header-section .navigation-container .logo-container .navigation-cross {
  position: absolute;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu {
  height: 60px;
  background: #0b612d;
  position: absolute;
  right: 0;
  width: 65%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: -30px;
  z-index: 1000;
  padding: 0 1%;
}
.header-section .navigation-container .navigation-menu a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  padding: 1%;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu a:hover {
  color: #CC9B2B;
}
.header-section .navigation-container .navigation-menu a img {
  height: 110px;
}
.header-section .navigation-container .navigation-menu .page-active {
  color: #CC9B2B;
}
@media screen and (min-width: 1441px) {
  .header-section .navigation-container .navigation-menu a {
    font-size: 1.2rem;
  }
}
.header-section .navigation-container .navigation-menu .dropdown-container {
  position: relative;
}
.header-section .navigation-container .navigation-menu .dropdown-container .container-btn {
  cursor: pointer;
}
.header-section .navigation-container .navigation-menu .dropdown-container .container-btn a:hover {
  color: #ffffff;
}
.header-section .navigation-container .navigation-menu .dropdown-container .down-arrow {
  position: absolute;
  right: -50%;
  top: 10%;
  transition: 0.3s;
}
.header-section .navigation-container .navigation-menu .dropdown-container .down-arrow img {
  width: 15px;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul {
  margin: 0;
  position: absolute;
  top: 200%;
  left: -50%;
  background-color: #0b612d;
  list-style: none;
  padding-left: 0;
  padding: 0 20%;
  border-radius: 5px;
  display: none;
  -webkit-animation: menuAnimate 0.3s;
          animation: menuAnimate 0.3s;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li {
  width: 120px;
  padding: 10px;
  border-bottom: 1px solid #95c11f;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li:last-child {
  border-bottom: 0;
}
.header-section .navigation-container .navigation-menu .dropdown-container ul li a {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width: 1441px) {
  .header-section .navigation-container .navigation-menu a {
    font-size: 1.2rem;
  }
}

@-webkit-keyframes menuAnimate {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes menuAnimate {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.info-container {
  background: #0b612d;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding: 1%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 300px;
  width: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-container .info-icon {
  padding: 20px 0;
  border-bottom: 1px solid #95c11f;
  margin-top: 15px;
  cursor: pointer;
}
.info-container .info-icon:last-child {
  border: 0;
}
.info-container .info-icon img {
  height: 25px;
}

.info-box-container .search-input {
  height: 300px;
  position: fixed;
  bottom: 0;
  right: 65px;
  z-index: 5000;
  transform: translateX(425px);
  transition: 0.3s;
}
.info-box-container .search-input input {
  width: 400px;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5% 5%;
  outline: none;
  font-size: 18px;
  border-radius: 5px;
  color: #0b612d;
  margin-top: 50px;
  margin-right: -10px;
}
.info-box-container .search-input img {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.info-box-container .phone-hover {
  height: 50px;
  position: fixed;
  bottom: 14vh;
  right: 65px;
  border-radius: 5px;
  z-index: 5000;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.8);
  width: auto;
  padding: 0 20px;
  transform: translateX(400px);
  transition: 0.3s;
}
.info-box-container .phone-hover p {
  font-size: 18px;
  color: #0b612d;
  margin: 0;
  font-weight: 600;
  padding: 0 1%;
}
.info-box-container .contact-input-box {
  height: auto;
  position: fixed;
  bottom: 0;
  right: 65px;
  z-index: 5000;
  border: 2px solid #0b612d;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1% 3%;
  width: 500px;
  transform: translateX(565px);
  transition: 0.3s;
}
.info-box-container .contact-input-box h2 {
  color: #0b612d;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 1rem;
}
.info-box-container .contact-input-box .input-collection input,
.info-box-container .contact-input-box .input-collection textarea {
  display: block;
  padding: 6px;
  width: 100%;
  outline: none;
  background-color: inherit;
}
.info-box-container .contact-input-box .input-collection input {
  border: 0;
  border-bottom: 2px solid #0b612d;
}
.info-box-container .contact-input-box .input-collection textarea {
  border: 2px solid #0b612d;
  height: 100px;
  background-color: #ffffff;
}
.info-box-container .contact-input-box .input-collection label {
  color: #0b612d;
  font-weight: 600;
  margin-top: 1rem;
  text-transform: capitalize;
}
.info-box-container .contact-input-box .input-collection button {
  outline: none;
  border: 0;
  background-color: #0b612d;
  color: #ffffff;
  padding: 8px 30px;
  font-size: 18px;
  margin-top: 1rem;
  text-transform: capitalize;
  border-radius: 10px;
  border: 2px solid #0b612d;
}
.info-box-container .contact-input-box .cross-contact {
  position: absolute;
  top: 3%;
  left: 3%;
  cursor: pointer;
}
.info-box-container .contact-input-box .cross-contact img {
  height: 25px;
  width: 25px;
}

.bio-header-content {
  padding: 10% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5%;
}
@media screen and (max-width: 601px) {
  .bio-header-content {
    height: auto;
    grid-template-columns: 1fr;
    gap: 2.5% 0;
  }
}
.bio-header-content .header-content-image {
  height: calc(300px + 20vw);
  border-top-right-radius: 250px;
  overflow: hidden;
}
@media screen and (max-width: 601px) {
  .bio-header-content .header-content-image {
    border-top-right-radius: 100px;
  }
}
.bio-header-content .header-content-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bio-header-content .header-content-text .text-body {
  padding: 1%;
  margin-top: 7.5%;
}
.bio-header-content .header-content-text .text-body p {
  font-size: calc(10px + 1vmin);
  color: #4A4A4A;
}
@media screen and (max-width: 601px) {
  .bio-header-content .header-content-text .text-body p {
    font-size: calc(10px + 2vmin);
  }
}
.bio-header-content .header-content-text .text-footer {
  padding: 1%;
}
.bio-header-content .header-content-text .text-footer h5 {
  font-weight: 700;
  color: #4A4A4A;
  margin: 0;
}
.bio-header-content .header-content-text .text-footer h6 {
  color: #4A4A4A;
  margin-top: 1%;
}

.back-button {
  padding: 1% 5%;
}
.back-button a {
  padding: 0.5% 3%;
  border-radius: 5px;
  border: 2px solid #0b612d;
  text-decoration: none;
  color: #95c11f;
  text-transform: capitalize;
  font-size: calc(10px + 1vmin);
  transition: 0.3s;
}
.back-button a:hover {
  color: #0b612d;
  background-color: #95c11f;
}

.footer-section {
  height: 350px;
  margin-top: 5%;
}
.footer-section .footer-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.footer-section .footer-grid .footer-logo {
  height: 100%;
  padding: 5%;
}
.footer-section .footer-grid .footer-logo img {
  height: 7.5vmin;
}
.footer-section .footer-grid .footer-content {
  background-image: url("/assets/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-section .footer-grid .footer-content .footer-content-container {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 5%;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data {
  display: grid;
  grid-template-columns: 1fr 5fr;
  color: #ffffff;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-title {
  text-align: right;
  padding-right: 10%;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-title h6 {
  font-weight: 600;
  margin-top: 2px;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-data .address-data p {
  margin-left: 2%;
  font-size: 14px;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a {
  text-decoration: none;
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #95c11f;
  color: #0b612d;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 16px;
  transition: 0.3s;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a:last-child {
  margin-right: 0;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social .social-collection a:hover {
  color: #ffffff;
}
.footer-section .footer-grid .footer-content .footer-content-container .footer-content-social p {
  color: #ffffff;
  font-size: 12px;
  margin-top: 7.5%;
}

@media screen and (max-width: 601px) {
  .header-section .navigation-container .logo-container .header-logo {
    height: 30%;
  }
  .header-section .navigation-container .logo-container .navigation-icon {
    display: block;
    transition: 0.3s;
  }
  .header-section .navigation-container .navigation-menu {
    height: auto;
    left: -100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 0;
    z-index: 1000;
    border-radius: 0;
    padding: 5% 0;
    transition: 0.3s;
  }
  .header-section .navigation-container .navigation-menu a {
    margin-top: 2rem;
    padding: 2% 0;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container {
    margin-top: 7.5%;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container ul {
    background-color: #ffffff;
  }
  .header-section .navigation-container .navigation-menu .dropdown-container ul li a {
    color: #0b612d;
  }
  .header-section .header-content .header-tagline {
    width: 100%;
    height: 45vh;
    border-top-left-radius: 150px;
    top: 0;
    right: 0;
  }
  .header-section .header-content .header-tagline .header-leaf-left img {
    height: 55vmin;
  }
  .header-section .header-content .header-tagline .header-tagline-content {
    margin-left: 5%;
    width: 85%;
  }
  .header-section .header-content .header-tagline .header-tagline-content h1 {
    font-size: 9vmin;
  }
  .info-container {
    height: 180px;
    width: 36px;
  }
  .info-container .info-icon {
    padding: 15px 5px;
    border-bottom: 1px solid #ffffff;
    margin-top: 0;
    background-color: #0b612d;
  }
  .info-container .info-icon img {
    width: 18px;
  }
  .info-box-container .search-input {
    height: 300px;
    position: fixed;
    bottom: 0;
    right: 65px;
    z-index: 5000;
    transform: translateX(425px);
    transition: 0.3s;
  }
  .info-box-container .search-input input {
    width: 250px;
    font-size: 16px;
    margin-top: 130px;
    margin-right: -30px;
  }
  .info-box-container .search-input img {
    height: 25px;
    width: 25px;
    cursor: pointer;
  }
  .info-box-container .phone-hover {
    height: auto;
    padding: 1% 0;
    position: fixed;
    bottom: 7vh;
    right: 36px;
    border-radius: 5px;
    z-index: 5000;
    width: 250px;
  }
  .info-box-container .phone-hover p {
    font-size: 16px;
    margin: 0;
    padding: 1%;
    color: #0b612d;
  }
  .info-box-container .contact-input-box {
    height: auto;
    width: 300px;
    right: 36px;
  }
  .info-box-container .contact-input-box h2 {
    color: #0b612d;
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 1rem;
  }
  .info-box-container .contact-input-box .input-collection label {
    color: #0b612d;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: capitalize;
  }
  .info-box-container .contact-input-box .input-collection button {
    padding: 6px 30px;
    font-size: 16px;
    margin-top: 0.5rem;
  }
  .footer-section {
    height: auto;
  }
  .footer-section .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-section .footer-grid .footer-logo {
    padding: 10%;
  }
  .footer-section .footer-grid .footer-logo img {
    height: 15vmin;
  }
  .footer-section .footer-grid .footer-content {
    height: 500px;
    width: 100%;
    background-color: #0b612d;
    padding: 10%;
    border-top-left-radius: 100px;
  }
  .footer-section .footer-grid .footer-content .footer-content-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5% 10%;
  }
  .footer-section .footer-grid .footer-content .footer-content-container .footer-content-social {
    padding: 0 10%;
    margin-top: 10%;
  }
}
.stories-section .stories-header {
  padding: 0 10%;
}
.stories-section .stories-header img {
  width: 100%;
}
.stories-section .stories-body {
  padding: 10% 7% 5% 7%;
}
.stories-section .stories-body img {
  width: 100%;
}
.stories-section .stories-body .stories-body-content {
  padding: 5% 3% 0 3%;
}
@media screen and (min-width: 1441px) {
  .stories-section .stories-body .stories-body-content {
    padding-top: 10%;
  }
}
.stories-section .stories-body .stories-body-content h4 {
  font-size: 9vmin;
  font-weight: 900;
  color: #0b612d;
  text-transform: capitalize;
  margin-bottom: 0;
}
.stories-section .stories-body .stories-body-content h2 {
  font-size: 13vmin;
  font-weight: 900;
  color: #0b612d;
  text-transform: capitalize;
}
.stories-section .stories-body .stories-body-content .stories-details {
  margin-top: 2rem;
}
.stories-section .stories-body .stories-body-content .stories-details p {
  font-size: 18px;
  color: #4A4A4A;
}
@media screen and (min-width: 1441px) {
  .stories-section .stories-body .stories-body-content .stories-details p {
    font-size: 20px;
  }
}
.stories-section .stories-body .stories-body-content .stories-btn {
  margin-top: 2rem;
}
.stories-section .stories-body .stories-body-content .stories-btn button {
  outline: none;
  background: inherit;
  border: 2px solid #95c11f;
  padding: 1% 5%;
  font-size: 18px;
  color: #0b612d;
  background: inherit;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}
.stories-section .stories-body .stories-body-content .stories-btn button:hover {
  background-color: #0b612d;
  color: #95c11f;
  border: 2px solid #0b612d;
}/*# sourceMappingURL=bio.css.map */