.footer-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: clamp(16px, 4vw, 24px);
}

.footer-content .footer-logo >  img {
  width: clamp(200px, 26vw, 300px);
  height: auto;
  display: block;
}


.footer-contacts{
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
gap: 4px;
color: white;
font-family: 'Poppins', sans-serif;
font-size: clamp(0.83rem, 1.2vw, 1.5rem);
font-weight: 100;
}

.footer-contacts i{
    padding-right: 12px;
}

.footer-contacts p{
    text-transform: uppercase;
    font-weight: 500;
    font-size: clamp(1.2rem, 1.5vw, 2rem);
}
.footer-contacts a{
    color: white;
    font-weight: 400;
}
.footer-contacts a:hover{
    cursor: pointer;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-content{
       flex-direction: row;
    }
}
