
body{
	min-height: 100vh;
}
.footer-image{
	width:100vw;
   transform: translateY(5px);
}

.footer {
   position: sticky;
   top:100%;
   overflow-y: hidden;
   overflow-x: hidden;
}

@media screen and (max-width: 951px) {
   .modal3 {
       display: flex;
       /* Hidden by default */
       position: fixed;
       /* Stay in place */
       z-index: 1;
       /* Location of the box */
       left: 0;
       top: 0;
       width: 100%;
       /* Full width */
       height: 100%;
       /* Full height */
       overflow: hidden;
       /* Enable scroll if needed */
       background-color: rgb(0, 0, 0);
       /* Fallback color */
       background-color: rgba(0, 0, 0, 0.4);
       /* Black w/ opacity */
     }
   .modal3 p{
       margin-top: 30px;
   }
   .popup3{
       top:28%;
       min-height: max-content;
       height: max-content;
       width: 60%;
       background:white;
       border-radius: 8px;
       position: absolute;
       padding: 50px;
       color: #000;
   }
   .footer{
      display:none;
   }
}

@media screen and (min-width: 951px) {
   .modal3{
      display: none;
   }
   .footer{
      display:inherit;
   }
}