



.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 */
}


/* 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 */
}

.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;
  }
}
    



/* body section */

.image-container {
  position: relative;
  width: 100%; /* Ensure the container takes full width */

  overflow: hidden; /* Hide anything going out of bounds */
}

.image-container img.disaster-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This prevents the image from stretching and instead covers the space */
  object-position: center; /* Centers the image within the container */
}



.gallery-container {
  margin-top: -1%;
}

.image-container .logo {
  position: absolute;
  top: 30px; /* Adjust as necessary */
  left: -80px; /* Adjust as necessary */
  max-width: 100px; /* Adjust the size of the logo as necessary */
}

.logo img {
  width: 400px;
}

@media screen and (min-width: 900px) and (max-width: 1300px) {
   .image-container .logo {
top: 40px;
   }
}

@media screen and (max-width: 950px) {
   .logo img {
    width: 300px;
  }
.image-container .logo {
  left: -60px;
  top: 60px;
}
}

@media screen and (max-width: 800px) {
   .logo img {
    width: 300px;
    margin-top: -20%;
    margin-left: -20%;
  }
.image-container .logo {
  left: -40px;
  top: 70px;
}
}



.image-container .text-overlay {
  position: absolute;
  top: 65%; /* Increase the percentage to move the elements down */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
  font-size: 35px;
width: 1000px;
}



.about-us-button {
  width: 700px;
  font-size: 35px !important;
  height: 50px;
  line-height: 150%;
  font-family: 'Playful Despair', sans-serif;
}

@media (max-width: 1200px) {
  .text-overlay {
    width: 950px !important;
    font-size: 33px !important;
  }

  .about-us-button {
    width: 650px;
    font-size: 31px !important;
    line-height: 175%
  }
}

@media (max-width: 1150px) {
  .disaster-image {
    height: 800px !important;
  }
}

@media (max-width: 1000px) {
  .text-overlay {
    width: 850px !important;
    font-size: 30px !important;
  }

  .about-us-button {
    width: 500px;
    font-size: 30px !important;
    line-height: 175%
  }
}

@media (max-width: 950px) {
  .text-overlay {
    width: 800px !important;
    font-size: 28px !important;
  }

  .about-us-button {
    width: 450px;
    font-size: 28px !important;
    line-height: 175%
  }
}

@media (max-width: 900px) {
  .text-overlay {
    width: 750px !important;
    font-size: 26px !important;
  }

  .about-us-button {
    width: 400px;
    font-size: 26px !important;
    line-height: 175%
  }
}

@media (max-width: 850px) {
  .text-overlay {
    width: 700px !important;
    font-size: 24px !important;
  }

  .about-us-button {
    width: 350px;
    font-size: 24px !important;
    line-height: 200%
  }
}
@media (max-width: 800px) {
  .text-overlay {
    width: 650px !important;
    font-size: 22px !important;
  }

  .about-us-button {
    width: 300px;
    font-size: 22px !important;
    line-height: 225%
  }
}

@media (max-width: 750px) {
  .text-overlay {
    width: 600px !important;
    font-size: 20px !important;
  }

  .about-us-button {
    width: 250px;
    font-size: 22px !important;
    line-height: 225%
  }
}

@media (max-width: 700px) {
  .text-overlay {
    width: 550px !important;
    font-size: 18px !important;
  }

  .about-us-button {
    width: 200px;
    font-size: 22px !important;
    line-height: 225%
  }
}

@media (max-width: 650px) {
  .text-overlay {
    width: 500px !important;
    font-size: 16px !important;
  }

  .about-us-button {
    width: 150px;
    font-size: 22px !important;
    line-height: 225%
  }
}

@media (max-width: 600px) {
  .text-overlay {
    width: 450px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 550px) {
  .logo img {
    max-width: 250px !important;
  }

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

  .disaster-image {
    height: 700px !important;
  }
}

@media (max-width: 500px) {
  .text-overlay {
    width: 425px !important;
    font-size: 14px !important;
  }

  .about-us-button {
    width: 150px;
    font-size: 20px !important;
    line-height: 200%;
    height: 40px;
  }
}

@media (max-width: 450px) {
  .text-overlay {
    width: 400px !important;
    font-size: 13px !important;
  }

  .about-us-button {
    width: 150px;
    font-size: 20px !important;
    line-height: 200%;
    height: 40px;
  }
}

@media (max-width: 425px) {
  .text-overlay {
    width: 375px !important;
    font-size: 12px !important;
  }

  .about-us-button {
    width: 150px;
    font-size: 20px !important;
    line-height: 200%;
    height: 40px;
  }

  .logo img {
    max-width: 200px !important;
    margin-left: 1%;
  
}
}

@media (max-width: 400px) {
  .text-overlay {
    width: 350px !important;
    font-size: 10px !important;
  }

  .about-us-button {
    width: 100px;
    font-size: 18px !important;
    line-height: 200%;
    height: 35px;
  }

}

@media (max-width: 375px) {
  .text-overlay {
    width: 325px !important;
    font-size: 9px !important;
  }
  .about-us-button {
    width: 80px;
    font-size: 16px !important;
    line-height: 200%;
    height: 30px;
  }

  .logo img {
    max-width: 175px !important;
  }
}

@media (max-width: 350px) {
  .text-overlay {
    width: 300px !important;
    font-size: 8px !important;
  }
  .about-us-button {
    width: 70px;
    font-size: 14px !important;
    line-height: 175%;
    height: 25px;
  }
}









.image-container .text-overlay h1 {
  background-color: rgba(211, 211, 211, 0.5); /* Semi-transparent background */
  padding: 10px 50px;
  border-radius: 5px;
 
}

.text-overlay h1 {
    font-family: 'Playful Despair', sans-serif;
   

   
}




.image-container .text-overlay .about-us-button {
  display: inline-block; /* Makes the link behave like a button */
  margin-top: 20px; /* Space from the heading */
  padding: 20px 70px; /* Button padding */
  background-color: black; /* Button background color */
  color: white; /* Button text color */
  text-decoration: none; /* Removes underline from link */
  border-radius: 50px; /* Optional: rounds corners */
 font-size: 20px;
}

.image-container .text-overlay .about-us-button:hover {
  background-color: #555; /* Darker background on hover */
}




/* 2nd body section */
.gallery-container {
  background-color: #c4c3c0;
  padding-top: 4%;
}
.gallery, .bottom-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
 

}

.gallery-item p, .bottom-gallery-item p {
    font-family: 'Playful Despair', sans-serif;
  

}


.gallery-item, .bottom-gallery-item {
  flex-basis: calc(33.333% - 10px); /* Adjusts the width for three items per row, accounting for some margin */
  margin-bottom: 20px; /* Space between the image and the text below */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the content */
}
.gallery-item img, .bottom-gallery-item img {
  width: 90%; /* Makes the image take up the full width of its container */
  height: 300px; /* Keeps the image aspect ratio */
  display: block;
  border-radius: 10px;
}
.gallery-item p, .bottom-gallery-item p {
  text-align: center; /* Aligns the text center below the image */
  margin-top: 0.5em; /* Adds a little space between the image and the text */
}
.bottom-gallery {
  justify-content: space-between; /* Creates a gap between the items */
  align-items: flex-start; /* Aligns items to the top */
  margin-top: 20px; /* Space between top and bottom rows */

}
.bottom-gallery-item {
  flex-basis: calc(50% - 5px); /* Adjusts the width for two items per row with a gap, accounting for some margin */
}

.bottom-gallery-item img {
  width: 60%; /* Adjust the width as desired (e.g., 80% of the container width) */
border-radius: 10px;
  height: 300px; /* Maintains the image's aspect ratio */
  display: block;
}
.gallery-item p, .bottom-gallery-item p {
  text-align: center; /* Aligns the text center below the image */
  margin-top: 0.5em; /* Adds a little space between the image and the text */
  font-size: 25px; /* Adjust the font size as desired */
  background-color: white; /* White background color */
    border: 1px solid #ccc; /* Border around the button */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the button */
    display: inline-block; /* Make the button size fit the content */
   border-radius: 15px;
}

@media (max-width: 950px) {
  .gallery, .bottom-gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .gallery-item, .bottom-gallery-item {
      width: 500px; /* Make each item take full width */
      height: 300px;
      margin-bottom: 20px; /* Add some space between the items */
  }

  /* Optional: Adjust image sizes if necessary */
  .gallery-item img, .bottom-gallery-item img {
      width: 100%; /* Make images responsive */
      height: auto; /* Maintain aspect ratio */


  }
}

@media (max-width: 1150px) {
  .gallery-item p, .bottom-gallery-item p {
    font-size: 20px;
  }
}




@media (max-width: 700px) {
 

  .gallery-item, .bottom-gallery-item {
      width: 400px; /* Make each item take full width */
      height: 250px;
      margin-bottom: 20px; /* Add some space between the items */
  }
 

}

@media (max-width: 550px) {
 

  .gallery-item, .bottom-gallery-item {
      width: 300px; /* Make each item take full width */
      height: 250px;
      margin-bottom: 20px; /* Add some space between the items */
  }
 
  .gallery-item p, .bottom-gallery-item p {
font-size: 20px;
  }
}

@media (max-width: 550px) {
 

  .gallery-item, .bottom-gallery-item {
      width: 250px; /* Make each item take full width */
      height: 250px;
      margin-bottom: 20px; /* Add some space between the items */
  }
 
  .gallery-item p, .bottom-gallery-item p {
font-size: 18.5px;
  }
}






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

.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%;
  margin-top: 1%;
}

.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%;
  }
}