/* Footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #833F6D;
    color: white;
    padding: 1% 0;
    width: 100%;
    border-top: 2px solid white;
    box-sizing: border-box;
    z-index: 1;
    margin-top: auto;
}



.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

/* Footer links */
.footer-left {
    flex: 1;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-left: 13%;
    margin-right: 0%;
}

.footer-links li {
    position: relative;
    padding-left: 12px;
    display: flex;
    align-items: center;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-35%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.footer-links p {
    margin: 0;
    padding: 0;
    display: inline;
    font-family: 'Montserrat Armenian light';
    font-size: 12px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a:hover {
    color: #c1a2b3;
}

/* Contact info and logos */
.footer-right {
    margin-left: 10%;
    display: flex;
    align-items: center;
    gap: 15%;
    flex: 1.5;
    position: relative;
    justify-content: flex-start;

}

.contact-info {
    padding: 0 15%;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.contact-info p {
    font-size: 13px;
    font-family: 'Montserrat Armenian light';
    margin: 2px 0;
}

/* Logos */
.logos {
    display: flex;
    gap: 10px;
}

.logos img {
    height: 35px;
    object-fit: contain;
}

.second-logo {
    height: 40px;
}

/* @Yweb position */
.yweb-text {
    position: absolute;
    right: 5%;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;

}

.yweb-text .copyright {
    width: 10px;
    height: auto;
}

.yweb-text p {
    font-size: 12px;
    color: white;
    opacity: 0.7;
    font-family: 'Montserrat Armenian light';
}


/* Responsive */
/* Responsive Footer */

@media (max-width: 900px) {
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 0 5%;
    }
  
    .footer-left, 
    .footer-right {
      flex: unset;
      width: 100%;
      margin: 0;
    }
  
    .footer-links {
      justify-content: flex-start;
      gap: 20px;
      margin-left: 0;
      flex-wrap: wrap;
    }
  
    .footer-right {
      justify-content: space-between;
      gap: 10%;
    }
  
    .contact-info {
      padding: 0 10px;
      border-left: none;
      border-right: none;
      margin-bottom: 10px;
    }
  
    .logos {
      justify-content: flex-start;
    }
  
    .yweb-text {
      position: static;
      margin-top: 15px;
      opacity: 0.7;
      justify-content: flex-start;
    }
  }
  
  @media (max-width: 480px) {
    .footer-links {
      gap: 12px;
      font-size: 10px;
    }
  
    .footer-links li {
      padding-left: 8px;
    }
  
    .footer-links li::before {
      width: 4px;
      height: 4px;
      transform: translateY(-50%);
    }
  
    .contact-info p {
      font-size: 11px;
    }
  
    .logos img {
      height: 28px;
    }
  
    .second-logo {
      height: 32px;
    }
  
    .yweb-text p {
      font-size: 10px;
    }
  }
  