.footer {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    background-color: var(--primary);
    color: #000;
    position: relative;
    bottom: -30px;
}

.footer-box {
    width: 24%;
    height: 250px;
    min-width: 350px;
    padding: 30px;
    flex-grow: 1;
    transition: box-shadow 0.3s ease-in-out;
}

.footer-box:nth-child(1) {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.footer_top {
    display: flex;
    align-items: center;
   
    gap: 20px;
}

.footer_cname {
    font-size: 1.3rem;
    text-align: center;
    font-family: 'Oswald';
    line-height: 27px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.footer_first_name {
    font-family: 'Oswald';
    font-size: 1.8rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.header_Links,.Contact_footer_header {
    font-size: 1.3rem;
    text-align: left;
    font-family: 'Montserrat';
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.header_Links{
    margin: 0 0 10px 0;
}

.Contact_footer_header{
    margin: 7px 0 10px 10px;
}

.footer_links_Wrapper {
    margin: 10px 0;
}

.footer_links {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-family: 'poppins';
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer_links:hover {
    color: var(--dark_purple);
    transform: translateX(5px);
}

.links_arrow_container {
    font-size: 1rem;
    margin-right: 10px;
}

.contact_info_wrapper, .contact_info{
    font-family: "poppins";
    padding: 10px;
}

a{
    text-decoration: none;
}

@media (max-width: 700px){
    .footer-box:nth-child(1) {
        display: block;
    }
}




