.header-lp-3 {
  background: #042D5A;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform .5s ease-in-out;
}

.header-lp-3 .wrap {
  width: 100%;
  padding: 20px 40px;
  transition: transform .5s ease-in-out;
}

/* .header-lp-3.scrolled {
  position: fixed;
  top: 0;
  background: #1A5699;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
} */

/* .header-lp-3.scrolled .wrap {
  padding: 10px 40px;
} */

.header-lp-3 .wrap .left-items-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.header-lp-3 .wrap .left-items-wrap .mobile-btn {
  width: 30px;
  height: 30px;
  display: none;
}

.header-lp-3 .wrap .left-items-wrap .mobile-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-lp-3 .wrap .left-items-wrap .brand {
  width: auto;
  display: block;
}

.header-lp-3 .wrap .left-items-wrap .brand img {
  width: auto;
  max-height: 66px;
  display: block;
}

/* .header-lp-3.scrolled .wrap .left-items-wrap .brand img {
  max-height: 50px;
} */

.header-lp-3 .wrap .left-items-wrap .header-location-wrap,
.header-lp-3 .wrap .left-items-wrap .header-location-wrap .menu-wrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.header-lp-3 .wrap .left-items-wrap .header-location-wrap .mobile-close-btn {
  width: 30px;
  height: 30px;
  display: none;
}

.header-lp-3 .wrap .left-items-wrap .header-location-wrap .mobile-close-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-lp-3 .wrap .left-items-wrap .header-location-wrap .menu-wrap ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-lp-3 .wrap .left-items-wrap .header-location-wrap .menu-wrap ul li a {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  padding: 4px 10px;
  color: #fff;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150.053% */
}

.header-lp-3 .wrap .left-items-wrap .header-action-wrap .action-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  align-items: center;
  color: #FFF;
  font-family: 'Roboot', sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.51px;
  /* 150.053% */
}

@media only screen and (max-width: 1300px) {
  .header-lp-3 .wrap .left-items-wrap .mobile-btn {
    display: block;
  }

  .header-lp-3 .wrap .left-items-wrap .header-action-wrap .action-item .action-item-text {
    display: none;
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 325px;
    height: 100%;
    z-index: 10001;
    background: #fff;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform .5s ease-in-out;
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap.menu-open {
    transform: translateX(0);
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap .menu-wrap {
    width: 100%;
    flex-flow: column nowrap !important;
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap .mobile-close-btn {
    display: initial;
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap ul {
    width: 100%;
    flex-flow: column nowrap !important;
    gap: 1px;
    background: rgba(229, 231, 235, 1);
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap ul li {
    flex-flow: row nowrap;
    width: 100%;
  }

  .header-lp-3 .wrap .left-items-wrap .header-location-wrap ul li a {
    padding: 14px 20px !important;
    background: #fff;
    color: #000 !important;
  }
}

@media only screen and (max-width: 767px) {
  .header-lp-3 {
    position: sticky;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .header-lp-3 .wrap,
  .header-lp-3.scrolled .wrap {
    padding: 8px 16px;
  }

  .header-lp-3.scrolled .wrap .left-items-wrap .brand img,
  .header-lp-3 .wrap .left-items-wrap .brand img {
    max-height: 48px;
  }
}