/* Styles for footer */

.footer {
    --rem-size: 10px;
  
    padding: 5vh 4vw 2vh 4vw;
    display: flex;
    align-items: center;
  
    background: #212529;
    border-radius: 200px 200px 0 0;
    height: 34vh;
  }
  
  .footer-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-list {
    font-size: var(--rem-size) !important;
    row-gap: 2vh;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  
  .footer-list li{
    text-align: start;
    font-weight: 400;
    font-size: calc(1.6 * var(--rem-size));
    color: #FFFFFF;
    /* margin-right: 10px; */
  }
  
  .footer-list li a{
    text-decoration: none;
    font-weight: 400;
    font-size: calc(1.6 * var(--rem-size));
    color: #FFFFFF;
  }
  
  .footer-list li::before {
    color: #FFFFFF;
    content: "\2022";
    margin-right: 5px;
    font-size: calc(1.2 * var(--rem-size));
  }
  
  .alright-txt {
    text-align: center;
    color: #FFFFFF;
    font-weight: 400;
    font-size: calc(1.2 * var(--rem-size));
  }
  
  .golftimes-logo-footer {
    height: 6vh;
    width: auto;
  }
  

  @media (max-width: 768px) {

    .footer {
        --rem-size: 9px;
    
        padding: 5vh 4vw 2vh 4vw;
        display: flex;
        align-items: center;
    
        background: #212529;
        border-radius: 100px 100px 0 0;
        height: auto;
      }


      
  .golflogo-row {
    margin-bottom: 3vh;
    justify-content: center;
  }

  .golftimes-logo-footer {
    height: 5vh;
    width: auto;
  }

  .footer-list {
    padding: 0 0 3vh 2vh !important;
  }


  }

  @media (max-width: 500px) {

    .footer {
        --rem-size: 8px;
      }

  }