header {
  position: sticky;
  top: 0;
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.25);
  background-color: white;
  z-index: 1000;
  transition: height 0.3s ease;
}
header .container-h {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .container-h > a {
  display: flex;
  align-items: center;
}
header .container-h ul {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 40px;
}
header .container-h ul li {
  list-style: none;
  font-weight: 600;
}
header .container-h ul li a {
  text-decoration: none;
  color: black;
}
header .container-h ul li a:hover, header .container-h ul li a.active {
  color: #e84242;
}
header .search-container .search-form {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  border: 4px solid #e84242;
  border-radius: 50px;
  overflow: hidden;
}
header .search-container .search-form .bar {
  width: 0;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 2;
  transition: all 0.3s ease;
}
header .search-container .search-form .bar input {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: black;
  border: none;
  padding: 0;
}
header .search-container .search-form .bar input:focus-visible {
  outline: none;
}
header .search-container .search-form .bar.active {
  width: 215px;
  opacity: 1;
}
header .search-container .search-form .bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  flex-basis: 2rem;
  cursor: pointer;
  padding: 0;
  margin-right: 0.15rem;
}
header .search-container .search-form .bar button i {
  transition: all 0.3s ease;
}
header .search-container .search-form .bar button:hover i {
  transform: scale(1.1);
}
header .search-container .search-form .search-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  flex-basis: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  padding: 0.5rem;
  order: 1;
}
header .search-container .search-form .search-icon i {
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  color: #e84242;
  transition: all 0.3s ease;
}
header .search-container .search-form .search-icon:hover i {
  transform: scale(1.1);
}
header .search-container .search-form .search-icon.disabled {
  cursor: default;
}
header .search-container .search-form .search-icon.disabled i {
  transform: scale(1);
}
@media (max-width: 1024px) {
  header .search-container {
    display: none;
  }
}
header img {
  width: 50px;
  height: auto;
  transition: all 0.3s ease;
}
header.start {
  height: 110px;
}
header.start img {
  width: 80px;
}
header .burger-icon {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .burger-icon span:nth-child(1) {
  top: 7px;
}
header .burger-icon span:nth-child(2), header .burger-icon span:nth-child(3) {
  top: 18px;
}
header .burger-icon span:nth-child(4) {
  top: 29px;
}
header .burger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header .burger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .burger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .burger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
@media (max-width: 1024px) {
  header .menu-menu-header-container {
    display: none;
  }
  header .burger-icon {
    display: flex;
  }
  header .menu-contact {
    display: none;
  }
}

.search {
  display: none;
}

.sidenav {
  display: none;
  position: fixed;
  background-color: #f4e2cb;
  top: 0;
  right: 0;
  transform: translateX(-110vw);
  width: 100vw;
  height: 100%;
  z-index: 20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  font-size: 1.25rem;
  transition: transform 0.7s ease;
}
.sidenav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0;
}
.sidenav ul li {
  list-style: none;
}
.sidenav ul li a {
  color: black;
}
.sidenav a {
  text-decoration: none;
  font-weight: 600;
}
.sidenav a:hover, .sidenav a.active {
  color: #e84242;
}
.sidenav a.button {
  font-size: 1.25rem;
}
.sidenav a.button:hover {
  color: #fff;
}
.sidenav.active {
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .sidenav {
    display: flex;
  }
}
.sidenav .search-container .search-form {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  border: 4px solid #e84242;
  border-radius: 50px;
  overflow: hidden;
}
.sidenav .search-container .search-form .bar {
  width: 0;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 2;
  transition: all 0.3s ease;
}
.sidenav .search-container .search-form .bar input {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: black;
  border: none;
  padding: 0;
  background-color: #f4e2cb;
}
.sidenav .search-container .search-form .bar input:focus-visible {
  outline: none;
}
.sidenav .search-container .search-form .bar.active {
  width: 215px;
  opacity: 1;
}
.sidenav .search-container .search-form .bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  flex-basis: 2rem;
  cursor: pointer;
  padding: 0;
  margin-right: 0.15rem;
}
.sidenav .search-container .search-form .bar button i {
  transition: all 0.3s ease;
}
.sidenav .search-container .search-form .bar button:hover i {
  transform: scale(1.1);
}
.sidenav .search-container .search-form .search-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  flex-basis: 2.25rem;
  display: block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  padding: 0.5rem;
  order: 1;
  color: #e84242;
}
.sidenav .search-container .search-form .search-icon i {
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  color: #e84242;
  transition: all 0.3s ease;
}
.sidenav .search-container .search-form .search-icon:hover i {
  transform: scale(1.1);
}
.sidenav .search-container .search-form .search-icon.disabled {
  cursor: default;
}
.sidenav .search-container .search-form .search-icon.disabled i {
  transform: scale(1);
}

.menu-header {
  display: flex;
  gap: 40px;
  align-items: center;
}

.arrow-to-top {
  width: 3rem;
  height: 3rem;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e84242;
  cursor: pointer;
  z-index: 19;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.arrow-to-top i {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.arrow-to-top.active {
  opacity: 0;
  animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.arrow-to-top.disabled {
  opacity: 1;
  animation-name: fade-out;
}
@keyframes fade-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.arrow-to-top:hover i {
  transform: translateY(-0.25rem);
}

/*# sourceMappingURL=header.css.map */
