footer {
    background-color: var(--main-color);

}
footer a:hover{
    color: #fff;
}
.footer-form {
    position: relative;
    margin-bottom: 30px;
}

.footer-container{
    padding: 30px 0;
}

.footer-form input {
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    border: none;
}

.footer-form input:focus-visible {
    outline: 0;
}

.footer-form img {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.footer-item-title {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.footer-item-link {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

footer .social-icons {
    margin-left: 0;
}

footer .social-icon-item {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px !important;
}

.footer-logo {
    width: 100px;
    height: 75px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-info {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;
    width: 200px;
}

.footer-contact a {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
    display: block;
}

.footer-copy{
    padding: 10px 0 ;
    border-top: 1px solid #fff;
}

.footer-copy-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy-container p , .footer-copy-container a{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
color: #fff;
}

@media only screen and (max-width: 1400px) {
    footer .social-icon-item {
        margin-right: 10px !important;
    }
}

@media only screen and (max-width: 1200px) {
    .footer-container {
        padding: 25px;
    }
    .footer-copy-container{
        padding: 0 25px;
    }
}

