 .jnp-footer {
     background: #0d0d0d;
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .jnp-footer h4 {
     color: #fff;
 }

 .jnp-footer p {
     color: #cfcfcf;
 }

 /* Top Area */
 .footer-top {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
     gap: 60px;
     padding: 50px 0;
 }

 .footer-container {
     width: 1240px;
     margin: auto;
 }

 .footer-about img {
     max-width: 280px;
     margin-bottom: 15px;
     filter: brightness(0) invert(1);
 }

 .footer-about p {
     color: #cfcfcf;
     line-height: 1.9;
     max-width: 380px;
 }

 /* Headings */
 .footer-col h4 {
     font-size: 22px;
     margin-bottom: 25px;
     font-weight: 600;
     position: relative;
 }

 .footer-col h4:after {
     content: '';
     width: 40px;
     height: 2px;
     background: #e11b22;
     position: absolute;
     left: 0;
     bottom: -10px;
 }

 /* Links */
 .footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-col a {
     color: #d7d7d7;
     transition: .3s;
 }


 .jnp-footer ul {
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 /* Social */
 .footer-social {
     display: flex;
     gap: 15px;
     margin-top: 30px;
 }

 .footer-social a {
     width: 45px;
     height: 45px;
     border: 1px solid rgba(255, 255, 255, .2);

     display: flex;
     align-items: center;
     justify-content: center;
     transition: .3s;
 }

 .footer-social a:hover {
     background: #e11b22;
     border-color: #e11b22;
 }

 /* Button */
 .footer-btn {
     display: inline-block;
     margin-top: 25px;
     background: #e11b22;
     color: #fff !important;
     padding: 8px 10px;
     font-weight: 400;
     transition: .3s;
 }

 .jnp-footer a {
     color: #cfcfcf;
 }


 /* Bottom */
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .1);
     padding: 20px 0;
 }

 .footer-bottom .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-links {
     display: flex;
     gap: 25px;
 }

 /* Responsive */
 @media(max-width:991px) {

     .footer-top {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
     }
 }

 @media(max-width:767px) {

     .footer-top {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-col h4:after {
         left: 42%;
     }

     .footer-container {
         padding: 30px 15px;
         width: 320px;
         max-width: 400px;
         margin: auto;
     }

     .footer-about p {
         max-width: 100%;
     }

     .footer-social {
         justify-content: center;
     }

     .footer-bottom .container {
         flex-direction: column;
         gap: 15px;
         text-align: center;
     }
 }