footer{
    background: linear-gradient(180deg, #5076FF 0%, #A2B6FF 100%);
    position: relative;
    padding: 80px 0px;
    color: var(--white);
    overflow: hidden;
}

footer h3{
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
}

footer p{
    color: var(--white);
    margin-bottom: 25px;
}

footer form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

footer form input[type="text"]{
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px;
    width: 100%;
}

footer input::placeholder{
    color: var(--white);
}

footer form input[type="submit"]{
    border: none;
    padding: 20px 30px;
    transition: all 0.6s ease;
}

footer hr{
    color: var(--white);
    opacity: 0.4;
    margin-top: 70px;
}

footer h5{
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 10px;
}

footer ul{
    margin: 0px;
    padding: 0px;
}

footer ul li{
    list-style: none;
}

footer ul li a{
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.6s ease;
    font-family: "Montserrat", sans-serif;
    
}

footer ul li a:hover{
    color: var(--primary);
}

footer ul.footer-socials{
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}

footer ul.footer-socials li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
}

footer ul.footer-socials li a:hover{
    background: var(--primary);
    color: var(--white);
}

.copyright{
    padding: 20px;
    background: var(--white);
    color: var(--black);
    text-align: center;
}

@media (max-width: 1500px){
    footer img{
        max-width: 200px;
    }
}


@media (max-width: 1000px){
    footer{
        padding: 50px 0px;
    }
    footer img{
        display: none;
    }
    footer h5{
        margin-top: 30px;
    }
}