@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Tangerine:wght@400;700&display=swap');



.footer {
    /* border: 2px solid black; */
    /* background-color: #FAE8BF; */
    background-color: #004938;
}

.footerinner {
    /* border: 2px solid red; */
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0px 40px 0px;
    border-bottom: 1px solid white;
}

.footerleft {
    /* border: 2px solid green; */
    width: 50%;
}

.footerright {
    /* border: 2px solid blue; */
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Quicksand", sans-serif;
}

.footerimg img {
    width: 40%;
}

/* .f1{
    border: 2px solid red;
}
.f2{
    border: 2px solid red;
}
.f3{
    border: 2px solid red;
} */
.f4 button {
    border: none;
    border-radius: 15px;
    background-color: #d2ae6d;
    color: black;
    padding: 5px 16px;
}

.footer a {
    text-decoration: none;
    color: white;
    text-transform: capitalize;
    font-size: 18px;
}

/* .footerlowerdiv{
    border: 2px solid black;
} */

.footerlowerdivinner {
    /* border: 2px solid green; */
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0px 10px 0px;
}
.footerlowerdivinner p {
    color: white;
}

.iconsdiv {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.f5 {
    display: none;
}
.iconsimg{
    margin-bottom: 13px;
}


@media(max-width:500px) {
    .footerinner {
        /* border: 2px solid red; */
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        padding: 30px 0px 20px 0px;
        border-bottom: 1px solid white;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footerleft {
        /* border: 2px solid green; */
        width: 100%;
    }

    .footerright {
        /* border: 2px solid blue; */
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .footerimg img {
        width: 50%;
    }

    .footerimg {
        display: flex;
        justify-content: center;
    }

    .f5 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        width: 100%;
    }

    .f5 a{
        margin-bottom: 6px;
    }

    .f1,
    .f2,
    .f3 {
        display: none;
    }

    .footerlowerdivinner {
        /* border: 2px solid green; */
        width: 80%;
        margin: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        padding: 0px 0px 20px 0px;
    }

    .footerlowerdivinner p {
        margin: 0px;
        text-align: center;
        font-family: "Quicksand", sans-serif;
    }

    .iconsdiv {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    .iconsimg img{
        margin: 6px;
    }
    .footer a {
        text-decoration: none;
        /* color: black; */
        text-transform: capitalize;
        font-size: 15px !important;
    }
}

