/* Assuming your links change to "Times" on hover */
.header-navigation a:hover,
.header-navigation .language-select select {
  font-family: Times
}



.gallery-item {
  display: block; /* Ensures the container is block level */
  width: 100%; /* Adjust this based on your layout needs */
}

.gallery-item a {
  display: block; /* Makes the link a block element, which can help maintain layout */
  text-decoration: none; /* Removes underline from the link */
  color: inherit; /* Inherit text color from parent elements */
  width: 100%; /* Ensures the link takes up the full width of its container */
}

.gallery-item img {
  display: block; /* Prevents extra space below the image that inline elements have */
  width: 100%; /* Ensures the image stretches to the width of its container */
  height: auto; /* Maintains the aspect ratio of the image */
}


.gallery-item, .bottom-gallery-item {

  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for the transform and shadow. */
  cursor: pointer; /* Changes the cursor to a pointer to indicate that the items are interactive. */
}

.gallery-item img, .bottom-gallery-item img {
  display: block; /* Prevents any extra space around the image that can occur with inline elements. */
  transition: transform 0.3s ease-in-out; /* Ensures the transform is smoothly animated. */
}

.gallery-item:hover img, .bottom-gallery-item:hover img {
  transform: scale(1.05); /* Scales the image up slightly to 105% of the original size. */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Creates a shadow effect as if the image is floating. */
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0;  }
  to { opacity: 1;}
}


.animate-on-scroll {
  opacity: 0; /* Start with elements transparent */
  transform: translateY(50px); /* Start with elements translated down */
  visibility: hidden; /* Elements should be hidden */
  transition: visibility 0s 1s, opacity 1s linear, transform 1s;
}

/* Define the keyframes for the "fade-in-up" animation */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The class that gets added by the Intersection Observer API when element is in view */
.animate-on-scroll-visible {
  visibility: visible; /* Elements become visible */
  animation: fade-in-up 1s forwards; /* Run the animation and maintain the last frame state */
  transition-delay: 0s; /* Apply transitions immediately */
}





/* Class to apply to your body or main content container */
.fade-in {
  animation-name: fadeIn;
  animation-duration: 1s; /* Or however long you want the fade to be */
  animation-fill-mode: both; /* Ensures the final state (opacity: 1) is maintained after the animation completes */
}












.footer-link, .footer-link:visited {
  color: white;  /* This should match the original color of your <h4> text */
  text-decoration: none;  /* This removes the underline from the link */
}

.footer-link:hover, .footer-link:focus {
  color: white;  /* Keeps the color white (or any other color you want) on hover/focus */
  text-decoration: none;  /* Optional: removes the underline on hover/focus */
}



html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.footer-section h4 .footer-link, 
.footer-section h4 .footer-link:visited,
.footer-section h4 .footer-link:hover, 
.footer-section h4 .footer-link:focus, 
.footer-section h4 .footer-link:active {
  color: white !important; 
  text-decoration: none !important;
}

header {
  background-color: black;
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10; 
}

.top-header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 0;
}


.sroheadertext {
  font-family: 'Playful Despair', sans-serif;
  text-align: center;
  padding: 10px;
  font-size: 35px;
  flex-grow: 1;
}

@media screen and (max-width: 1150px) {

  .sroheadertext {
    font-size: 30px;
  }
}

@media screen and (max-width: 1100px) {

    .sroheadertext {
      font-size: 27px;
    }
}

@media screen and (max-width: 950px) {


  .sroheadertext {
    font-size: 24px;
  }
}

@media screen and (max-width: 840px) {

  .sroheadertext {
    font-size: 22px;
  }
}

@media screen and (max-width: 750px) {
  
  .sroheadertext {
    font-size: 22px;
  }

}

@media screen and (max-width: 700px) {
  .sroheadertext {
    font-size: 19px;
  }

}

@media screen and (max-width: 550px) {
  .sroheadertext {
    font-size: 17px;
  }

}

@media screen and (max-width: 500px) {
  .sroheadertext {
    font-size: 16px;
  }

}

@media screen and (max-width: 455px) {
  .sroheadertext {
    font-size: 14px;
  }

}

@media screen and (max-width: 400px) {
  .sroheadertext {
    font-size: 13px;
  }

}

@media screen and (max-width: 375px) {
  .sroheadertext {
    font-size: 13px;
  }

}

@media screen and (max-width: 350px) {
  .sroheadertext {
    font-size: 12px;
  }

}

@media screen and (max-width: 320px) {
  .sroheadertext {
    font-size: 11px;
  }

}



.header-navigation {
  width: 100%; /* Navigation bar spans the full width */
  background-color: #9d9fa3; /* Dark gray background */
  display: flex;
  justify-content: center; /* Center navigation links */
  padding: 5px 0; /* Reduced vertical padding for a smaller bar */
}

.header-navigation a {
  color: black;
  padding: 5px 10px; /* Keep your padding as-is */
  text-decoration: none;
  font-size: 20px; /* Optional: Smaller font size if necessary */
  font-family: 'Playful Despair', sans-serif;
  margin: 0 20px; /* Adds spacing between all navigation items */
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: none; 
}

.header-navigation a:hover {
  color: black; /* Keeps the color the same as the non-hover state or changes it if you want a different hover color */
  background-color: transparent; /* Ensures the background doesn't change on hover */
  text-decoration: none; /* Ensures no underline or other text decoration on hover */
}
.header-navigation a,
.header-navigation .language-select select {
  color: black; /* or any color you have for your links */
  padding: 5px 10px;
  text-decoration: none;
  font-size: 20px; /* The font size of your navigation links */
  background-color: transparent; /* Or any other styles you have for your links */
  border: none; /* Assuming you don't want borders on your select */
  -webkit-appearance: none; /* Removes default browser styling */
  -moz-appearance: none;
  appearance: none;
}

.header-navigation .language-select select {
  cursor: pointer; /* To indicate the element is selectable */
}


.header-navigation .language-select select {
    font-family: 'Playful Despair', sans-serif;
    font-size: 20px;
    color: black;
    padding: 5px 10px;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: normal;
    transition: none; /* Remove hover transition */
}
.header-navigation a:hover {
    transform: none; /* Prevent shrinking or movement */
    font-family: 'Playful Despair', sans-serif; /* Keep the same font */
    font-size: 20px; /* Maintain original size */
}

/* Apply the same styles to both the links and the language select */
.header-navigation a,
.header-navigation .language-select select {
  color: black; /* or any color you have for your links */
  padding: 5px 10px;
  text-decoration: none;
  font-size: 20px; /* The font size of your navigation links */
  background-color: transparent; /* Or any other styles you have for your links */
  border: none; /* Assuming you don't want borders on your select */
  -webkit-appearance: none; /* Removes default browser styling */
  -moz-appearance: none;
  appearance: none;
}

/* Additional custom styles for the select element */
.header-navigation .language-select select {
  cursor: pointer; /* To indicate the element is selectable */
}

/* Custom dropdown arrow */
.header-navigation .language-select::after {
  content: '▼';
  position: absolute;
  left: 90%; /* Adjust as necessary */
  top: 50%; /* Center vertically within the select */
  transform: translateY(-50%);
  pointer-events: none; /* Makes it non-interactive */
  color: black; /* Same color as your link text for consistency */
  font-size: 0.8em; /* Smaller than the text to not dominate the visuals */
}

/* Container for the select to position the custom arrow correctly */
.header-navigation .language-select {
  position: relative;
  display: inline-block; /* Treat it as an inline element with block capabilities */
}

/* You might need to adjust the line-height if your select is not aligning well vertically */
.header-navigation .language-select select {
  line-height: normal; /* or any specific value that matches your navbar's height */
}

@media (max-width: 800px) {
  .header-navigation .language-select::after {
    content: '▼';
    position: absolute;
    left: 90%; /* Adjust as necessary */
    top: 50%; /* Center vertically within the select */
    transform: translateY(-50%);
    pointer-events: none; /* Makes it non-interactive */
    color: black; /* Same color as your link text for consistency */
    font-size: 0.4em; /* Smaller than the text to not dominate the visuals */
  }

  #language-dropdown {
    font-size: 20px;
  }
}


@media (max-width: 650px) {
  #language-dropdown {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  #language-dropdown {
    font-size: 13px;
  }
}

@media (max-width: 550px) {
  .header-navigation .language-select::after {
    content: '▼';
    position: absolute;
    left: 90%; /* Adjust as necessary */
    top: 52%; /* Center vertically within the select */
    transform: translateY(-50%);
    pointer-events: none; /* Makes it non-interactive */
    color: black; /* Same color as your link text for consistency */
    font-size: 6px; /* Smaller than the text to not dominate the visuals */
  }

  #language-dropdown {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  #language-dropdown {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  #language-dropdown {
    font-size: 10px;
  
  }

  .language-select {
    margin-top: -0.1% !important;
  }

  
}















@media screen and (max-width: 750px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 18px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 650px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 16px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 600px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 13px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 550px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 500px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 450px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 12px;
    margin: 0 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 430px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 11px;
    margin: 0 7.5px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 360px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 10px;
    margin: 0 7.5px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 350px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 10px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 340px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 9px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}

@media screen and (max-width: 315px) {
  .header-navigation a, .header-navigation a:active {
    font-size: 9px;
    color: black; /* Keep the text color consistent */
    transform: none;
  }
}



/* FIRST SECTION */ 
.section-container {
  display: flex; /* Enables flexbox layout */
  align-items: center; /* Aligns children vertically in the center */
  justify-content: start; /* Aligns children to start of the container */
  position: relative;
  padding: 20px;
  overflow: hidden; /* Ensures nothing spills outside the container */
  height: auto; /* Adjust height as needed */
}

  .section-container::before {
    content: ""; /* Necessary for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/aboutusblueprint.png') no-repeat center center; /* Adjust path as necessary */
    background-size: cover; /* Cover the entire area of the pseudo-element */
    opacity: 0.1; /* Set the desired opacity */
    z-index: -1; /* Ensures the background is behind all other content */
    width: 90%;
    height: 100%;
    margin-left: 5%;
    margin-top: 10%;
  }


  .section-title {
    margin-bottom: 20px; /* Space between the title and text box */
    font-size: 40px; /* Suitable size for the title */
    color: black; /* Dark grey color for text */
    font-family: 'Playful Despair', sans-serif; /* Your chosen font */
    text-decoration: underline; /* Adds an underline to the title */
  }

  .text-box {
    background-color: white;
    padding: 20px;
    border: 4px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%; /* Adjust width to fit content area */
    font-size: 30px; /* Legible text size */
    text-align: left; /* Aligns the text to the left */
    font-family: 'Playful Despair', sans-serif; /* Your chosen font */
    text-align: center; 
  }

  .text-cont {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center aligns children vertically */
    width: 35%; /* Full width of the container */
  }

  .text-cont {
    margin-top: 10%;
  }

  .text-cont, .overlay-image-container {
    position: relative; /* Important: Makes these elements stack above the pseudo-element */
    z-index: 1; /* Higher than the background's z-index */
  }

  .text-cont {
    flex: 1;
    padding-right: 20px; /* Provides spacing between text and image */
  }

  .overlay-image-container {
    flex: 1;
    margin-top: 8%;
    margin-left: 20%;
  }

  .foreground-image {
    width: 100%; /* Responsive width */
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Maximum width limit */
    border-radius: 10px; /* Optional styling */


  }

  @media (max-width: 1600px) {
    .foreground-image {
      width: 80%; /* Reduce the width to 80% of its container */
      transform: scale(0.9); /* Optionally scale down the image */
      margin-top: 10%;
      margin-left: 20%;
    }
  }

  @media (max-width: 1500px) {
    .text-box {
      font-size: 27px;
    }
  }

  @media (max-width: 1400px) {
    .text-box {
      font-size: 25px;
    }
  }

  @media (max-width: 1300px) {
    .text-box {
      font-size: 23px;
    }
  }
  
  @media (max-width: 1200px) {
    .text-box {
      font-size: 20px;
    }

    .section-title {
      font-size: 35px;
    }
  }

  @media (max-width: 1000px) {
    .text-box {
      font-size: 17px;
    }

    .section-title {
      font-size: 30px;
    }

    .foreground-image {
      margin-top: 15%;
    }
  }

  @media (max-width: 900px) {
    .text-box {
      font-size: 15px;
    }

    .section-title {
      font-size: 27px;
    }


  }

  @media (max-width: 768px) {
    .section-container {
      display: flex;
      flex-direction: column; /* Stacks children vertically */
      align-items: center; /* Centers children horizontally */
      justify-content: center; /* Centers children vertically */
      text-align: center;
      height: auto; /* Adapts the height based on content */
      min-height: 50vh; /* Minimum height to maintain a good visual */
    }

    .foreground-image {
      display: none; /* Hides the foreground image */
    }

    .section-title {
      margin-top: 10px; /* Space above the title */
      margin-bottom: 10px; /* Space below the title to space it from the textbox */
      font-size: 27px; /* Manageable font size */
      width: 150%; /* Ensures the title stretches across container width */
      margin-top: 20%;
      margin-left: 8%;
    }

    .text-box {
      width: 150%; /* Appropriate width to not exceed container */
      max-width: 600px; /* Maximum width control */
      margin-top: 15%; /* No additional top margin */
      padding: 10px; /* Padding inside the textbox */
      font-size: 20px; /* Slightly smaller font size for better fitting */
      box-sizing: border-box; /* Ensures padding is included in width/height calculations */
      margin-left: 8%;
    }
}

@media (max-width: 700px) {
  .text-box {
    width: 180%;
    font-size: 22px;
  }
}


@media (max-width: 600px) {
  .text-box {
    width: 200%;
    font-size: 22px;

  }
}

@media (max-width: 550px) {
  .text-box {
    width: 200%;
    font-size: 18px;
    margin-left: 12%;
  
  }

  .section-title {
    margin-left: 12%;
    margin-top: 20%;
    margin-top: 50% !important;
    font-size: 24px;
    
  }

}

@media (max-width: 550px) {
  .text-box {
    width: 250%;
    font-size: 18px;
    margin-left: 12%;
  
  }

  .section-title {
    margin-left: 12%;
    margin-top: 20%;
    margin-top: 50% !important;
    font-size: 24px;
   
  }

}

@media (max-width: 500px) {
  .section-title {
    font-size: clamp(16px, 5vw, 19px); /* Dynamically adjusts between 20px and 24px based on viewport width */
    line-height: 1.2; /* Adjusts line height for better readability */
    padding: 0 10px; /* Adds padding to prevent text from touching the edges */
    text-align: center; /* Centers the text */
  }

  .text-box {
    width: 200%; /* Ensures consistent width */
    margin-top: 10px; /* Sets a small gap between title and text box */
    text-align: center; /* Maintains left alignment of the text */
    padding: 10px; /* Provides padding around the text */
  }
}

@media (max-width: 450px) {
  .text-box {
font-size: 15px
  }
}

@media (max-width: 400px) {
  .section-container::before {
    background: none; /* Removes the background image */
  }

  .section-title {
    margin-top: 200% !important;
    font-size: 18px;
  }

  .text-box {
    width: 300px;
  }


}





  
/* 2ND GRAY SECTION*/


.sponsors-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.sponsors-header {
  text-align: center; /* Centers the title */
  position: relative; /* For positioning pseudo-elements */

  width: 100%; /* Set the header to take full width of the container */
  overflow: hidden; /* Prevents lines from extending beyond the header's bounds */
}

.sponsors-title {
  
  font-family: 'Playful Despair', sans-serif;
  display: inline-block;
  padding: 10px 35px; /* Adjust padding to your preference */
  background-color: white; /* Background color of the title */
  position: relative;
  border: 2px solid black; /* Border around the title */
  border-radius: 10px; /* Rounded corners for the title */
  z-index: 1; /* Ensures the title is above the lines */
  margin: 0 auto; /* Center the title horizontally */
}

.sponsors-title::before, .sponsors-title::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: black; /* Color of the lines */
  z-index: -1;
  transform: translateY(-50%); /* Center vertically */
}

.sponsors-title::before {
  left: 100%; /* Start at the right edge of the title box */
  width: calc(50vw - 50%); /* Extend to the edge of the screen */
  margin-left: 0; /* Start exactly at the edge of the title box */
}

.sponsors-title::after {
  right: 100%; /* Start at the left edge of the title box */
  width: calc(50vw - 50%); /* Extend to the edge of the screen */
  margin-right: 0; /* Start exactly at the edge of the title box */
}



.sponsors-content {
  display: flex;
  align-items: flex-start; /* Aligns items to the top */
  
  padding: 20px;
  
}

.sponsors-logos {
  flex-shrink: 0; /* Prevents logos from shrinking */
}

.logo {
  display: block; /* Stacks images on top of each other */
 
}

.sponsors-logos img:nth-child(1) { /* Target the first logo */
  width: 500px; /* Set a specific width for the first logo */
  height: 500px; /* Set a specific height for the first logo */
  object-fit: contain;
 margin-bottom: -35%;
 margin-top: -30%;
 margin-left: 20%;
}

.sponsors-logos img:nth-child(2) { /* Target the second logo */
  width: 500px; /* Set a specific width for the second logo */
  height: 200px; /* Set a specific height for the second logo */
  object-fit: contain;
margin-left: 20%;
}



@media screen and (max-width: 1400px) {

  .sponsors-logos {
    width: 450px;
  }


}



@media screen and (max-width: 1300px) {

  .sponsors-logos {
    width: 425px;
  }


}

@media screen and (max-width: 1200px) {

  .sponsors-logos {
    width: 350px;
    
  }


}

@media screen and (max-width: 1150px) {

  .sponsors-logos {
    width: 350px;
    
  }


}




@media screen and (max-width: 1100px) {

  .sponsors-logos {
    display: flex; /* Use flexbox for easier centering */
    justify-content: center; /* Center the logos horizontally */
    flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
    gap: 1%; /* Optional: Adds space between logos */
    max-width: 500px; /* Maximum width of the logos container */
    margin: 0 auto; /* Center the container within its parent */
    margin-left: 30%;
  }

  .sponsors-text {
    display: none !important;

  }
  }

  @media screen and (max-width: 1000px) {

    .sponsors-logos {
    
      margin-left: 27%;
    }
  
    
    }

    @media screen and (max-width: 950px) {

      .sponsors-logos {
      
        margin-left: 26%;
      }
    
      
    }

    @media screen and (max-width: 900px) {

      .sponsors-logos {
      
        margin-left: 24%;
      }
    
      
    }

    @media screen and (max-width: 850px) {

      .sponsors-logos {
      
        margin-left: 23%;
      }
    
      
    }

    @media screen and (max-width: 800px) {

      .sponsors-logos {
      
        margin-left: 20%;
      }
    
      
    }

    @media screen and (max-width: 750px) {

      .sponsors-logos {
      
        margin-left: 17%;
      }
    
      
    }

    @media screen and (max-width: 700px) {

      .sponsors-logos {
      
        margin-left: 15%;
      }
    
      
    }

    @media screen and (max-width: 650px) {

      .sponsors-logos {
      
        margin-left: 11.5%;
      }
    
      
    }

    @media screen and (max-width: 600px) {

      .sponsors-logos {
      
        margin-left: 9%;
      }
    
      
    }

    @media screen and (max-width: 550px) {

      .sponsors-logos {
      
        margin-left: 5%;
      }
    
      
    }

    @media screen and (max-width: 475px) {

      .sponsors-logos {
      
        margin-left: 2%;
      }
    
      
    }

    @media screen and (max-width: 450px) {

      .sponsors-logos {
      
        margin-left: -1%;
      }
    
      
    }


    @media screen and (max-width: 425px) {

      .sponsors-logos {
      
        margin-left: -5%;
      }
    
      
    }

    
  @media (max-width: 600px) {
    .sponsors-logos img:nth-child(1) { /* Target the first logo */
      width: 400px; /* Set a specific width for the first logo */
      height: 500px; /* Set a specific height for the first logo */
      object-fit: contain;
     margin-bottom: -50%;
     margin-top: -50%;
     margin-left: 15%;
    }
    
    .sponsors-logos img:nth-child(2) { /* Target the second logo */
      width: 400px; /* Set a specific width for the second logo */
      height: 200px; /* Set a specific height for the second logo */
      object-fit: contain;
    margin-left: 15%;
    }
    
    
  }
  
  @media (max-width: 500px) {
    .sponsors-logos img:nth-child(1) { /* Target the first logo */
      width: 300px; /* Set a specific width for the first logo */
      height: 500px; /* Set a specific height for the first logo */
      object-fit: contain;
     margin-bottom: -60%;
     margin-top: -60%;
     margin-left: 5%;
    }
    
    .sponsors-logos img:nth-child(2) { /* Target the second logo */
      width: 300px; /* Set a specific width for the second logo */
      height: 200px; /* Set a specific height for the second logo */
      object-fit: contain;
    margin-left: 5%;
    }
    
    
  }

  @media (max-width: 400px) {
    .sponsors-logos img:nth-child(1) { /* Target the first logo */
      width: 200px; /* Set a specific width for the first logo */
      height: 500px; /* Set a specific height for the first logo */
      object-fit: contain;
     margin-bottom: -70%;
     margin-top: -60%;
     margin-left: 12%;
    }
    
    .sponsors-logos img:nth-child(2) { /* Target the second logo */
      width: 200px; /* Set a specific width for the second logo */
      height: 200px; /* Set a specific height for the second logo */
      object-fit: contain;
    margin-left: 12%;
    }
   
    
  }

   @media (max-width: 400px) {
 
    .sponsors-logos {
      margin-left: 5%;
      max-width: 300px;
    }
    
  }

  @media (max-width: 375px) {
 
    .sponsors-logos {
      margin-left: 0%;
      max-width: 300px;
    }
    
  }

  @media (max-width: 350px) {
    .sponsors-logos img:nth-child(1) { /* Target the first logo */
      width: 250px; /* Set a specific width for the first logo */
      height: 500px; /* Set a specific height for the first logo */
      object-fit: contain;
     margin-bottom: -70%;
     margin-top: -60%;
     margin-left: -20%;
    }
    
    .sponsors-logos img:nth-child(2) { /* Target the second logo */
      width: 250px; /* Set a specific width for the second logo */
      height: 200px; /* Set a specific height for the second logo */
      object-fit: contain;
    margin-left: -20%;
    }
    .sponsors-logos {
      margin-left: 15%;
      max-width: 250px;
    }
    
  }

  @media (max-width: 330px) {
 
    .sponsors-logos {
      margin-left: 15%;
      max-width: 225px;
    }
    
  }
 







.sponsors-content:after {
  content: "";
  display: table;
  clear: both;
}


.sponsors-text {
  text-align: center;  /* Center-aligns the text horizontally */
  align-items: center;
   font-family: 'Playful Despair', sans-serif;
  display: table; /* Shrink-wraps the content */
  margin: 20px auto 20px 20%; /* Centers the box and provides vertical space */
  padding: 30px;
  border: 4px solid black;
  font-size: 30px;
  color: #333;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  box-sizing: border-box; /* Include padding and border in the width calculation */
  max-width: 100%; /* Limit the width to prevent overflow */
  width: 35%;
  margin-left: 30%;
 
}

@media (max-width: 1600px) {
  .sponsors-text {
    margin-left: 25%;
    width: 45%;
  
  }
}

@media (max-width: 1500px) {
  .sponsors-text {
    margin-left: 20%;
    width: 45%;
  
  }
}

@media (max-width: 1300px) {
  .sponsors-text {
    margin-left: 25%;
    width: 50%;
  
  }
}

@media (max-width: 1200px) {
  .sponsors-logos {
    margin-left: -5% !important;
  }

  .sponsors-text {
    font-size: 27px;
  }
}



.cmc {
  margin-left: 50%;
}

@media (max-width: 1250px) {
  .cmc {
    margin-left: 55%;
  }
}

@media (max-width: 1200px) {
  .cmc {
    margin-left: 65%;
  }
}

@media (max-width: 1100px) {
  .cmc {
    margin-left: 30%;
  }
}

@media (max-width: 600px) {
  .cmc {
    margin-left: 23%;
  }
}

@media (max-width: 500px) {
  .cmc {
    margin-left: 9%;
    margin-top: -10%;
  }
}



@media (max-width: 400px) {
  .cmc {
    margin-left: 12%;
    margin-top: -10%;
    width: 175px;
  }

 
}

@media (max-width: 350px) {
  .cmc {
    margin-left: -15%;
    margin-top: -10%;
    width: 175px;
  }

 
}
/* areas of operations */







.operations-section {
  text-align: center; /* Centers the title */
  position: relative; /* For positioning pseudo-elements */
  padding: 20px 0; /* Top and bottom padding */
  
}

.operations-header {
  display: inline-block;
  position: relative; /* To position the pseudo-elements */
}

.operations-title {
    font-family: 'Playful Despair', sans-serif;
  display: inline-block;
  padding: 10px 20px; /* Adjust padding to your preference */
  margin: 0 auto; /* Center the title */
  border: 2px solid black; /* Border around the title */
  border-radius: 10px; /* Rounded corners for the title */
  position: relative;
  background-color: white; /* White background for the title */
  z-index: 1; /* Ensures the title is above the lines */
}

.operations-header::before,
.operations-header::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid black; /* Line thickness */
  width: calc(50% - 100px); /* Adjusted width */
  z-index: 0; /* Ensures lines are below the title */
}

.operations-header::before {
  left: 0;
}

.operations-header::after {
  right: 0;
}

.operations-header {
  width: 100%; /* Set the header to take full width of the container */
  overflow: hidden; /* Prevents lines from extending beyond the header's bounds */
}


.map {
  margin-left: -10%;
}

@media (max-width: 400px) {
  .text-cont {
    margin-top: -35% !important;
  }
}

@media (max-width: 360px) {
  .text-cont {
    margin-top: -45% !important;
    margin-left: -1% !important;
  }
}
/* footer*/




.footer {
  background-color: #000; /* Black background */
  color: #fff; /* White text color */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the start of the container */
  padding: 20px;
  font-size: 14px;
  position: relative;
  padding-bottom: 3%;
}

.footer img {
  max-width: 150px; /* Adjust this value to make the logo smaller */
  height: auto; /* Ensures that the height scales proportionally to the width */
  margin-right: -5%; 
}

.footer-section {
  margin: 10px;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the start of the section */
}

.logo-section {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: flex-start; /* Align children to the left */
}

.logo-and-text {
  display: flex;
  align-items: center; /* Align logo and brand name horizontally */
  margin-bottom: 5px; /* Space between logo/text and email */
  margin-top: -10%;
  margin-left: -17%;
}

.logo-section img {
  max-width: 150px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: -5%; /* Space between logo and brand name */
}

.logo-section .brand-name {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold; /* Bold brand name text */
}




.logo-section .email {
  font-size: 15px; /* Adjust as needed */
  color: gray; /* Email text color */
  /* Add additional styling as needed */
}



.about-section,
.mission-section,
.contact-section,
.language-section {
  flex-basis: 15%; /* Adjust the width as per your layout */
}

.language-section ul,
.mission-section ul,
.about-section ul {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
}

.footer-section h4 {
  font-size: 20px; /* Adjust the size as needed */
  color: #fff; /* This sets the text color to white */
  margin-bottom: 5px; /* Adjust as needed */
  padding-bottom: 10px;
}

.footer-section a {
  color: gray; /* White text color for links */
  text-decoration: none;
  margin-top: 2px; /* Space between links */
  
}
.footer-section ul li {
  margin-bottom: 10px; /* Adjust the bottom margin as needed for more space */
}

.footer-section.copyright-section p {
  color: white; /* This sets the text color to gray */
}





.footer .copyright-section {
  display: flex; /* Enables flexbox for this element only */
  align-items: center; /* Centers the content vertically */
  justify-content: center; /* Centers the content horizontally */
  position: absolute; /* Takes the element out of the document flow */
  bottom: 0; /* Positions it at the bottom of the footer */
  left: 0; /* Align to the left */
  right: 0; /* Align to the right */
  height: 10px; /* Give it a specific height or enough padding to ensure it's visible */

}

.footer .copyright-section:before {
  content: ""; /* This is necessary for pseudo-elements */
  display: block; /* Treat it like a block element */
  border-top: 1px solid #fff; /* White line */
  position: absolute; /* Position it absolutely within copyright-section */
  width: 100%; /* Full width */
  bottom: 140%; /* Raise it above the text */
}

@media screen and (max-width: 950px) {

  .brand-name {
    font-size: 20px !important;
  }
  .footer-section h4 {
    font-size: 18px; /* Smaller font size for headings */
  }

  .footer-section ul li a {
    font-size: 15px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 15px; /* Smaller font size for standalone links */
  }

  .footer-section p {
    font-size: 15px; /* Smaller font size for paragraphs */
  }

  /* If you have a class or an id for your logo, add it here */
  /* Example: */
  .footer-section .logo img {
    width: 50px; /* Adjust the width to your preference */
    height: auto; /* Maintain aspect ratio */
  }


}

@media screen and (max-width: 950px) {

  .brand-name {
    font-size: 20px !important;
  }
  .footer-section h4 {
    font-size: 16px; /* Smaller font size for headings */
  }

  .footer-section ul li a {
    font-size: 13px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 13px; /* Smaller font size for standalone links */
  }

  .footer-section p {
    font-size: 13px; /* Smaller font size for paragraphs */
  }

  /* If you have a class or an id for your logo, add it here */
  /* Example: */
  .footer-section .logo img {
    width: 50px; /* Adjust the width to your preference */
    height: auto; /* Maintain aspect ratio */
  }
}
@media screen and (max-width: 860px) {
.about-section,
.mission-section,
.contact-section,
.language-section {
  flex-basis: 15%; /* Adjust the width as per your layout */
  margin-left: -10%;
}

}

@media screen and (max-width: 700px) {
  .logo-section .logo-and-text img {
    display: none;
  }

  .brand-name {
    margin-left: 26%;
    margin-top: 48%;
    white-space: nowrap;
  }


}


@media screen and (max-width: 700px) {
  .email {
    font-size: 13.5px !important;
  }
}

@media screen and (max-width: 650px) {
  .footer-section h4 {
    font-size: 15px; /* Smaller font size for headings */
  }
}

@media screen and (max-width: 600px) {
  .footer-section ul li a {
    font-size: 11px; /* Smaller font size for list items */
  }

  .footer-section a {
    font-size: 11px; /* Smaller font size for standalone links */
  }

  .footer-section h4 {
    font-size: 13.5px; /* Smaller font size for headings */
  }

  .brand-name {
    font-size: 17px !important;
    margin-left: 22%;
  }
  .email {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 550px) {
  .brand-name {
    font-size: 15px !important;
    margin-left: 22%;
    margin-top: 53%;
  }

  .email {
    margin-left: -2%;
  }

  .footer-section h4 {
    font-size: 12px; /* Smaller font size for headings */
  }
}

@media screen and (max-width: 500px) {
  .brand-name {
    margin-left: 15%;
    margin-top: 50%;
  }

  .email {
    margin-left: -6%;
    font-size: 9px !important;
  }
}

@media screen and (max-width: 500px) {
  .brand-name {
    margin-left: 15%;
    margin-top: 47%;
  }

  .email {
    margin-left: -6%;
    font-size: 9px !important;
  }
}

@media screen and (max-width: 450px) {
  .email {
    font-size: 7.5px !important;
  }
  .brand-name {
    margin-left: 12%;
    
  }

  

}

@media screen and (max-width: 425px) {
  .brand-name {
    font-size: 13px !important;
    margin-top: 50%;
  }
  
  .email {
    margin-left: -8%;
  }

  .footer-section ul li a {
    font-size: 9px; /* Smaller font size for list items */
  
  }

  .footer-section a {
    font-size: 9px; /* Smaller font size for standalone links */
  }

  .footer-section h4 {
    font-size: 10px; /* Smaller font size for headings */

  }
}

@Media screen and (max-width: 390px) {
  .brand-name {
    margin-top: 48%;
  }
}

@media screen and (max-width: 375px) {
  .email {
    font-size: 6.5px !important;
  }

  .brand-name {
    margin-left: 10%;
  }
}

@media screen and (max-width: 360px) {


  .footer-section h4 {
    font-size: 9px; /* Smaller font size for headings */

  }

  .brand-name {
    margin-top: 43%;
  }
}

@media screen and (max-width: 375px) {
  

  .brand-name {
    margin-left: 7%;
  }

  .email {
    font-size: 5.5px !important;
    }
  }



@media screen and (max-width: 340px) {


  .brand-name {
    margin-top: 44%;
    margin-left: 1%;
  }
  .email {
    margin-left: -16%;
  }
}




@media screen and (max-width: 325px) {


  .footer-section h4 {
    font-size: 8px; /* Smaller font size for headings */

  }

  .brand-name {
    margin-top: 43%;
  }

  .brand-name {
    font-size: 11px !important;
    margin-top: 48%;
  }

}

@media screen and (max-width: 320px) {
  .email {
    font-size: 4.5px !important;
    margin-left: -15%;
  }
}




.footer .email .email-link span:hover {
  text-decoration: underline; /* Only underline the email address on hover */
}

@media (max-width: 700px) {
  .email-link {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .email-link {
    font-size: 11px;
    margin-left: -1%;
  }
}

@media (max-width: 550px) {
  .email-link {
    font-size: 11px;
    margin-left: -3%;
  }
}

@media (max-width: 500px) {
  .email-link {
    font-size: 11px;
    margin-left: -7.5%;
  }
}

@media (max-width: 450px) {
  .email-link {
    font-size: 11px;
    margin-left: -9.5%;
  }
}

@media (max-width: 425px) {
  .email-link {
    font-size: 9px;
    margin-left: -9%;
  }
}

@media (max-width: 375px) {
  .email-link {
    font-size: 9px;
    margin-left: -12%;
  }
}

@media (max-width: 340px) {
  .email-link {
    font-size: 9px;
    margin-left: -16%;
  }
}


.footer {
  font-family: 'Playful Despair', sans-serif;
}