.foot {
     height: 325px;
     padding: 25px 75px;
     display: flex;
     flex-direction: column;
     background-color: white;
}
.upperFoot {
     flex: 4;
     display: flex;
     justify-content: space-around;
}
.footer-box {
     padding: 10px;
     max-width: 22.5%;
}
.footer-box-heading {
     font-size: 18px;
     margin-bottom: 30px;
     font-family: 'Poppins', sans-serif;
     font-weight: 400;
     line-height: 20px;
     color: rgb(20, 20, 20);
}
.footer-description {
     font-size: 15px;
     margin-bottom: 5px;
     letter-spacing: 1px;
     font-family: 'Poppins', sans-serif;
     font-weight: 300;
     line-height: 20px;
     color: rgb(44, 44, 44);
}
.footer-social > a {
     font-size: 24px;
     width: 40px;
     height: 40px;
     line-height: 40px;
     display: inline-block;
     text-align: center;
     border-radius: 50%;
     border: 1px solid rgb(200, 200, 200);
     margin: 0 15px 0 0;
     opacity: 0.75;
}
.footer-link-nav {
     padding: 0;
     list-style: none;
}
.lowerFoot {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}
.foot-link {
     text-decoration: none;
     color: rgb(70, 70, 70);
}
.copyright {
     margin-bottom: 5px;
     text-align: center;
     font-family: 'Poppins', sans-serif;
     font-weight: 300;
}

@media (max-width: 650px) {
     .foot {
          padding: 25px;
          height: 720px;
     }
     .upperFoot {
          flex-direction: column;
     }
     .footer-box {
          max-width: 100%;
     }
     .footer-box-heading {
          margin-bottom: 15px;
     }
}