      /* Footer Styling */

      .footer{ 

        /* grid-row: 3/4; */
        /* grid-column: 1/2; */
        /* Already defined in fullpage.css  */

        margin-top: 30px;
        
        display: grid;
        grid-template-columns: 4% 91% 5%;
        /* to give space / justify centre */
        /* grid-template-rows: 150px 40px; */
        grid-template-rows: auto 70px ;
        background-color: black;
        color: white;
      }
      
      .footer-row1{
        /* background-color: rgb(133, 121, 121); */
        margin-top: 20px;
        grid-column: 2/3;
        grid-row: 1/2;
        display: grid;
        grid-template-columns: 100px 100px 100px 125px 225px;
        justify-content: space-between; 
      }

      .footer-row1 p {
        padding-top: 8px;
      }

      .footer b { 
        letter-spacing: 1.25px; 
      }

        
      .footer-row1 a {
        color: white;
      }

      .footer-row1 a:hover{
        /* text-decoration: underline; */
      }
      
      .footer-col-1 {
        display: grid;
        grid-template-rows: repeat(4 , 30px);
      }
      .footer-col-2 {
        display: grid;
        grid-template-rows: repeat(4 , 30px);
      }
      .footer-col-3 {
        display: grid;        
        grid-template-rows: repeat(6 , 30px);
        
      }
      .footer-col-4 {
        display: grid;
        grid-template-rows: repeat(4 , 30px);
        
      }
      .footer-col-5 {
        display: grid;
        grid-template-rows: repeat(4 , 30px);
      }
      
      .footer-bottom{
        margin-top: 25px;
        grid-row: 2/3;
        grid-column: 1 / -1;
        display: grid;
        /* grid-template-columns: 1fr 1fr 1fr; */
        grid-template-columns: 25% 40% 35% ;
        background-color: rgb(20, 20, 20);
        color: white;
      }

      .footer-bottom-col1{    
        grid-column: 1/2; 
        margin-left: 25px;  
        align-self: center;
        justify-self: left;
        font-size: 105%;
      }
      
      .footer-bottom-col2{
        grid-column: 2/3 ;
        align-self: center;
        justify-self: center;
        font-size: 100%;
      }

      .footer-bottom-menu{
        grid-column: 3 /4;
        justify-self: right;
        align-self: center;
        margin-right: 20px;
        letter-spacing: 1.25px;
      }

      .footer-bottom-menu a{
        text-decoration: none;
        color: white;
      }

      .footer-bottom-menu a:hover{
        text-decoration: underline;
      }