/* Footer styles */
.footer {
  background: #232222;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #cfcfcf;
  border-top: 1px solid #232222;
  overflow: hidden;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2%;
  gap: 64px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  gap: 1rem;
}

.mobile{
  display: none;
  visibility: hidden;
}

.wrap-language{
  flex-direction: row;
  gap: 5px;
}

.logo-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
}

.footer-logo {
  height: auto;
  width: auto;
  max-width: 264px;
  max-height: 68px;
}

.wrap-content{
  flex: 1.5;
  display: flex;
}

.contact-col{
  padding-left: 5%;
}

.address-col{
  border-right: 2px solid #cfcfcf; 
}

.address-col strong,
.contact-col strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

.address-col p,
.contact-col p {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(12px, 2.5vw, 1.25rem);
  line-height: 1.8;
}

.contact-col a {
  text-decoration: underline;
  transition: color 0.2s;
  color: #cfcfcf;
}

.contact-col a:hover {
  color: #EC6938;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  align-self: center;
  color: #232222;
}

.footer-social a {
  font-size: 1.3rem;
  transition: color 0.2s;
  color: #232222;
  margin: 0px 5px 0px 5px;
}

.footer-social a:hover {
  color: #EC6938;
}

.footer-bottom {
  display: flex;
  background-color: #cfcfcf;
  color: #232222;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px 30px 60px;
  font-size: 0.95rem;
}


.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.footer-copy {
  text-align: right;
  font-family: "Rubik";
  font-weight: 300;
  font-size: 0.87rem;
}

/* Responsive styles */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin: 16px;
  }

  .contact-col p{
    font-size: 0.625rem;
  }

  .footer-line{
    display: none;
  }

  .mobile{
    display: block; 
    visibility: visible;
  }

  .bottom{
    display: none; 
    visibility: hidden;
  }

  .wrap-content{
    flex: 1;
    flex-direction: column;
    border-left: 2px solid #cfcfcf; 
    padding: 5px;
  }

  .footer-col{
    text-align: center;
  }

  .address-col{
    border: none;
  }
  
  .contact-col{
    padding-top: 18px;
  }

  .footer-copy{
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-main{
    gap: 0;
    margin: 5px;
  }

  .footer-col {
    width: auto;
    height: auto;
    font-size: clamp(11px, 1.8vw, 12px);
    padding: 5%;
  }
  .contact-col{
    padding-left: 0;
  }

  .footer-col strong{
    font-size: 12px;
  }

  .footer-lang{
    font-size: 12px;
  }

  .footer-logo {
    width: 100%;
    height: 100%;

    color: white;
  }

  
.footer-social a {
  margin: 0px 2% 0px 2%;
}
}