
.footer {
    
    padding: 40px 20px;
    background-color: #06060E;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
p, a {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
    text-decoration: none;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin-bottom: 10px;
}
.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    padding-left: 35px;
    border: 1px solid #757679;
    border-radius: 8px 0 0 8px;
    background-color: transparent;
    /* border-right: none; */
    color: #ffffff;
    font-family: Sofia Pro;
}

.newsletter-form {
    position: relative;
}

.newsletter-form::after {
    content: '';
    background-image: url("../icons/newsletter-icon.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.newsletter-form input:focus {
    outline: none;
  
}
.newsletter-form button {
    padding: 10px 15px;
    /* border-left: 1px solid #757679; */
    border: none;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #3E28F6;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-content: center;
    font-family: Sofia Pro;
}
.social-icons {
    display: flex;
    gap: 22px;
    margin-top: 15px;
}
.social-icons img {
    width: 32px;
    height: 32px;
}
.copyright {
    padding-top: 31px;
    text-align: center;
    font-size: 12px;
    color: #888888;
    display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  border-top: 1px solid #252222;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright p, .copyright .social-icons
{
    margin: 0;
}

.footer-section {
    flex: 1 1 200px;
    margin-bottom: 0px;
    padding-right: 20px;
}
@media (max-width: 768px) {

    .copyright {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .social-icons {
        gap: 24px;
    }
    .footer-content {
        flex-direction: column;
        margin-bottom:0px;
    }
    .footer-section {
        margin-bottom: 24px;
    }
}