
body {
  padding-top: 50px;
}

.header-mobile {
  background-color: #094DA4;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  top: 0;
  z-index: 20;
}

.header-mobile-inner {
  height: 50px;

  display: flex;
  justify-content: space-between;
}

.header-desktop {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 15px;
  background-color: #094DA4;

  transition: height .15s ease-in-out .15s;

  padding-left: 1%;
  padding-right: 1%;

  width: 100%;
  height: 60px;

  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-hamburger-menu-button {
  border: none;
  background: none;
}

.header-logo {
  border: none;
  background: none;
  padding: 0px;

  img {
    width: 99.85px;
    height: 98.25px;
  }
}

.header-desktop-options-wrapper {
  display: flex;
  align-items: flex-start;
  column-gap: 25px;
  padding-top: 25px;

  a {
    width: fit-content;
    font-size: 15px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    line-height: 13px;
    display: flex;

    position: relative;

    padding-bottom: 5px;
    white-space: nowrap;
  }

  .header-option-container:hover>a:after {
    left: 15%;
    width: 70%;
  }

  a::after {
    position: absolute;
    display: block;
    content: "";
    top: calc(auto + 10px);
    bottom: 0;
    left: 50%;
    right: auto;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all .15s ease-in-out;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.header-search-button-container {
  width: 25px;
  display: flex;
  align-items: center;
}

.header-search-container {
  display: none;

  padding-top: 55px;
  padding-bottom: 18px;

  position: relative;

  .header-search-button-mobile {
    border: none;
    background: none;
    position: absolute;
    top: 63px;
    right: 15px;
  }
}

.header-search-wrapper-desktop {
  width: 100%;
  max-width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-search-container-desktop {
  width: 100%;
  position: relative;

  display: none;
  max-width: 0px;
  overflow: hidden;
  transition: all 300ms ease-in-out;

  .header-search-button-desktop {
    border: none;
    background: none;
    position: absolute;
    top: 8px;
    right: 15px;
  }
}

.header-search-input {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #FFF;
  color: #094DA4;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding-right: 45px;

  padding-left: 16px;
  outline: none;
}

.header-search-input-desktop {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #FFF;
  color: #094DA4 !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding-right: 45px;

  padding-left: 16px;
  outline: none;
}

  @media screen and (min-width: 768px) {
  body {
    padding-top: 60px;
  }

  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: flex;
  }

  .header-logo {
    img {
      width: 152.48px;
      height: 151.91px;
    }
  }
}

@media screen and (min-width: 880px) {
  .header-desktop {
    padding-left: 5.2%;
    padding-right: 3.47%;
  }
  .header-desktop-options-wrapper {
    column-gap: 30px;
  }
}

@media screen and (min-width: 1060px) {
  .header-desktop {
    padding-left: 10.416%;
    padding-right: 6.94%;
  }

  .header-desktop-options-wrapper {
    column-gap: 40px;
  }
}