@media (min-width: 700px) {
    .footer {
        background-image: url('../images/background.webp');
        background-size: cover;
        background-repeat: no-repeat;
    }
}
.footer {
    width: 100%;
    padding: 80px 0 0 0;
    position: relative;
}
.footer .container {
    justify-content: space-between;
}
.footer .container .logo img {
    width: 160px;
    margin-bottom: 40px;
}

.footer .container .links {
    display: flex;
}
.footer .container .col2 {
    margin-right: 100px;
}
.footer .container .col h3 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 500;
}
.footer .container .col4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .container .col4 .title {
    align-items: start;
}
.footer .container .col p{
    width: 300px;
    color: var(--transparent-white);
    font-weight: 100;
    font-size: 18px;
    font-family: "Winky Sans", sans-serif;
    line-height: 2.4ch;
}
.footer .container .col li {
    line-height: 5ch;
}
.footer .container .col li a {
    color: var(--transparent-white);
    font-weight: 100;
    font-size: 16px;
    transition: .2s;
    font-family: "Winky Sans", sans-serif;

}
.footer .container .col li a:hover {
    color: var(--text-color);
}
.footer .container .contact-form input {
    padding: 20px;
}
.footer .container .contact-form button {
    font-weight: 400;
    position: absolute;
    right: -35px;
    top: 55%;
    width: 130px;
    border-radius: 0;
    padding: 15px;
    background: linear-gradient(to right,  #00eefff1, transparent);
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.753);
}
.footer .container .contact-form button:hover {
    background-color: #13bf9a4d;
}
.footer .copyright {
    width: 1200px;
    margin: auto;
    margin-top: 60px;
    color: var(--transparent-white);
    font-size: 15px;
    font-weight: 200;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}
@media (max-width: 950px) {
    .footer .container {
        width: 90%;
        flex-direction: column;
    }
    .footer .container .col p {
        font-size: 16px;
        text-align: start;
    }
    .footer .container .contact-form2 input{
        background-color: #a200ff09;
    }
    .footer .container .contact-form input {
        width: 80%;
    }
    .footer .container .contact-form {
        background-color: transparent;
        align-items: start;
    }
    .footer .container .contact-form button {
        right: 20px;
        top: 35px;
        padding: 10px;
    }
    .footer .container .links {
        margin: 40px 0;
    }
    .footer .container .col2 {
        margin-right: 60px;
    }
    .footer .copyright {
        width: 100%;
        padding: 0 0 30px 0;
    }
}