html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/*
font-family: 'Barlow', sans-serif;
font-family: 'Barlow Condensed', sans-serif;
*/

body {
    font-family: 'Barlow', sans-serif;
    color: #1b5630;
    background: #EDEDED;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

p {
    font-size: 1.25rem;
    line-height: 1.35em;
}

h1 {
    display: flex;
    flex-direction: column;
    grid-gap: 2px;
    align-items: flex-start;
    max-width: max-content;
    text-transform: uppercase;
}

h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    line-height: 1.2em;
    font-weight: 700;
    color: #182c20;
}

.btn {
    background: #fcce01;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    display: block;
    max-width: max-content;
    padding: 8px 20px;
    border-radius: 3px;
    display: flex;
    line-height: 1.2em;
    grid-gap: 5px;
    transition: .3s;
    color: #182c20;
    text-align: center;
}

.btn:hover {
    scale: 1.05;
}

strong, i {
    font-weight: 500;
    color: #182c20;
}

.emphasis {
    color: #fcce01;
}

.more {
    text-decoration: underline;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 5px;
    color: #182c20;
}

.call {
    font-weight: 500;
    font-size: 1.25rem;
    display: flex;
    grid-gap: 5px;
    padding: 5px;
    border-radius: 3px;
    text-decoration: underline;
    color: #182c20;
}

.link {
    color: #fcce01;
    text-decoration: underline;
}


.whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
  }

  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }

  .call-page {
      margin-top: 20px;
  }

  .call-page .btn {
    margin-left: auto;
    margin-right: auto;
  }