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

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.footer .footer-about .logo img {
  width: 350px;
}
.footer-logo-description{
padding: 10px 25px;
font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li img {
  padding: 10px 5px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: left;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
/* Footer contact styling */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  width: 100%;
  margin: auto;
}
.footer-contact a{
  width: 100%;
  text-align: center;
  font-size: 20px;
}

/* Address block styling */
.footer-contact .footer-address {
  border-right: 1px solid white;
  flex: 1 1 10%; 
  padding-right: 20px;
  /* Address takes up 50% of the space */
}

/* Contact details (phone and email) styling */
.footer-contact .footer-contact-details {
  padding-left: 20px;
  margin-top: -10px;
  flex: 25%; /* Phone and email take up the remaining 50% */
  /* margin-left: 20px; */
   /* Add space between address and contact details */
}

/* Social media icon styling */
.social-links {
  display: flex;
  justify-content: center; /* Center icons */
  gap: 15px; /* Add space between the icons */
  margin-top: 20px;
}

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.637);
}

.footer .copyright p {
  margin-bottom: 10px;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
@media (max-width: 868px) { /* Adjust breakpoint as needed */
  .footer .footer-about .logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }
  
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  /* Address block styling */
  .footer-contact .footer-address {
    flex: 1 1 40%; 
  }
  
  /* Contact details (phone and email) styling */
  .footer-contact .footer-contact-details {
    margin-top: -10px;
    margin-left: 5%;
    flex:1 1 45%; /* Phone and email take up the remaining 50% */
  }
  
  .footer .footer-top {
    display: flex !important; 
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .footer .footer-links {
    flex: 1 1 45% !important; /* Take 45% of the width and adjust for gap */
    max-width: 45% !important; /* Prevents stretching beyond 50% */
    box-sizing: border-box !important;
  }

  .footer .footer-about,
  .footer .footer-newsletter {
    flex: 1 1 100% !important; /* Full width for these sections */
    max-width: 100% !important;
  }


  .footer .footer-links ul {
    padding-left: 0 !important;
    list-style: none !important;
    text-align: center !important;
  }
}
/* Browser Support */
.browser-support{
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 8%;
}
.browser-support h3{
  font-size: 25px;
}
.browser-support .browser-icons{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  font-size: 30px;
  color: white !important;
}
.browser-support .browser-icons a{
  color: white !important;  
}
/* Browser Support End */