@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.footer .logo {
    width: 350px;
}

.logo img {
    width: 100%;
}

.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footerContenet {
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: end;
    margin: auto;
}

.footer-section {
    width: 40%;
    margin-bottom: 20px;
}

.footer-section h3 {
    /* border-bottom: 2px solid #fff; */
    padding-bottom: 10px;
}

.footer-section p,
.footer-section a,
.footer-section label {
    color: white;
    margin: 20px 0;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.footer-section input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    /* margin-bottom: -22px; */
    margin: 16px 0px;
}

.footer-section button {
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    background-color: #E60000;
    color: white;
    font-weight: 700;
    cursor: pointer;

}

.footer-section button:hover {
    background-color: #0C7203;
}

.footerContenet .footer-section p span {
    margin-right: 10px;
}

/* *************************** */

.footerBottom {
    background-color: #0C7203;
}

.socialIcons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 20px 35px;
    cursor: pointer;
}

.socialIcons img {
    width: 22px;
}