/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #444444; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f3f6f4; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #f3f6f4; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #444444; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #5b5b5b;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Version-Specific Color Themes - These classes can be applied based on the version parameter */
.version-1 {
  --heading-font: "Fira Sans", sans-serif;
  --nav-font: "Fira Sans", sans-serif;
 --default-color: #060606;
 --heading-color: #495a62;
 --accent-color: #495a62;
 --surface-color: #f3f6f4;
 --contrast-color: #f3f6f4;
 --nav-hover-color: #ffffff;
}

.version-1 .dark-background {
  --background-color: #495a62;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #5b5b5b;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.version-1 .btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #978c6a;
  --bs-btn-border-color: #978c6a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg:#756c52;
  --bs-btn-hover-border-color: #756c52;
}

.version-2 {
   --heading-font: "Fira Sans", sans-serif;
  --nav-font: "Fira Sans", sans-serif;
 --default-color: #060606;
 --heading-color: #495a62;
 --accent-color: #495a62;
 --surface-color: #f3f6f4;
 --contrast-color: #f3f6f4;
 --nav-hover-color: #ffffff;
}

.version-2 .dark-background {
  --background-color: #495a62;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #5b5b5b;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.version-2 .btn-dark {
   --bs-btn-color: #fff;
  --bs-btn-bg: #978c6a;
  --bs-btn-border-color: #978c6a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg:#756c52;
  --bs-btn-hover-border-color: #756c52;
}

.version-3 {
   --heading-font: "Fira Sans", sans-serif;
  --nav-font: "Fira Sans", sans-serif;
   --default-color: #060606;
--heading-color: #5e3e1f;
 --accent-color: #5e3e1f;
 --surface-color: #f3f6f4;
 --contrast-color: #f3f6f4;
 --nav-hover-color: #ffffff;
 --background-color: #fdf4e1;
}

.version-3 .dark-background {
  --background-color: #5e3e1f;
  --default-color: #f0f0f0;
  --heading-color: #ffffff;
  --accent-color: #5e3e1f;
  --surface-color: #5e3e1f;
  --contrast-color: #ffffff;
}

.version-3 .btn-dark {
  --bs-btn-color: #fff; 
  --bs-btn-bg: #5e1f20;
  --bs-btn-border-color: #5e1f20;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg:#872a2b;  
  --bs-btn-hover-border-color: #872a2b;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2{
  font-size: 2.25rem !important;
  font-weight: 600 !important;
}

h3{

  font-weight: 400;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #2e3a3f;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }


  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    border-bottom: 2px solid var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    border-bottom: 2px solid var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #2e3a3f;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .company-logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .company-logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

/* Updated Footer Styles for Existing Structure */

.footer .logo div img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer .logo img {
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .footer .logo img{
    max-width: 300px;
  }
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
}

.footer .company-contact .contact-item {
  margin-bottom: 0.5rem;
}

.footer .company-contact .contact-item a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .company-contact .contact-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer .social-links {
  margin-top: 1rem;
  margin-left: -0.5rem;
}

.footer .social-links a {
  transition: all 0.3s ease;
  border: 1px solid transparent !important;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  border: 1px solid var(--contrast-color) !important;
}

.footer .footer-navigation h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
}

.footer .footer-navigation ul li a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer .footer-navigation ul li a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer .footer-navigation ul li a i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.footer .footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  padding-top: 1.5rem;
}

.footer .footer-bottom p {
  color: var(--contrast-color);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

.footer-shadow{
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  max-width: 70ch;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}



.hero-2 .container {
  position: relative;
  z-index: 3;
}

.hero-2 .container div {
 max-width: 600px;
}

.hero-2 h2 {
  margin: 0;
  font-size: 64px !important;
  font-weight: 700 !important; 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.0;
  margin-bottom: 30px;
}

.hero-2 p {
  margin: 5px 0 0 0;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-2 p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero-2 .social-links {
  margin-top: 25px;
}

.hero-2 .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero-2 .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 40px;
  }

  .hero-2 p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  padding: 60px 0;
}

.about .content .img-overlap {
  margin-top: -150px;
}

.about .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

.feature-link:hover {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
  transition: all 0.15s;
}
/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding-bottom: 120px;
}

.about-2 .content {
  padding-right: 30px;
}

.about-2 .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-2 .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-2 .description {
  margin-bottom: 30px;
  color: var(--default-color);
}

.about-2 .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}

.about-2 .main-image {
  flex: 0 0 65%;
  height: 100%;
}

.about-2 .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-2 .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-2 .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}

.about-2 .stats {
  margin-top: 30px;
}

.about-2 .stat-item {
  margin-bottom: 20px;
}

.about-2 .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.about-2 .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .about-2 .content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-2 .image-grid {
    height: auto;
    flex-direction: column;
  }

  .about-2 .main-image,
  .about-2 .side-images {
    flex: 0 0 100%;
  }

  .about-2 .side-images {
    flex-direction: row;
  }

  .about-2 .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: var(--contrast-color);
}

.hero .hero-container {
  padding: 0;
  background-color: var(--contrast-color);
}

.hero .hero-container .content-col {
  padding: 60px 2rem 0 3rem;
  z-index: 2;
  width: 695px;
  margin-left: auto;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.hero .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.hero .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .hero .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.hero .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero .hero-container .content-col p {
    font-size: 1rem;
  }
}

.hero .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.hero .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.hero .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.hero .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.hero .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.hero .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.hero .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.hero .hero-container .hero-swiper {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.hero .hero-container .hero-swiper .swiper-slide .img-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.hero .hero-container .hero-swiper .swiper-button-next,
.hero .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.hero .hero-container .hero-swiper .swiper-button-next:after,
.hero .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero .hero-container .hero-swiper .swiper-button-next:hover,
.hero .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.hero .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {


  .hero .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .hero .hero-container .hero-swiper .swiper-button-next,
  .hero .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero .hero-container .hero-swiper .swiper-button-next:after,
  .hero .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Slider 2 Section
--------------------------------------------------------------*/
.slider-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.slider-2 .section-title {
  text-align: left;
}

.slider-2 .section-title h2 {
  font-size: 40px;
}

.slider-2 .section-title p {
  color: var(--contrast-color);
}

.slider-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.slider-2 .swiper-wrapper {
  height: auto;
}

.slider-2 .service-item {
  position: relative;
  overflow: hidden;
}

.slider-2 .service-item:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.slider-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  transition: 0.3s all ease;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.6);
}

.slider-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.slider-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.8);
}

.slider-2 .service-item:hover img {
  transform: scale(1.2);
}

.slider-2 .navigation-prev,
.slider-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.slider-2 .navigation-prev i,
.slider-2 .navigation-next i {
  font-size: 2rem;
}

.slider-2 .navigation-prev:hover,
.slider-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider-2 .navigation-prev {
  left: 10px;
}

.slider-2 .navigation-next {
  right: 10px;
}

.slider-2 .swiper {
  padding-bottom: 50px;
}

.slider-2 .swiper-pagination {
  bottom: 0px;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
#donate  {
  --background-color: var(--background-color);
  margin-bottom: 60px;
}

.call-to-action .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.call-to-action .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% 50%;
}

.call-to-action .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 60px 20px;
  }

  .call-to-action .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

.faq .faq-list .faq-item .faq-content > .faq-inner {
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me .about-image {
  position: relative;
}

.about-me .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-me .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-me .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-me .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about-me .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-me .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-me .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about-me .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-me .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-me .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about-me .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-me .signature .signature-image {
  max-width: 150px;
}

.about-me .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-me .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

 .report-link:hover {
        text-decoration: underline;
      }




/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/

#map-canvas {
  width: 100%;
  height: 90vh;
}

.info-window {
  padding: 20px;
  background-color: var(--accent-color);
  border-radius: 5px;
  color: var(--contrast-color);
}

.info-window h4{
  color: var(--contrast-color);
}

.gm-style .gm-style-iw {
     background-color: var(--accent-color);
    border-radius: 8px !important;
}

/* Style the InfoWindow arrow/pointer */
.gm-style .gm-style-iw-t::after {
    background-color: var(--accent-color);
}

/* Style the InfoWindow content area */
.gm-style .gm-style-iw-c {
    background-color: var(--accent-color);
    border-radius: 8px !important;
    padding: 0 !important;
}

/* Remove default Google Maps styling */
.gm-style .gm-style-iw-d {
    background-color: var(--accent-color);
    border-radius: 8px !important;
}

.gm-ui-hover-effect > span {
  background-color: #666 !important;
}

/* Map Legend Styles */
.map-legend {
  background-color: white;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1;
  font-size: 12px;
  margin: 10px;
}

.legend-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-marker {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.legend-marker.current-location::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fffc00;
  border: 1px solid #000000;
  opacity: 0.8;
  z-index: 1;
}

.legend-marker.current-location::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fffc00;
  border: 1px solid #000000;
  z-index: 2;
}

.legend-marker.past-location {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fffc00;
  border: 1px solid #000000;
}

.legend-marker.other-deer {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dc02fc;
  border: 1px solid #000000;
}



/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/

.hero-3 {
  width: 100%;
  min-height: 25vh;
  position: relative;
  padding: 60px 0 60px 0;
  display: flex;
  align-items: center;
 background-color: #d5d5d5;
  background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}

.hero-3 h2{
  color: #fff;
  font-size: 3.5rem !important;
  font-weight: 700;
  
}

/* Research Objectives Card */
.research-objectives-card {
  background: #ffffff;
  color: var(--default-color);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.08);
  backdrop-filter: none;
}

/* Objective sections styling */
.objective-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.objective-section:last-child {
  border-bottom: none;
}

.objective-section h5 {
  color: var(--default-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.objectives-list li{
  font-size: 20px;
}

.hypotheses-list h6 {
  color: var(--default-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.hypotheses-list ul {
  margin-bottom: 0;
}

.hypotheses-list li {
color: var(--default-color);
  line-height: 1.6;
  padding: 8px 0;
  border-left: 3px solid rgba(0,0,0,0.15);
  padding-left: 15px;
  margin-bottom: 10px;
  background: rgba(0,0,0,0.03);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
  
}

.hypotheses-list li:hover {
  background: rgba(0,0,0,0.06);
  border-left-color: rgba(0,0,0,0.25);
}

.hypotheses-list li strong {
 color: var(--default-color);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .objective-section {
    padding: 15px 0;
  }
  
  .hypotheses-list li {
    padding: 10px 0 10px 12px;
    font-size: 14px;
  }
}

.research-objectives-card .nav-link {
  color: var(--default-color);
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.research-objectives-card .nav-link.active,
.research-objectives-card .nav-link:focus {
  background: rgba(0,0,0,0.08);
  color: var(--default-color);
  border: 1.5px solid var(--accent-color);
}
.research-objectives-card .tab-pane {
 color: var(--default-color);
}
.research-objectives-card h3,
.research-objectives-card h5,
.research-objectives-card ul,
.research-objectives-card li {
  color: var(--default-color);
}

.research-objectives-card h5{
  font-weight: 400;
}

/* Hypothesis tabs full width */
.research-objectives-card .nav-tabs {
  display: flex;
  width: 100%;
}

.research-objectives-card .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}

.research-objectives-card .nav-tabs .nav-link {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/


.contact .contact-form {
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  color: var(--contrast-color);
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/

  .clients .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
  }
    .clients .client-logo img {
      transition: 0.3s;
      @media (max-width: 640px) {
        .clients .client-logo img {
        padding: 30px;
        max-width: 50%;
      }
    }
  }
    .clients .client-logo img:hover {
      transform: scale(1.1);
    }

    #contact{
      background-color: var(--contrast-color);
    }

.section-hero h2{
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .reporting{
      background-image: url(../img/version1/research.jpg);
    }

    .contact-hero{
      background-image: url(../img/version1/contact.jpg);
    }

    .about-hero{
      background-image: url(../img/version1/about-hero.jpg);
    }

    .faq-hero{
      background-image: url(../img/version1/faq-hero.jpg);
    }

    .map-hero{
      background-image: url(../img/version1/map-hero.jpg);
    }

  

    .map-hero h2{
      color: var(--heading-color);
      text-shadow: 0 0 0;
    }

    .get-involved-hero{
      background-image: url(../img/version1/get-involved-hero.jpg);
    }

    .quick-facts{
      background-color: var(--contrast-color);
    }

     .version-1 .home-hero-content{
      margin: 0 30px;
    } 

     .version-2 .home-hero-content{
      background-color: #0000006b;
      padding: 43px;
      border-radius: 10px;
    } 

    .version-2 .home-hero-content h2{
      font-size: 3.5rem !important;
      line-height: 1.09;
      margin-bottom: 10px !important;
    }

    .version-2 .home-hero-content h3{
      font-size: 1.4rem !important;
    }

    .version-2 .home-hero-content p{
      font-size: 1rem !important;
    }