@import url('https://fonts.googleapis.com/css2?family=Rakkas:wght@400&display=swap');

.logo__title {
    text-transform: none;
    font-family: 'Rakkas', serif;
    font-size: 26px;
    font-weight: 400;
    white-space: nowrap;
}

.logo__tagline {
    text-transform: none;
    font-family: 'Rakkas', serif;
    font-size: 26px;
    font-weight: 400;
    margin-top: 0em;
    border-top: none;
}

.logo__img {
    height: 58px
}

.header-contact {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}

.phone {
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: #0dc143;
    color: white;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.email {
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: #0dc143;
    color: white;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp {
    height: 42px;
    margin-bottom: -5px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo__link {
    display: flex;
}

.scrolling-banner {
  background: #111;
  color: cyan;
  overflow: hidden;
  white-space: nowrap;
  padding: 1.0em 0;
  line-height: 1.4em;
  display: flex;
  align-items: center;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

