/* 
    social media
    navbar content
    cpoyraght
*/

.footer-container {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 30px 0;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.2);
}

.footer-box {
    max-width: 1440px;
	margin: 0 auto;
	width: 100%;
    margin: 0 clamp(10px, 5vw, 64px);
}

.footer-desc {
    display: flex;
    font-size: medium;
    font-weight: normal;
    font-family: var(--basic-font);
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-media img {
    width: 32px;
}

hr {
    max-width: 1440px;
	margin: 0 auto;
	width: 100%;

    border: none;
    height: 1.5px;
    margin: 30px auto;
    width: 100%;
    opacity: 20%;
    background-color: rgb(108, 108, 108); 
}

.copyright-notice {
    display: flex;
    font-family: var(--parag-font);
    font-size: clamp(10px, 2vw, 15px);
    padding: 20px 0;
}

.copyright-notice p, a {
    color: gray;
    text-decoration: none;

}

.copyright-notice a:hover {
    color: black;
    cursor: pointer;
}
