footer {
    height:30%;
}

.footer-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 10%;
    background: maroon;
}

.footer-contents ul {
    width: fit-content;
    color:#f2f2f2;
    font-size: 25px;
}


.footer-contents p{
    color:#f2f2f2;
    font-size: 15px;
    text-align:justify;
    word-break:keep-all;
    line-height: 1.7;
}

.footer-contents p i{
    padding-left:10px;
}


.footer-contents ul:first-of-type p{
    width:330px;
}

.social-links {
    display: flex;
    column-gap: 10px;
}

.social-links a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #f2f2f2;
    border-radius: 50%;
}

.social-links i{
    font-size: 20px;
    color: maroon;
}

.social-links a:hover{
    background-color: #353535;
}

.social-links a:hover i{
    color: #f2f2f2;
}

ol{
    list-style-type: none;
    padding: 0;
}

ol li {
    position: relative;
    width:225px;
    padding: 7px 15px;
    border-bottom:1px solid white;
    transition: border-color 0.5s;

}

ol li::before {
    content: "";
    position: absolute;
    top:40%;
    left:0;
    width: 1px;
    height: 1px;
    border-width:5px;
    border-style: solid;
    border-color: transparent transparent transparent white;
    transition: border-color 0.5s;

}

ol li a {
    font-size: 20px;
    color: white;
}

ol li:hover {
    border-bottom:1px solid #353535;
}

ol li:hover a { 
    color:#353535;

}

ol li:hover::before { 
    border-color: transparent transparent transparent #353535;
}


.footer-copyright {
    display: flex;
    justify-content: center;
    background-color: black;
    color:#353535;
    font-weight: bold;
    padding: 30px 0;
}

.footer-copyright a{
    color: maroon;
    padding: 0px 5px;
}

.footer-copyright a:hover{
    color:#353535;
}



@media (max-width:399px){
    .footer-contents p{
        font-size: 12px;
    }
    .footer-contents ul:first-of-type,
    .footer-contents ul:last-of-type {
        display: none;
    }
}

@media (min-width:400px) and (max-width:659px){

    .footer-contents ul:first-of-type,
    .footer-contents ul:last-of-type {
        display: none;
    }
}

@media (min-width:660px) and (max-width:749px){

    .footer-contents {
        column-gap: 0;
    }

    .footer-contents ul:last-of-type {
        display: none;
    }

}

@media (min-width:750px) and (max-width:1034px){
    .footer-contents ul:last-of-type {
        display: none;
    }
}

@media (min-width:1035px) and (max-width:1290px){
    .footer-contents {
        column-gap: 0;
    }
}
