/*------------footer--section--styling---*/
.footer-section {
    width: 80rem;
    margin: 0px auto;
    margin-top: 10rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-section > div:first-child {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 1rem;
    flex-direction: column;
    width: 20rem;
}
.footer-section > div:first-child > img {
    height: 3rem ;
    width: auto;
    object-fit: cover;
}
.footer-section > div:first-child > p {
    font-size: 1rem;
    color: var(--black-color);
}
.footer-section > div:first-child > div {
   border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: 0 0 2px 2px rgba(40, 55, 79, 0.1);
}
.footer-section > div:first-child > div input {
    height: 2.5rem;
    width: 80%;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--black-color);
    padding-right: 0.2rem;
}
.footer-section > div:first-child > div input::placeholder {
    text-transform: capitalize;
}
.footer-section > div:first-child > div button {
    height: 2.5rem;
    width: 7rem;
    font-size: 0.9rem;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--poppins-font);
    border: none;
    outline: none;
    border-radius: 0.5rem;
    background-color: var(--main-color);
    cursor: pointer;
}
.footer-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}
.footer-item > h2 {
    font-size: 1rem;
    font-weight: 550;
    color:var(--black-color);
    margin-bottom: 0.8rem;
}
.footer-item > a {
    font-size: 1rem;
    color: var(--dark-black);
    text-decoration: none;
    cursor: pointer;
}
.footer-item > a:hover {
    color:var(--main-color);
}
.footer-section > div:last-child > div {
    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
    gap: 1rem;
    align-items: center;
}
.footer-section > div:last-child  {
    gap: 0.5rem;
}
.footer-section > div:last-child > div p {
   font-weight: 550;
}
.footer-section > div:last-child > div:last-child {
    margin-top: 0.5rem;
}
.page-bottom {
    width: 100%;
    padding: 1rem 0;
}
.page-bottom p {
    text-align: center;
    text-transform: capitalize;
    font-size: 0.9rem;
    color: var(--dark-black);
}
.footer-info-icons img {
    height: 1.3rem;
    width: 1.3rem;
}
.footer-contact-icons img {
    height: 2.5rem;
    width: 2.5rem;
}
/*-------media-queries-for-footer-section---*/
@media screen and (max-width: 1350px) {
    .footer-section {
        width: 99%;
    }
}
@media screen and (max-width: 1045px) {
    .footer-section {
        width: 99%;
        gap: 2rem;
    }
}
@media screen and (max-width: 990px) {
    .footer-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4rem;
    }
}