/* REMOVE CLICK / FOCUS BACKGROUND FROM HAMBURGER */
.cw-header__toggle,
.cw-header__toggle:hover,
.cw-header__toggle:focus,
.cw-header__toggle:active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* REMOVE MOBILE TAP HIGHLIGHT (VERY IMPORTANT FOR MOBILE) */
.cw-header__toggle {
  -webkit-tap-highlight-color: transparent;
}

.cw-header {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 100;
}

.cw-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cw-header__brand {
  flex: 0 0 auto;
}

.cw-header__brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cw-header__logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

.cw-header__site-title {
  color: #302826;
  font-family: "Overpass", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.cw-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.cw-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.cw-header__menu li {
  margin: 0;
  padding: 0;
}

.cw-header__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #302826;
  text-decoration: none;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  transition: color 0.25s ease;
}

.cw-header__menu .current-menu-item > a,
.cw-header__menu .current_page_item > a,
.cw-header__menu .current-menu-ancestor > a,
.cw-header__menu a:hover,
.cw-header__menu a:focus {
  color: #DE5945;
}

.cw-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cw-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  background: #DE5945;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0 20px 0 20px;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.cw-header__cta:hover,
.cw-header__cta:focus {
  background: #c94f3d;
	color:white;
  transform: translateY(-1px);
}

.cw-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.cw-header__toggle img {
  width: 28px;
  height: 28px;
  display: block;
}

.cw-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.cw-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cw-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100%;
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
  overflow-y: auto;
}

.cw-mobile-menu.is-open {
  pointer-events: auto;
}

.cw-mobile-menu.is-open .cw-mobile-menu__overlay {
  opacity: 1;
}

.cw-mobile-menu.is-open .cw-mobile-menu__panel {
  transform: translateX(0);
}

body.cw-menu-open {
  overflow: hidden;
}

.cw-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.cw-mobile-menu__brand {
  display: inline-flex;
  align-items: center;
}

.cw-mobile-menu__logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.cw-mobile-menu__close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.cw-mobile-menu__close span {
  position: absolute;
  top: 20px;
  left: 9px;
  width: 24px;
  height: 2px;
  background: #302826;
}

.cw-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.cw-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.cw-mobile-menu__nav {
  width: 100%;
}

.cw-mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-mobile-menu__list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(48, 40, 38, 0.08);
}

.cw-mobile-menu__list a {
  display: block;
  padding: 16px 0;
  color: #302826;
  text-decoration: none;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  transition: color 0.25s ease;
}

.cw-mobile-menu__list .current-menu-item > a,
.cw-mobile-menu__list .current_page_item > a,
.cw-mobile-menu__list .current-menu-ancestor > a,
.cw-mobile-menu__list a:hover,
.cw-mobile-menu__list a:focus {
  color: #DE5945;
}

.cw-mobile-menu__cta-wrap {
  margin-top: 28px;
}

.cw-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 30px;
  background: #DE5945;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0 20px 0 20px;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.cw-mobile-menu__cta:hover,
.cw-mobile-menu__cta:focus {
  background: #c94f3d;
}

@media (max-width: 1366px) {
  .cw-header__inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 22px;
  }

  .cw-header__menu {
    gap: 28px;
  }

  .cw-header__cta {
    padding: 18px 42px;
  }
}

@media (max-width: 1199px) {
  .cw-header__logo {
    width: 210px;
  }

  .cw-header__menu {
    gap: 22px;
  }

  .cw-header__menu a {
    font-size: 15px;
  }

  .cw-header__cta {
    padding: 16px 28px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .cw-header__inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .cw-header__nav,
  .cw-header__cta {
    display: none;
  }

  .cw-header__toggle {
    display: inline-flex;
  }

  .cw-header__logo {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .cw-header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cw-header__logo {
    width: 168px;
  }

  .cw-mobile-menu__panel {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px 28px;
  }

  .cw-mobile-menu__logo {
    width: 160px;
  }

  .cw-mobile-menu__cta {
    padding: 18px 24px;
    font-size: 15px;
  }
}