.footer {
  @apply bg-secondary text-white;
  padding-top: 80px;

  .col {
    @apply mb-spacer;
  }

  &__about {
    @apply text-center md:text-left md:pr-5 leading-normal;

    img {
      @apply block mb-5 mx-auto md:ml-0;
    }
    p {
      @apply text-sm  mb-spacer text-white opacity-80;
      font-size: 16px !important;
    }
  }

  h4 {
    @apply text-white font-semi mb-spacer;
  }

  &__nav {
    @apply mb-spacer;

    li {
      @apply text-white opacity-80 py-1 text-sm cursor-default;
      margin-bottom: 10px !important;

      a {


        &:hover,
        &.active {
          @apply text-primary;
        }
      }
    }
  }

  &__social {
    @apply flex mb-spacer;

    li {
      @apply last:mr-0;
      margin-right: 15px;

      .icon {
        @apply  w-5 h-5;
      }
      a {


        &:hover,
        &.active {
          @apply text-primary;
        }
      }
    }
  }

  &__map {
    @apply relative w-full rounded-xl overflow-hidden;
    padding-bottom: 220px !important;
    margin-bottom: 30px;

    #google-map {
      @apply absolute inset-0 w-full h-full;

      div.gmnoprint,
    div.gmnoscreen, img[src*="https://maps.gstatic.com/mapfiles/api-3/images/"]
      {
        @apply hidden;
      }
    }
  }
}

.production {
  @apply bg-bordeaux;
}


.after-footer{
  font-size: 16px;
}