#footer{
  background-image: url(../images/bg-footer-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 60px;
  color: #fff;
}

.footer-logo img{
  margin: 0px auto 20px;
}

#footer-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  & .navbar-nav{
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;

    &:before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: #FFFFFF;
      background: var(--nava--gradient--clear-white-clear);
    }

    &:after{
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: #FFFFFF;
      background: var(--nava--gradient--clear-white-clear);
    }

    & .nav-link{
      padding-top: 20px;
      padding-bottom: 20px;
      font-weight: 600;
    }
  }

  & .footer-logo{
    flex-shrink: 0;
    
    & img{
      margin-bottom: 0;
    }
  }
}

.footer-contacts{
  margin-top: 40px;
  padding-bottom: 40px;
  position: relative;

  &:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    background: var(--nava--gradient--clear-white-clear);
  }

  & .hours{
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin-top: 15px;
    margin-bottom: 15px;

    & .hours-item{
      border: 1px solid #777;
      padding: 20px;
      text-align: center;
    }

    & .hours-day{
      margin-bottom: 0;
      color: #ccc;
    }

    & .hours-time{
      font-weight: 600;
      margin-bottom: 0;
    }
  }
}

.footer-contact{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;

  & p{
    margin-bottom: 0px;
  }
}

.footer-contact_icon{
  height: 32px;
  width: 32px;
  fill: #fff;
  margin-bottom: 15px;
}


.copyright{
  text-align: center;
  margin-top: 40px;

  & p{
    font-size: var(--nava--font-size--small);
    color: #ccc;
    margin-bottom: 0;
  }
}

@media (max-width: 991px){
  #footer-nav{
    flex-direction: column;
  }
}