
@font-face {
    font-family: 'Jaro';
    src: url("{% static 'fonts/Jaro.ttf' %}") format('truetype'),
}



footer{
    margin-top: 150px;
    border-top: 3px solid #dc0041;

}

.footer-center{
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer-content{
    width: 1200px;
    padding: 45px;
    display: flex;
    justify-content: start;
    gap: 85px;
}

.footer-main{

}

.footer-main img{
    width: 250px;
}

.footer-main p{
    width: 300px;
    padding-left: 25px;
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
}

.copyright-section{
    background-color: #e10505;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-section p{
    font-size: 17px;
    font-family: sans-serif;
    font-weight: 600;
    color: #BBB6B6;
}


.footer-secondary{
    display: grid;
    place-items: start;
    place-content: center;
    padding: 0px 100px 0px 100px;
    gap: 20px;
}

.footer-links{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 80px;
    grid-row-gap: 15px;
}

.footer-links a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-family: sans-serif;
    font-size: 20px;
    transition: 0.2s ease;
}

.footer-links a:hover{
    scale: 1.1;
}

.footer-info{
    margin-top: 20px;
}

.footer-info span{
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-info img{
    width: 35px;
}

.footer-info p{
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: sans-serif;
}

@media (max-width: 450px) {

    .footer-content{
        display: grid;
    }

    .footer-main {
    width: 100%;
    display: grid;
    justify-content: center;

    }

    .footer-links {
        place-items: center;
        width: 100%;
    }

    .footer-main p {
        padding: 0;
    }
}