
header {
  position: fixed;
  margin-block: 15px;
  padding-inline: 15px;
  width: 100%;
  z-index: 1;
  font-size: 20px;
  color: black;

  #header-content {
    display: flex;
    flex-flow: column;

    img {
      margin-bottom: 20px;
    }

    #header-links {
      width: 100%;

      #header-bottom {
        display: flex;
        flex-flow: row nowrap;

        .call-button {
          display: flex;
          align-items: center;


          button#nav-cta {
            display: flex;
            margin-block: 10px;
            padding-inline: 20px;
            height: fit-content;

            svg {
              margin-right: 10px;
            }

            svg,
            .call-button span {
              color: rgb(0 71 26);
            }
          }
        }

        button#mobile-menu {
          margin-inline: 5px;
        }
      }
    }



    #links {
      display: flex;
      flex-flow: column;
      max-height: 0;
      padding-top: 0;
      transition: max-height 0.4s linear;
      overflow: hidden;

      a {
        padding-block: 5px;
        text-align: center;
        border-radius: 25px;
      }

      a:hover.links {
        background-color: #2b2b2b87;
      }
    }

    .show {
      max-height: 275px !important;
      padding-top: 20px !important;
    }

    #mobile-menu {
      width: 58px;
      margin: auto;
    }
  }

  img {
    height: 75px;
  }
}

@media (min-width: 912px) {
  header {
    #header-content {
      flex-flow: row wrap;
      margin: 0 !important;
      justify-content: space-between;
      width: 100%;

      #mobile-menu {
        display: none;
      }

      #header-links {
        display: flex;
        flex-direction: row-reverse;

        width: fit-content;

        #links {
          flex-flow: row wrap;
          max-height: 275px;
          padding-inline: 10px;

          a {
            width: fit-content;
            padding-inline: 10px;
          }

          button {
            margin-left: 10px;
          }
        }
      }
    }
  }
}