.section {
  margin-bottom: 170px;
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 120px;
  }
}

.home .sticky-header {
  transform: translateY(-120%);
}
.home.sticky .sticky-header {
  transform: translateY(0);
}

header {
  position: relative;
}
header .hamburger-menu {
  background-color: var(--e-global-color-primary);
  width: 49px;
  height: 49px;
  position: fixed;
  z-index: 10;
  top: 11px;
  display: none;
  place-content: center;
  left: 17px;
  border-radius: 50%;
  gap: 3px;
}
@media screen and (width <= 990px) {
  header .hamburger-menu {
    display: grid;
  }
}
header .hamburger-menu span {
  background-color: var(--e-global-color-5508c70);
  height: 3px;
  width: 19px;
}
header .nav-mobile {
  position: fixed;
  background: linear-gradient(-45deg, #012F8B -5.2%, #242883 2.16%, #D4035D 100%);
  height: 100vh;
  width: 100vw;
  z-index: 99;
  top: 0;
  overflow: hidden;
  padding-inline-start: 32px;
  padding-block-start: 150px;
  transform: translateX(-100%);
  transition: transform ease-in-out 0.3s;
}
header .nav-mobile.show {
  transform: translateX(0);
}
header .nav-mobile__close-button {
  position: fixed;
  top: 29px;
  right: 37px;
}
header .nav-mobile .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header .nav-mobile .menu li a {
  color: var(--e-global-color-5508c70);
  font-weight: 400;
  font-family: "DM Serif Text", serif;
  font-size: 24px;
}

.sticky-header {
  box-shadow: 0 11px 26px 0 rgba(0, 0, 0, 0.25);
  background-color: var(--e-global-color-5508c70);
  block-size: 84px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  transition: transform ease-in-out 0.3s;
}
@media screen and (width <= 990px) {
  .sticky-header {
    block-size: 73px;
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.11);
  }
}
.sticky-header__container {
  max-inline-size: 1140px;
  margin: auto;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 72px;
  background-color: var(--e-global-color-5508c70);
  position: relative;
}
@media screen and (width <= 990px) {
  .sticky-header__container {
    display: flex;
    justify-content: center;
    height: 100%;
  }
}
.sticky-header__container::after {
  content: "";
  position: absolute;
  left: -15px;
  transform: skewX(-20deg);
  background-color: var(--e-global-color-5508c70);
  height: 100%;
  width: 60px;
  z-index: 2;
}
.sticky-header__container::before {
  background: url("../images/background-gradient.svg");
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  top: 0;
  bottom: 0;
  width: calc(100vw - 1140px);
  position: absolute;
  z-index: 1;
  left: calc(-100vw + 1140px);
}
.sticky-header__logo {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  z-index: 5;
}
.sticky-header__logo img {
  max-inline-size: 185px;
}
.sticky-header__nav {
  height: 84px;
  position: relative;
}
@media screen and (width <= 990px) {
  .sticky-header__nav {
    display: none;
  }
}
.sticky-header__nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 72px;
}
@media screen and (width <= 1200px) {
  .sticky-header__nav ul {
    gap: 40px;
  }
}
@media screen and (width <= 990px) {
  .sticky-header__nav ul {
    display: none;
  }
}
.sticky-header__nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}
.sticky-header__nav ul li.current_page_item a {
  color: var(--e-global-color-primary);
}
.sticky-header__nav ul li a {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  height: 100%;
  align-content: center;
  transition: color 0.3s ease;
}
.sticky-header__nav ul li a:hover, .sticky-header__nav ul li a:focus {
  color: var(--e-global-color-primary);
}/*# sourceMappingURL=header.css.map */