
/*
 *  HEADERBACKGROUND CLASSES for changing images on specific pages:
 *
 */
.landing-page .header-back.one {
  background: url('../img/backgrounds/backdrop_punch.jpg') 50% center no-repeat;
  filter: brightness(40%);
}

.header-background-one {
  background: url('../img/backgrounds/website_background_one.png') 50% center no-repeat;

}

.header-background-two {
  background: url('../img/backgrounds/website_background_two.png')  right 35% bottom 30% no-repeat;

}

.header-background-three {
  background: url('../img/backgrounds/website_background_three.png') right 60% bottom 30% no-repeat;

}

.header-background-four {
  background: url('../img/backgrounds/header_four.jpg')  right 15% bottom 60% no-repeat;
}

.header-background-five {
  background: url('../img/backgrounds/header_five.jpg')  right 50% bottom 30% no-repeat;
}

.header-background-mumbai {
  background: url('../img/backgrounds/mumbai_background.jpg')  right 50% bottom 30% no-repeat;  
}

/* 
 * HEADER BACKGROUND IMAGE GENERAL SETTINGS UPDATED
 */
.header-background {
  width: 100%; /* Make sure it spans the full width of the screen */
  padding-left: 60px;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-right: 60px;
  text-align: center;
  color: white;
  font-size: 30px;
  background-size: cover; /* Ensure the background image stretches to cover the entire container */
  background-position: center center; /* Center the background image */
  position: relative; /* Allow positioning of child elements */
  overflow: visible; /* Allow overflow, just in case the text is getting clipped */
  display: flex; /* Use flexbox for flexible layout */
  flex-direction: column; /* Stack icon and text vertically */
  justify-content: center; /* Vertically center the content */
  align-items: center; /* Horizontally center the content */
}

/* IMAGE CROP SETTINGS */
.image-cropper {
 /*  height: calc(100vh - 80px); /* Make sure it takes the height of the viewport minus the header height */
  overflow: hidden; /* Hide overflow content from the image */
  width: 100%; /* Make sure it spans the full width of the header */
  position: relative;
}


/* HEADER ICON SETTINGS */
.header-icon {
  max-width: 40%; /* Make sure the icon takes up a good portion but doesn’t overflow */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the icon fits nicely in its container */
  /* object-position: center 25px; /* Adjust vertical position */
  object-position: center; /* Center the icon */
  margin-top: -20px;  /* Move the image up to crop the top 20px */
  margin-bottom: -85px;  /* Move the image down to crop the bottom 20px */
}


/* HEADER TEXT BELOW ICON */
.header-text-bottom {
    z-index: 10; /* Ensure the text stays above other elements */
    position: relative; /* Keep text within the header */
    text-align: center; /* Ensure the text is centered */
    padding-top: 30px;
    padding-bottom: 50px; /* Increase bottom padding to give more room */
}


ol, ul {
    margin-top: .75rem;
}


.form-text {
   font-size: .98em !important;
}

.form-label {
    font-size: 14px !important;
}

.form-check-label {
   font-size: 14px !important; 
}


/* Form Boxes
.form-control, .single-line, .form-select, .ts-control {
    border: 1px solid #abadaf !important;
}
*/

/* SEARCHABLE SELECT FIELDS */
.ts-control {
    border-radius: 6px !important;
    min-height: calc(1.5em + .75rem + 2px); /* match input height */
}

.ts-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 25%);
}


.xl-label {
    font-size 16px;
}

.form-select, .tom-select, .ts-control {
    font-size: 14px;
}

/* Form Boxes */
.paf-form-box, .ts-control {
    border-radius: 6px;
    border: 1px solid #abadaf !important;
    font-size: 14px !important;
    
}

.ts-dropdown, .ts-control, .ts-control input {
  font-size: 14px !important;  
}

.form-check-input {
    border: 1px solid #abadaf !important;
}

.ts-dropdown, .ts-control, .ts-control input {
     font-size: .9rem;
}

/* Make the Tom Select control look like a Bootstrap select */
.ts-wrapper.single .ts-control {
    position: relative;
    padding-right: 2.5rem;            /* room for the arrow */
    border-radius: .375rem;           /* match Bootstrap 5 */
    border-color: #ced4da;
    min-height: calc(1.5em + .75rem + 2px);
}

/* Down arrow on the right, like Bootstrap */
.ts-wrapper.single .ts-control::after {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: .75em;
    height: .75em;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Optional: rotate arrow when open/focused */
.ts-wrapper.single .ts-control.focus::after,
.ts-wrapper.single .ts-control.dropdown-active::after {
    transform: translateY(-50%) rotate(180deg);
}




/* For smaller screens */
@media (max-width: 1685px) {
    .header-icon {
      max-width: 40%; /* Make sure the icon takes up a good portion but doesn’t overflow */
      margin-top: -20px;  /* Move the image up to crop the top 20px */
      margin-bottom: -50px;  /* Move the image down to crop the bottom 20px */
    }
    .header-text-bottom {
        padding-top: 20px !important;
        padding-bottom: 30px !important; /* Increase bottom padding to give more room */

    }
}

/* For smaller screens */
@media (max-width: 1090px) {
    .header-icon {
      max-width: 40%; /* Make sure the icon takes up a good portion but doesn’t overflow */
      margin-top: -20px;  /* Move the image up to crop the top 20px */
      margin-bottom: -40px;  /* Move the image down to crop the bottom 20px */
    }
    .header-text-bottom {
        padding-top: 20px !important;
        padding-bottom: 30px !important; /* Increase bottom padding to give more room */
        font-size: 24px !important;

    }
}

 /* mobile header text size and spacing */ 
@media (max-width: 768px) {
    .header-icon {
      max-width: 40%; /* Make sure the icon takes up a good portion but doesn’t overflow */
      margin-top: -20px;  /* Move the image up to crop the top 20px */
      margin-bottom: -50px;  /* Move the image down to crop the bottom 20px */
    }
     .header-text-bottom {
        padding-top: 20px !important;
        padding-bottom: 20px !important; /* Increase bottom padding to give more room */
        font-size: 22px !important;
    }
}

#chapter-map {
      height: 600px;
      width: 100%;
      border-radius: 12px;
      margin-bottom: 0px;
}


/* COLOR OVERRIDES */
 
/*
 *  COLOR OVERRIDES: #1ab394 to #31BABC 
 *  #17987e to #31BABC 
 *  #179d82 to #31BABC
 * 31BABC blue verdigris
 * F4F4F4 white smoke - should be a little darker
 * f16F55 tomatoe
 * 333333 Jet
 * 465C69 for Payne's gray
 */
 
/* Sign up form header sections for H4s */
h4.form-section-header {
    font-weight: 900;
    font-size: 18px;
}

.form-check-label {
    font-weight: 400;
}
 
/* Initial transparent navbar */
.landing-page .navbar {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

/* Hide airtable headers */
.heading-size-xxlarge {
  display: none;
}

/* Navbar changes to white on scroll */
.landing-page .navbar.scroll-active {
  background-color: #fff;
  border-color: #fff;
}

 /* Change text color when scrolled */
.landing-page .navbar.scroll-active .nav-link {
  color: #676a6c !important; /* Text color for white background */
}

.landing-page .navbar .nav-link {
  color: #fff; /* Initial text color for transparent background */
}

.landing-page .navbar .nav-link:hover,
.landing-page .navbar .nav-link:focus {
  color: #31BABC !important; /* Hover color, if needed */
  border-top: 6px solid #31BABC !important;
}

.form-card {
  background: #F16F55;
  color: #FFFFFF;
}

.red-card {
  background: #F16F55;
  color: #FFFFFF;   
}

.landing-page section p {
 color: #212529;
 font-size: 16px;
}


.dropdown-menu {
  position: absolute;
  z-index: 2050; /* Or higher */
}

.city-card {
  background: #31BABC;
  color: #FFFFFF;

}


.card-title {
 font-weight: bolder;
 font-size: 16px;
 margin-top: 5px;
 
}


.landing-page .color-section {
  background: #31BABC;
  margin-top: 0px;
}


.footer-links {
    list-style-type: none; /* Remove the dots */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    line-height: 1.8;
    font-size: 1.0rem; /* Increase font size */
}

li {
    font-size: 1.0rem;
   /*  font-weight:500;*/
}
.dark-section h3 {
    font-family: "Londrina Solid", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .15rem;
}

.dark-section {
    background: #3a3a3b;
    color: #ffffff; /* Set text to white */
    margin-top: 0;
    font-weight: 400; /* Set font weight to 400 */
}


a {
    color: #31BABC; /* Set links to a blue color */
    text-decoration: none; /* Optional: remove underline */  
    font-weight: 600;
}

.bold-label {
  font-weight: 600;  
}

.dark-section a {
    color: #ffffff; /* Set links to a blue color */
    text-decoration: none; /* Optional: remove underline */
}

.dark-section  p {
    color: #ffffff;
}

.contact-footer p {
   color: #ffffff; 
}
.dark-section h3 {
    color: #31BABC;
    font-weight: 500;
}

.dark-section .navy-line {
    border-bottom: 2px solid #31BABC;
}
.dark-section a:hover {
    color: #ffffff; /* Optional: lighter blue on hover */
    text-decoration: underline; /* Optional: underline on hover */
}


.label-header {
    font-weight: 600;
    font-size:18px;
}

/* Make radio circles bigger */
.form-check-input {
  transform: scale(1.3);   /* adjust between 1.1 and 1.6 */
  margin-right: 6px;       /* fix spacing so it doesn’t overlap label */
}

/* Optional: ensure it doesn't break alignment vertically */
.form-check {
  align-items: center;
}

.form-switch .form-check-input {
  width: 2.5rem;
  height: 1.2rem;
}

/* STAR RATING FIX — ensure radios are hidden */
.star-input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* Container layout */
.star-rating {
  display: inline-flex !important;
  flex-direction: row-reverse !important;
  gap: 4px;
}

/* Default star style */
.star-label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

/* When a radio is checked */
.star-input:checked + .star-label,
.star-input:checked ~ .star-label {
  color: #f5b301 !important;
}

/* Hover behavior */
.star-label:hover,
.star-label:hover ~ .star-label {
  color: #f5b301 !important;
}



.landing-page .color-section-two {
  background: #F16F55;
  margin-top: 0px;
}

.white-color {
  color: #fff !important;
}

.gray-color {
  color: #f4f4f4;
}
  
.paf_footer {
  max-width: 150px;
  margin-bottom:15px;
}

 body.landing-page {
  color: #212529;
  font-family: 'Quicksand', 'Open Sans', helvetica, arial, sans-serif;
 /*  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;*/
  font-weight: 400;
  background-color: #fff;
}

.c-bold {
  font-weight: 700;
}


.landing-page h1 {
 font-family: "Londrina Solid", sans-serif;
 text-transform: uppercase;
 margin-top: 10px;
 font-size: 56px;
 font-weight: 400;
}

#partners h2{
 font-family: "Londrina Solid", sans-serif;
 text-transform: uppercase;
 margin-top: 10px;
 font-size: 45px;
 font-weight: 400;
 letter-spacing: .15rem;     
}

#chapterSponsors h2{
 font-family: "Londrina Solid", sans-serif;
 text-transform: uppercase;
 margin-top: 10px;
 font-size: 45px;
 font-weight: 400;
 letter-spacing: .15rem;  
}

.landing-page .features h3 {
 font-family: "Londrina Solid", sans-serif;
 text-transform: uppercase;
 font-size: 24px;
 font-weight: 400;
 letter-spacing: .15rem;

}

.landing-page .about h2 {
  font-family: "Londrina Solid", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .15rem;
 }

 .landing-page .works h2 {
  font-family: "Londrina Solid", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .15rem;
 }

.event-header {
 font-weight: 700 !important;
}


/*
 *  TOGGLE SELECTORS - USED ON MAP
 *
 */ 

/* Customize Bootstrap switch color */
.form-check-input:checked {
  background-color: #31BABC;
  border-color: #31BABC;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 186, 188, 0.25);
}

.form-check-input {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Ensure the container is using flex to align everything */
.custom-switch {
  display: inline-flex;
  align-items: center;  /* Vertically center the toggle and label */
}
.vote-label {
    font-weight: 900;
    display: inline-flex;
    align-items: center;  
    margin-left: 2em;
}
.custom-sitch {
  padding-right: 2em;  
}

.vote-switch {
   padding-left: .5em; 
   padding-right: 1.5em;
}


/* Make the switch toggle bigger */
.custom-switch .form-check-input {
  transform: scale(1.6); /* Make the switch 1.5x larger */
  margin-left: 0.5em; /* Adjust the left margin for proper alignment */
  margin-right: 0.5em; /* Adjust the right margin */
  vertical-align: middle; /* Ensure the switch is vertically centered */
  /* Remove default vertical alignment issues */
  align-self: center; /* Vertically align the toggle within the flex container */
}

/* Label styling: flex container for aligning text and images */
.custom-switch .form-check-label {
  display: flex;
  margin-left: 8px;
  align-items: center;  /* Vertically align the text and images with the toggle */
}

/* Label styling: flex container for aligning text and images */
.vote-switch .form-check-label {
  display: flex;
  margin-left: 4px;
  align-items: center;  /* Vertically align the text and images with the toggle */
}

/* Adjust size and spacing of the switch itself */
.custom-switch .form-check-label::before {
  width: 3rem;  /* Increase the switch width */
  height: 1.75rem; /* Increase the switch height */
}

/* Ensure the images scale and align properly */
.custom-switch .form-check-label img {
  width: 30px;  /* Adjust icon size */
  height: 30px; /* Adjust icon size */
  object-fit: contain; /* Prevent stretching of images */
}





/*
 *  SHOW MORE BUTTON FOR PARTNER LOGOS
 *
 */
#expand-logos-btn {
    display: block; /* Makes the button a block-level element */
    margin-top: 0px; /* Adds space above */
    margin-bottom: 20px;
    text-align: center; /* Centers the button */
    color: #888; /* Light grey color for the text */
    font-size: 16px; /* Same font size as the rest of the site */
    background: none; /* No background to avoid button-like appearance */
    border: none; /* No border */
    cursor: pointer; /* Indicates the text is clickable */
    font-weight: normal; /* Ensures the text isn't bold */
    text-decoration: none; /* Removes underline */
}

.expand-logos-button {
    display: block; /* Makes the button a block-level element */
    margin-top: 0px; /* Adds space above */
    margin-bottom: 20px;
    text-align: center; /* Centers the button */
    color: #888; /* Light grey color for the text */
    font-size: 16px; /* Same font size as the rest of the site */
    background: none; /* No background to avoid button-like appearance */
    border: none; /* No border */
    cursor: pointer; /* Indicates the text is clickable */
    font-weight: normal; /* Ensures the text isn't bold */
    text-decoration: none; /* Removes underline */
}

.button-center {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
   
}


#expand-logos-btn:hover {
    color: #555; /* Darker grey color on hover */
}


/*
 *  NAVBAR FOR BOOSTRAP 5 UPDATE
 *
 */
 .landing-page .navbar {
  padding: 0 1rem;
}

.landing-page .navbar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
}

.landing-page .navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}

.landing-page .navbar-wrapper .navbar {
  padding-right: 60px;
  padding-left: 15px;
}

.landing-page .navbar.navbar-scroll {
  background-color: #fff;
  border-color: #fff;
  padding: 15px 0;
}

.landing-page .navbar {
  background-color: transparent;
  border-color: transparent;
  transition: all 0.3s ease-in-out 0s;
}

.landing-page .navbar .nav-item .nav-link {
  color: #fff;
  font-family: 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 25px;
  border-top: 6px solid transparent;
}



.landing-page .navbar .nav-item .nav-link.active,
.landing-page .navbar .nav-item .nav-link.active:hover {
  background: transparent;
  color: #fff;
  border-top: 6px solid #31BABC;
}

.landing-page .navbar .nav-item .nav-link:hover,
.landing-page .navbar .nav-item .nav-link:focus {
  color: #31BABC;
  background: inherit;
}

.landing-page .navbar .navbar-brand:hover,
.landing-page .navbar .navbar-brand:focus {
  background: #31BABC;
  color: #fff;
}

.landing-page .navbar .navbar-brand {
  color: #fff;
  height: auto;
  display: block;
  font-size: 14px;
  background: #31BABC;
  padding: 15px 20px;
  border-radius: 0 0 5px 5px;
  font-weight: 700;
  transition: all 0.3s ease-in-out 0s;
  margin-top: -16px;
}

.landing-page .navbar-scroll .nav-item .nav-link {
  color: #676a6c;
}

.navbar .nav-item .dropdown-item {
  color: #676a6c;
  font-family: 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 13px;
}

.landing-page .navbar-scroll .nav-item .nav-link:hover {
  color: #31BABC;
}

.landing-page .navbar-wrapper .navbar.navbar-scroll {
  padding-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e7eaec;
  border-radius: 0;
}

.landing-page .navbar .navbar-nav {
  flex-direction: row;
}

.landing-page .navbar .nav-item.active {
  border: none;
  background: inherit;
}

.landing-page .navbar .nav-item .nav-link {
  padding: 25px 10px 15px 10px;
}

.landing-page .navbar-scroll .nav-item .nav-link {
  padding: 20px 10px;
}

.landing-page .navbar .nav-item .nav-link.active,
.landing-page .navbar .nav-item .nav-link.active:hover {
  border-top: 6px solid #31BABC;
}

.landing-page .fixed-top {
  border: none !important;
}

.landing-page .fixed-top.navbar-scroll {
  border-bottom: 1px solid #e7eaec !important;
}

.landing-page .navbar.navbar-scroll .navbar-brand {
  margin-top: 5px;
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
  height: auto;
}


.accordion-button:not(.collapsed) {
    background-color: rgba(49, 186, 188, 0.5); /* Adjust the alpha value (0.5) to control transparency */
    color: #000000; /* Change text color if needed */
    border-color: rgba(49, 186, 188, 0.5); /* Optional: match the border color */
}


/* News page section */

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  align-items: flex-start;
}

.news-image {
  width: 200px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
 /* background-color: #f0f0f0; */
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.news-content {
  flex-grow: 1;
}

.news-headline {
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
}

.news-headline:hover {
  text-decoration: underline;
}

.news-meta {
  font-size: 0.875rem;
  color: #666;
  margin-top: 4px;
}


/* Event Image in About Section */

.event-image{
  margin-top:55px;
  border-radius: 25px;
}

.bold-color-1 {
 font-weight: 900;
 color: #31BABC;
}


.organizer-bio {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  display: block;
  margin: 10px auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.organizer-block {
    margin-top:0px;
    margin-bottom:30px;
    margin-left:40px;
    margin-right:40px;
}

.bio-icon {
  cursor: pointer;
  font-size: 0.9rem;
  color: #6c757d;
  margin-left: 0.25rem;
}
.bio-icon:hover {
  color: #212529;
}

.popover {
  max-width: 320px;
}
/* Pet Partner Logos */
.pet-partners  { max-height: 150px  !important; }


.sponsor-tier {
    padding: 15px !important; 
}
/* Sponsor Logos */
.sponsor-tier-1 { 
    max-height: 250px  !important; 
    /*  max-width: 300px !important;*/
    
}
.sponsor-tier-2 { 
    max-height: 120px  !important; 
   /* max-width: 175px !important;*/
    
}
.sponsor-tier-3 { 
    max-height: 75px  !important;
   /* max-width: 150px !important;*/
    
    
}

/* Text macro stylings */

.section-list h4 {
  /* Your styles for h4 elements inside .section-list */
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 1.5rem;
  color: #F16F55;
  margin-bottom: 0.5rem;
}


.section-list-header {
  /* overrides section header */
  font-size: 1.25rem;
  font-weight: 800;
  color: #F16F55;
}

.section-list p {
  /* Your styles for p elements inside .section-list */
  font-size: 1rem;
  margin-bottom: 1rem;
}


/* Only styles the <ol> element with the class "rules-list" */
.rules-list {
    counter-reset: list-counter; /* Resets the counter */
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Target only <li> that are direct children of <ol>.rules-list */
.rules-list > li {
    counter-increment: list-counter; /* Increments the counter for each list item */
    list-style-type: none; /* Removes default list styling */
    position: relative; /* Positioning for the custom counter */
    margin-bottom: 1em;
}

/* Style the custom counter, only for the <li> inside <ol>.rules-list */
.rules-list > li::before {
    content: counter(list-counter) ". "; /* Displays the counter */
    font-size: 16px; /* Sets font size */
    font-weight: 900; /* Sets font weight */
    color: #31BABC; /* Sets color */
    position: absolute; /* Allows positioning */
    left: -2em; /* Adjust this value to position the numbers */
}



.navy-bg,
.bg-primary {
  background-color: #31BABC !important;
  color: #ffffff;
}

.city {
  background-color: #31BABC !important;
  color: #ffffff;
  padding-left:10px;
  padding-right:10px;
  padding-top:20px;
  padding-bottom:20px;
  margin-bottom:25px;
  border-radius: 25px;
}

.city-name-header {
  margin-top:20px;
  font-size: 27px;
}

.bold-color-2 {
 font-weight: 900;
 color: #F16F55;
}

.label-secondary,
.badge-secondary {
  background-color: #F16F55;
  color: #FFFFFF;
}


.text-primary-1 {
 color: #31BABC;
}

.text-secondary-1 {
 color: #F16F55;
}

.landing-page .gray-section {
 background: #edeadd;
 margin-top: 0px;
}

.landing-page .gray-dark-section {
  background: #465c69;
  margin-top: 0px;
 }

.landing-page .navy-line {
 width: 60px;
 height: 1px;
 margin: 60px auto 0;
 border-bottom: 2px solid #F16F55;
}

.landing-page .btn-primary {
 background-color: #31BABC;
 border-color: #31BABC;
 color: #FFFFFF;
 font-size: 14px;
 padding: 10px 20px;
 font-weight: 600;
}

.vertical-timeline-icon {
 border: 3px solid #F16F55;
}

#vertical-timeline.light-timeline:before {
 background: #F16F55;
}

.landing-page .btn-primary-2 {
 background-color: #F16F55;
 border-color: #F16F55;
 color: #FFFFFF;
 font-size: 14px;
 padding: 10px 20px;
 font-weight: 600;
}

.landing-page .social-icon a {
 background: #F16F55;
 color: #fff;
 padding: 4px 8px;
 height: 28px;
 width: 28px;
 display: block;
 border-radius: 50px;
}

.landing-page .social-icon a:hover {
 background: #F16F55;
}

#contact {
  margin-top:0px;
}

.text-dark {
 color: #676a6c;
}

.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 5px;
}
.conduct li {
  font-size: 15px;
}
/* to center flex-items */
.flex-item {
   margin: auto;
}



/*
 *  Calendar Widget Popup Buttons:
 *
 */


.popup-button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
    justify-content: space-between; /* Equally space buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.popup-action-button {
   /*  background-color: #007bff; /* Button color */
   /*  color: white; /* Text color */
    border: none;
    padding: 10px 20px; /* Adjust padding as needed */
   /*  font-size: 16px;  */
    font-weight: bold;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    width: 100%; /* Make buttons full-width in small screens */
    max-width: 200px; /* Max width for larger screens */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.popup-action-button i {
    margin-right: 5px; /* Space between icon and text */
}



@media (min-width: 600px) {
    .popup-action-button {
        width: auto; /* Reset width to auto on larger screens */
    }
}


/*
 *  Sizing:
 *
 */

.footer-row {
    margin-top:60px !important;
}



img.featured-on {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 20px;
  margin-left: 8px;
  margin-right: 8px;
}

img.partners {
  margin-top: 20px;
  max-width: 200px;
  max-height: 175px;
  margin-left: 10px;
  margin-right: 10px;
}

.landing-page .carousel-caption {
  position: absolute;
  top: 100px;
  left: 0;
  bottom: auto;
  right: auto;
  text-align: center;
}

.landing-page .carousel-caption.landing-page {
  padding-left: 50px;
}

.landing-page .carousel-caption.form-page {
  padding-left: 150px;
}

.landing-page .carousel-caption h1 {
 font-weight: 700;
 font-size: 60px;
 text-transform: uppercase;
 text-shadow: none;
 letter-spacing: .15rem;
 
}

.landing-page .carousel-caption h1.landing-header-text {
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: none;
  text-shadow: none;
  letter-spacing: .15rem;
  
 }

 .landing-page .carousel-caption h1.form-header-text {
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 900;
  font-size: 48px;
  text-transform: none;
  text-shadow: none;
  letter-spacing: .15rem;
  
 }

 h1.landing-background-header-text {
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: none;
  text-shadow: none;
  letter-spacing: .15rem;
  
 }

 h1.landing-background-header-text-large {
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  text-transform: none;
  text-shadow: none;
  letter-spacing: .15rem;
  
 }

  h1.form-background-header-text {
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 900;
  font-size: 48px;
  text-transform: none;
  text-shadow: none;
  letter-spacing: .15rem;
  
 }

.accordion-button {
  font-size: 26px;
}

.accordion-small-text {
  font-size: 14px;
  font-family: 'Comfortaa', 'Open Sans', helvetica, arial, sans-serif;
  text-align: left
}
.landing-page .carousel-caption h2 {
 font-weight: 900;
 font-size: 28px;
 text-transform: none;
 text-shadow: none;
 letter-spacing: .15rem;
}





/* Calendar Widget Blocks */



.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Spacing between blocks */
    padding: 20px 0;
    max-width: 940px;
    margin: 0 auto; /* Center the grid horizontally */
}

.event-card:hover {
    transform: translateY(-5px);
}



.event-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards are the same height */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.event-details {
    flex-grow: 1; /* Allows content to fill space, keeping the button pushed down */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; /* Maintains wrapping of other event details */
    align-content: flex-start; /* Ensures text stays at the top */
    padding: 15px;
}




.button-bottom {
    width: 100%; /* Ensures button takes full width */
    display: flex;
    justify-content: center; /* Centers button if needed */
    margin-top: auto; /* Pushes button to bottom */
}



.cal-button {
    width: 100% !important; /* Makes sure the button is full width */
    padding: 5px 20px !important;
}



.event-banner {
    position: relative;
    max-height: 200px;
    background: #000;
    background: transparent !important;
    min-height: 0 !important;
    padding: 0 !important;
}

.event-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Push image down */
}


.event-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #31BABC;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}



.event-location, .event-title {
    display: block;
    width: 100%;
}

/* Neighborhood */
.event-location {
    color: #F16F55;
    font-size: 14px;
   font-weight: bold;
    text-transform: uppercase;
}

.event-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
}

.event-month {
    display: block;
    font-size: 16px;
}

.event-day {
    display: block;
    font-size: 30px;
    font-weight: bold;
}

.event-tags {
    font-size: 16px;
    font-weight:800;
}

.event-meta-wrapper {
    font-size: 14px;
    color: #555; 
    margin-bottom:10px;
   /* display: flex; /* New */
   /* flex-wrap: wrap; /* New */
   /* gap: 6px; /* New */
   /* margin-top: 10px;/* New */
}

.event-dow,
.event-time,
.event-venue {
    background: #f3f3f3;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

.event-dow {
    text-transform: uppercase;
}

/* STACKED EVENT CAL WIDGET */
.mobile-banner {
    display: none;
}
.stacked-event-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between event cards */
    margin-top: 20px;
}


.stacked-event-card {
    display: flex;
  
    flex-direction: row; /* Align items vertically*/
    align-items: stretch; /* Ensure the elements inside stretch to the full height of the card */
    background: #f8f8f8;
    padding-right: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    min-height: 150px;
}

    /* Date and Logo in 2 Columns - Only on mobile */
    .stacked-event-card > .stacked-event-header {
        display: flex;
        flex-direction: row; /* Align date badge and logo side by side */
        gap: 10px; /* Add space between the date badge and logo */
        align-items: center;
        justify-content: space-between;
    }

.stacked-event-date-badge {
    background: #31BABC;
    background-color:#31BABC;
    color: white;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    font-weight: bold;
    height:100%;
    width: 100px; 
    
    /*width: 100px; Make the div a flex container */
    /*height: 150px;Make the div a flex container */
    display: flex; /* Make the div a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; 
}

.stacked-event-logo {
    display: flex; /* Make the div a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; 
}

.stacked-event-logo img {
   /* width: 180px; */
    max-width: 150px;
    width: 150px; /* Or whatever size you want */
    height: 150px; /* Ensures uniform image height */
    padding:10px;
    object-fit: contain; 
   /* margin-left: 10px; */

}

.stacked-event-logo img {
    visibility: hidden;
}
.stacked-event-logo img.loaded {
    visibility: visible;
}


.stacked-event-logo {
    background: transparent !important;
    min-height: 0 !important;
    padding: 0 !important;
}

.stacked-event-info {
    flex-grow: 1;
    padding: 15px 15px;
    justify-content: center; /* Keep the content centered vertically */
    
}

.stacked-event-location {
    font-weight: bold;
    color: red;
    text-transform: uppercase;
}

.stacked-event-title {
    font-size: 1.3em;
    font-weight: bold;
}

.stacked-event-button {
    display: flex;
    justify-content: center; /* Centers button horizontally */
    align-items: center; /* Centers button vertically */
    width: 140px; /* Fixed width for uniform buttons */
    flex: 0 0 auto; /* Prevents shrinking/stretching */
}

.stacked-btn {
    background: red;
    color: white;
    border: none;
    width: 100%; /* Ensures button fills the container */
    text-align: center;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* Stacked Event Layout - Mobile or Few Events */
@media (max-width: 1000px) {
    .stacked-event-list {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adds space between event cards */
        margin-top: 20px;
 
    }

    .stacked-event-card {
        display: flex;
        width: 100%;      /* Make card take full available width */
        max-width: 480px; /* Optional: don't let it get too wide on tablets */
      
        min-width: 300px; /* Prevents them from getting too small */
        min-height: 300px;
        flex-direction: column; /* Stack items vertically */
        background: #f8f8f8;
        padding-right: 0px;
        border-radius: 15px;
        margin: 0 auto 15px; /* Centers the card */
    }
    
    .mobile-banner {
        display: block; /* Show only on mobile */
        position: relative;
        overflow: hidden;
        border-top-right-radius: 10px;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 10px; /* Adds a little space below the image */
        height: 250px;
    }
    
    .mobile-banner img {
        width: 100%;
        height: 250px; /* Set a fixed height */
        object-fit: cover; /* Ensure it covers the area */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
       /*  object-position: center bottom; Push image down */
    }

    .stacked-event-header {
        display: none !important; /* Hide header on mobile */
    }

    /* Positioning of the date badge over the mobile banner image */
    .stacked-event-date-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #31BABC;
        color: #fff;
        padding: 5px 5px;
        border-radius: 5px;
        text-align: center;
        height: 40%;
    }

    .stacked-event-logo {
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .stacked-event-logo img {
        max-width: 450px; /* Adjust size for mobile */
        width: 100%;
        height: 100px;
        object-fit: contain;
    }

    .stacked-event-info {
        padding: 10px 15px;
    }

    .stacked-event-location,
    .stacked-event-title {
        font-size: 1em; /* Adjust font size for mobile */
    }
    .stacked-event-button {
        width: 100%; /* Full-width button on mobile */
        padding: 18px;
    }
}



.content-placeholder {
  min-height: 300px;
  background: transparent !important;
}

/* Modal for event cal */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    max-width: 90%;
    position: relative;
    max-height: 80vh;    /* Prevents content from overflowing off-screen */
    overflow-y: auto;    /* Enables scrolling when content exceeds the max height */
    overflow-x: hidden;  /* Prevents horizontal scrolling */
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

 .popup-location {
  text-transform: uppercase;   
 }

.popup-title {
   font-weight: bold;  
}

.popup-description p {
    margin-bottom: 3px;
    
}
/* Margins */
.mt-0 {
  margin-top: 0px;
}

.mt-2 {
    margin-top: 2px; 
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.pt-15 {
  padding-top: 15px;
}


.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
    margin-bottom: 1px;
}
.mb-3 {
  margin-bottom: 3px;
}


.ml-3 {
  margin-left: 3px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
    margin-left: 10px; 
}

.ml-25 {
  margin-left: 25px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-5 {
 margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
 }
 

.mr-3 {
 margin-right: 3px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mr-3 {
  margin-top: 3px;
}

.vertical-timeline-content h2 {
 font-size: 20px;
}

.circle-logo {
 margin-left:25px;
}

.vertical-timeline-content p {
 font-size: 18px !important;
 margin: 0 !important;
}

.vertical-container {
 width: 60%;
 margin-left: 400px;
}

.calendar-image {
 max-width:150px;
 max-height:100px;
}

.vertical-timeline-logo {
 position: absolute;
 top: 0;
 left: 0;
 margin-top: 0px;
 margin-left: -150px;
}

.vertical-timeline-block {
 position: relative;
 margin: 3.5em 0;
}

.vertical-timeline-icon {
 position: absolute;
 top: 0;
 left: 0;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 font-size: 16px;
 border: 3px solid #f1f1f1;
 text-align: center;
}
.vertical-timeline-content {
 position: relative;
 margin-left: 80px;
 background: white;
 border-radius: 0.25em;
 padding: 1em;
}

.desktop-hide {
 display: none;
}

.paf_header {
  max-width: 300px;
  margin-right: 25px;
 }

/*
 * Middle Sized Screens
 */
 @media only screen 
 and (max-width: 992px) {

  .vertical-container {
    width: 90%;
    margin-left: 180px;
   }

 }

/*
 * SMALLER SCREEN
 */

/* Responsive: Switch to 2 columns on smaller screens */
@media (max-width: 1024px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




@media (max-width: 767px) {
 
  .mobile-hide {
   display: none;
 }

  .desktop-hide {
  display: initial;
 }

 .landing-page .navbar-wrapper .navbar {
  padding-right: 15px !important;
  padding-left: 15px;
}

/*
.landing-page .navbar .nav-item .nav-link.active,
.landing-page .navbar .nav-item .nav-link.active:hover {
  border-top: 0px !important;
}
*/

 .event-grid {
        grid-template-columns: repeat(1, 1fr);
  }
    
 .header-icon {
  padding-top:50px;
  padding-bottom:20px;
  max-width: 70%;
 }

 .landing-page .navbar .nav-item .nav-link.active, .landing-page .navbar .nav-item .nav-link.active:hover {
  border-top: 0px;
}

 .navbar .nav-item .dropdown-item  {
  padding-top: 25px;
}

 .navbar .dropdown-menu  {
  box-shadow: None;
  border-radius: 0px;
}

 img.partners {
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 150px;
  max-height: 125px;
  margin-left: 10px;
  margin-right: 10px;
}

img.featured-on {
  max-width: 150px;
  max-height: 200px;
  margin-bottom: 20px;
  margin-top: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

 .paf_header {
  max-width: 250px;
  margin-top: 0px; 
  margin-bottom:20px;
  margin-left: 0px;
 }


 .landing-background-header-text br {
  display: none;
}

 .landing-page .carousel-caption.landing-page {
  padding-left: 0px;
}



.landing-page .carousel-caption.form-page {
  padding-left: 100px;
}

 .landing-page .carousel-caption h1.landing-header-text {
  font-weight: 900;
  font-size: 20px;
 }

 .landing-page .carousel-caption h1.form-header-text {
  font-weight: 900;
  font-size: 34px;
 }


 .paf_footer {
  max-width: 75px;
  margin-bottom:15px;
}

/*
 * SMALLER SCREEN

 */
 .landing-page .carousel-caption h1 {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: .15rem;
  margin-left:200px;
  margin-right: 0px;
  margin-top:0px;
 }
 .landing-page .carousel-caption h1 img{
  margin-right: 0px;
}

 .landing-page .carousel-caption h2 {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .15rem;
 }
 
 .circle-logo {
  margin-left:25px;
 }

 .calendar-image {
  margin-top: 10px;
  margin-right:5px;
 }

 .vertical-timeline-content p {
  font-size: 16px !important;
}

 .vertical-container {
  width: 100%;
  margin-left: 180px;
 }
 #vertical-timeline {
 margin-left: 150px;
 }
 .vertical-timeline-content {
  margin-left: 60px;
  border-radius: 0.25em;
  padding-top: 1em;
  padding-right: 0.7em;
  padding-bottom: 1em;
  padding-left: 0.7em;
 }

 .vertical-timeline-logo {
  margin-top: -15px;
  margin-left: -150px;
  text-align: right;
 }

 .vertical-timeline-content h2 {
  font-size: 16px;
  margin-bottom: 2px;
}
.vertical-timeline-block {
 margin: 4.5em 0;
}

.navbar-toggler {
  background-color: #31BABC;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  margin: 8px;
}



}


/*
 * PHONE SCREEN
 */
@media only screen 
and (max-width: 450px) {

  .paf_header {
    max-width: 240px;
   }

  .circle-logo {
    margin-left:8px;
   }
   .vertical-timeline-content h2 {
    font-size: 14px;
    margin-bottom: 2px;
  }
   .vertical-timeline-content p {
    font-size: 12px !important;
  }
   .calendar-image {
    max-width:95px;
    max-height:95px;
    margin-top: 10px;
    margin-right:5px;
   }

  
 

   .vertical-container {
    width: 100%;
    margin-left: 20px;
   }
   #vertical-timeline {
   margin-left: 95px;
   }
   .vertical-timeline-content {
    margin-left: 60px;
    border-radius: 0.25em;
    padding-top: 1em;
    padding-right: 0.7em;
    padding-bottom: 1em;
    padding-left: 0.7em;
   }
  
   .vertical-timeline-logo {
    margin-left: -100px;
    margin-top: -15px;
    
    text-align: right;
   }
  

  .vertical-timeline-block {
   margin: 4.5em 0;
  }

  small {
    font-size: 12px;
  }

  .landing-page .carousel-caption.landing-page {
    padding-left: 2px;
  }
  
  .landing-page .carousel-caption.form-page {
    padding-left: 25px;
  }

}

/* General mobile adjustments */
@media (max-width: 768px) {
  .landing-page .carousel-caption,
  .landing-page .carousel-caption.blank {
    left: 5%;
    top: 80px;
  }
  
  .landing-page .carousel-caption h1 {
    font-size: 28px;
  }
  
  .landing-page .navbar.navbar-scroll .navbar-brand {
    margin-top: 6px;
  }
  
  .landing-page .navbar {
    background-color: #fff;
    border-color: #fff;
  
    transition: all 0.3s ease-in-out;
  }
  
  .landing-page .navbar .nav-item .nav-link:focus {
    background: transparent;
    color: inherit;
  }
  
  .landing-page .navbar .nav-item .nav-link {
    color: #676a6c;
  }
  
  .landing-page .navbar .nav-item .nav-link:hover {
    color: #31BABC;
  }
  
  .landing-page .navbar {
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e7eaec;
    border-radius: 0;
  }
  
  .landing-page .nav-item .nav-link {
    padding: 10px 10px 15px 10px;
  }
  
  .landing-page .navbar-nav .nav-item .nav-link {
    padding: 20px 10px;
  }
  
  
  .landing-page .navbar .navbar-brand {
    margin-top: 5px;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
    height: auto;
  }
  
  .landing-page .navbar {
    padding-left: 15px;
    padding-right: 5px;
  }
  
  .landing-page .navbar .nav-item .nav-link.active,
  .landing-page .navbar .nav-item .nav-link.active:hover {
    color: inherit;
  }
  
  .landing-page .carousel-control {
    display: none;
  }
}

/* Large screen adjustments */
@media (min-width: 992px) {
  .landing-page .featurette-heading {
    margin-top: 120px;
  }
}

/* Additional mobile adjustments */
@media (max-width: 768px) {
  .landing-page .navbar .navbar-header {
    display: block;
    float: none;
  }
  
  .landing-page .navbar .navbar-toggler {
    background-color: #31BABC;
    padding: 9px 10px;
    border: none;
  }
  
  .landing-page .navbar .navbar-nav {
    flex-direction: column;
  }
}

/* Navbar toggle adjustments */


.landing-page .navbar-toggler {
  color: #31BABC;
  float: right;
}

.landing-page .navbar-toggler i {
  font-size: 24px;
}

/* General mobile adjustments */
@media (max-width: 768px) {
  .landing-page .carousel-caption,
  .landing-page .carousel-caption.blank {
    left: 5%;
    top: 80px;
  }
  
  .landing-page .carousel-caption h1 {
    font-size: 28px;
  }
  
  .landing-page .navbar.navbar-scroll .navbar-brand {
    margin-top: 6px;
  }
  

  .landing-page .navbar {
    background-color: #fff;
    border-color: #fff;
    
    transition: all 0.3s ease-in-out;
  }
  
  .landing-page .navbar .nav-item .nav-link:focus {
    background: transparent;
    color: inherit;
  }
  
  .landing-page .navbar .nav-item .nav-link {
    color: #676a6c;
  }
  
  .landing-page .navbar .nav-item .nav-link:hover {
    color: #31BABC;
  }
  
  .landing-page .navbar {
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e7eaec;
    border-radius: 0;
  }
  
  .landing-page .nav-item .nav-link {
    padding: 10px 10px 15px 10px;
  }
  
  .landing-page .navbar-nav .nav-item .nav-link {
    padding: 20px 10px;
  }
  
  .landing-page .navbar .navbar-brand {
    margin-top: 5px;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
    height: auto;
  }
  
  .landing-page .navbar {
    padding-left: 15px;
    padding-right: 5px;
  }
  
  .landing-page .navbar .nav-item .nav-link.active,
  .landing-page .navbar .nav-item .nav-link.active:hover {
    color: inherit;
  }
  
  .landing-page .carousel-control {
    display: none;
  }
}

/* Large screen adjustments for transparency */
@media (min-width: 992px) {
  .landing-page .navbar {
    background-color: transparent;
    border-color: transparent;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-right: 15px;   /* Adjust padding if necessary */
  }
  
  .landing-page .featurette-heading {
    margin-top: 120px;
  }
}

/* Additional mobile adjustments */
@media (max-width: 768px) {
  .landing-page .navbar .navbar-header {
    display: block;
    float: none;
  }
  
  .landing-page .navbar .navbar-toggler {
    background-color: #31BABC;
    padding: 9px 10px;
    border: none;
  }
  
  .landing-page .navbar .navbar-nav {
    flex-direction: column;
  }
}

/* Navbar toggle adjustments */
.landing-page .navbar-toggler {
  color: #ddd;
  float: right;
}

.landing-page .navbar-toggler i {
  font-size: 24px;
}
