.footer-sec {
    padding: 3em 0;
    background: var(--secondary-color);
}
.footer-logo-wrp a {
    color: #fff;
    text-decoration: none;
    font-size: 35px;
    font-family: var(--secondary-font);
    font-weight: 500;
}
.footer-logo-wrp p {
    color: #fff;
    font-size: 17px;
    font-family: var(--secondary-font);
    width: min(100%, 300px);
    margin: 20px 0;
    font-weight: 400;
    line-height: 22px;
}
.footer-link a {
    color: #fff;
    text-decoration: none;
}
.copyright {
    float: right;
    display: flex
;
    align-items: flex-start;
    justify-content: end;
    height: 100%;
    flex-direction: column;
}
.copyright p {
    font-size: 17px;
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 300;
}
.footer-social ul {
    padding: 0;
    margin: 0;
}
.footer-social li {
    display: inline-block;
    list-style: none;
    background: #fff;
    width: 25px;
    height: 25px;
}
.footer-social li:nth-child(2) {
    margin: 0 10px;
}
.footer-social a {
    color: #000;
    font-size: 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
}
.footer-social li:hover {
    background: var(--primary-color); 
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.footer-social li:hover a {
    color: #fff;
}
@media only screen and (max-width:575px) {
  .copyright {
    float: left;
}
.footer-sec {
    padding: 2em 0;
}
}