:root {
  /* colors */
  --primary: #877aff;
  --gray_text: #838497;
  /* --dark_blue_text: rgba(36, 39, 66, 1); */
  --gray_bg: #f5f6fa;
  --white: #fff;
  --black: #0a0a0a;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: var(--gray_bg) !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--black);
}
body {
  padding-bottom: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

p:last-of-type {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
.dh_white_bold {
  font-weight: 700 !important;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white) !important;
}
.dh_italic {
  font-style: italic !important;
}

.bg_primary {
  background-color: var(--primary);
}
.dh_dark_layer {
  background: linear-gradient(
    249.85deg,
    rgba(0, 0, 0, 0) 19.76%,
    rgba(0, 0, 0, 0.59) 71.98%
  );

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 767px) {
}

/* ---------------------------------------------------------------- */
/* WRAPPERS & SECTIONS */
#dh_header {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--gray_bg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
#dh_header.dh_head_sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.dh_section_top_banner {
  padding: 160px 0 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.dh_section {
  padding: 120px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.dh_section_stan_exc {
  padding: 180px 0 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.dh_section_full {
  padding: 80px 0 60px;
}
.dh_section_footer {
  padding: 80px 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.dh_bg_gray {
  background-color: var(--gray_bg);
}
.dh_bg_black {
  background-color: var(--black);
}
.dh_bg_white {
  background-color: var(--white);
}
.dh_transparent_bg {
  background-color: transparent !important;
}
.dh_container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}
.dh_container_full {
  width: 100%;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .dh_section_top_banner {
    padding: 120px 0 80px;
  }
  .dh_section {
    padding: 80px 0;
  }
  .dh_section_stan_exc {
    padding: 140px 0 80px;
  }
  .dh_section_footer {
    padding: 80px 0 0;
  }
}

@media only screen and (max-width: 940px) {
  .dh_section_top_banner {
    padding: 120px 0 60px;
  }
  .dh_section {
    padding: 60px 0;
  }
  .dh_section_stan_exc {
    padding: 120px 0 60px;
  }
  .dh_section_footer {
    padding: 60px 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .dh_section_top_banner {
    padding: 120px 0 40px;
  }
  .dh_section {
    padding: 40px 0;
  }
  .dh_section_stan_exc {
    padding: 100px 0 40px;
  }
  .dh_section_footer {
    padding: 40px 0 0;
  }
  .dh_container {
    padding: 0 16px;
  }
}
/* WRAPPERS & SECTIONS END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* NAV */
.dh_header_content {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.dh_header_logo a {
  display: block;
}
.dh_header_logo .dh_logo {
  height: 43px;
  display: block;
}
#dh_navigation {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
#dh_navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
}
.dh_nav_links_w {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
#dh_navigation ul li {
  position: relative;
}
#dh_navigation ul li.dh_nav_last {
  width: 100%;
  border-top: 1px solid #ebf0eb;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dh_navigation ul li.dh_nav_last img {
  height: 12px;
}
#dh_navigation ul li p a {
  display: flex;
  display: initial;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray_text);
}
.dh_multi_button {
  display: flex;
  gap: 26px;
  align-items: center;
}
#dh_navigation ul li a.dh_button {
  background-color: var(--primary);
  padding: 14px 48px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;

  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
#dh_navigation ul li a.dh_button img {
  height: 13px;
  margin-left: 4px;
}
#dh_navigation .dh_nav_dropdown {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.dh_nav_dropdown p {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray_text);
}
.dh_nav_dd_arrow {
  transition: transform 0.3s ease;
}
.dh_nav_arrow_rotate {
  transform: rotate(180deg);
}
#dh_navigation .dh_nav_dropdown_items {
  position: absolute;
  left: -20px;
  min-width: 220px;
  z-index: 2;
  border-radius: 12px;
  background-color: var(--gray_bg);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#dh_navigation .dh_nav_dropdown_items ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 24px;
}

#dh_hamb_btn,
#dh_hamb_btn_close {
  display: none;
  cursor: pointer;
}
#dh_hamb_btn img,
#dh_hamb_btn_close img {
  width: 34px;
  display: block;
}
.dh_nav_cart_wrap {
  position: relative;
}
.dh_cart_link {
  display: flex;
  align-items: center;
  position: relative;
}
.dh_cart_link img {
  width: 26px;
  height: 26px;
}
.dh_cart_count {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: var(--primary, #222);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

/* HOVER */
@media (hover: hover) {
  #dh_navigation ul li p a:hover {
    border-bottom: 1px solid var(--primary);
  }
  #dh_navigation ul li a.dh_button p:hover {
    border-bottom: none;
  }
  #dh_navigation ul li a.dh_button:hover {
    background-color: var(--black);
  }
}

/* MEDIA */
@media only screen and (max-width: 1240px) {
  #dh_navigation {
    width: 300px;
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -310px;
    background: var(--white);
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    transition: all 0.3s ease;
  }
  #dh_navigation.dh_open_nav {
    right: 0;
  }
  #dh_hamb_btn,
  #dh_hamb_btn_close {
    display: block;
  }
  #dh_hamb_btn_close {
    position: absolute;
    right: 20px;
    top: 18px;
  }
  #dh_navigation #dh_list_wrapper {
    flex-direction: column;
    padding: 80px 20px 40px;
    align-items: flex-start;
    height: 100%;
    overflow: auto;
  }
  .dh_nav_links_w {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    justify-content: flex-start;
  }
  #dh_navigation .dh_nav_dropdown p,
  #dh_navigation ul li p a {
    font-size: 22px;
    text-align: left;
  }
  #dh_list_wrapper .dh_nav_btn_wrap {
    width: 100%;
  }
  #dh_list_wrapper .dh_nav_cart_wrap {
    position: absolute;
    top: 27px;
    left: 20px;
  }
  #dh_navigation ul li a.dh_button {
    width: 100%;
    text-align: center;
  }
  #dh_navigation .dh_nav_dropdown_items {
    position: static;
    background-color: var(--white);
  }
  #dh_navigation .dh_nav_dropdown_items ul {
    gap: 24px;
    padding: 20px 0 0 20px;
  }
  .dh_nav_dd_arrow {
    width: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .dh_header_content {
    height: 64px;
  }
}
/* NAV END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* HERO TOP BANNER */
.dh_hero_banner {
  position: relative;
  width: 100%;
  padding: 127px 80px;
  border-radius: 24px;
  overflow: hidden;
}
.dh_hero_banner .dh_hero_banner_cover_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
}
.dh_hero_banner_content {
  position: relative;
}
.dh_hero_banner_content h1 {
  max-width: 600px;
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 700;
  font-style: italic;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
}
.dh_hero_banner_content h3 {
  max-width: 600px;
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
}
.dh_hero_banner_content p {
  max-width: 534px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffffcc;
  margin-bottom: 16px;
}
.dh_hero_banner_content p:last-of-type {
  margin-bottom: 40px;
}
.dh_hero_banner_content .dh_button {
  background-color: var(--primary);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.dh_hero_banner_content .dh_button img {
  height: 13px;
  margin-left: 4px;
}

.dh_hero_banner_text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dh_hero_banner_text .dh_hero_banner_content h1 {
  max-width: 869px;
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 700;
  font-style: italic;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}
.dh_hero_banner_text .dh_hero_banner_content p {
  max-width: 736px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--gray_text);
  text-align: center;
  margin-bottom: 0;
}
.dh_hero_banner_text .dh_hero_banner_content .dh_journey_badge {
  margin: 0 auto 8px auto;
  color: var(--black);
  background-color: #877aff66;
}

/* HOVER */
@media (hover: hover) {
  .dh_hero_banner_content .dh_button:hover {
    background-color: var(--gray_text);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
  .dh_hero_banner {
    padding: 34px 20px;
  }
  .dh_multi_button {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .dh_hero_banner_content h1,
  .dh_hero_banner_text .dh_hero_banner_content h1 {
    font-size: 38px;
    line-height: 52px;
  }
  .dh_hero_banner_content .dh_button {
    width: 100%;
    text-align: center;
  }
}

/* HERO TOP BANNER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/*  3 GRID SECTION */
.dh_3grid_wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.dh_3grid_item {
  max-width: 290px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dh_3grid_item_icon {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: var(--primary);
  margin-bottom: 20px;
}
.dh_3grid_item_title {
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 10px;
  color: var(--black);
}
.dh_3grid_item_desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #0a0a0ab2;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
}

@media only screen and (max-width: 767px) {
  .dh_3grid_wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
/*  3 GRID SECTION END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* REACH SECTION */
.dh_section_title {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 40px;
}
.dh_section_title img {
  margin-top: 4px;
}
.dh_section_title h2 {
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--black);
}
.dh_section_title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 16px;
  color: var(--black);
}
.dh_reach_content {
  background-color: var(--black);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.dh_reach_content_l,
.dh_reach_content_r {
  position: relative;
  max-width: 50%;
  width: 100%;
}
.dh_reach_content_l img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 24px 24px 0;
  display: block;
  z-index: 1;
}
.dh_reach_content_r {
  padding: 70px 50px 70px 36px;
}
.dh_reach_badge {
  padding: 6px 30px;
  border: 1px solid var(--primary);
  border-radius: 16px;
  background-color: #877aff3b;
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: table;
  margin-bottom: 8px;
}
.dh_reach_content_r h3 {
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dh_reach_content_r h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.dh_reach_badge_desc {
  margin-bottom: 40px;
}
.dh_reach_badge_desc p {
  margin-bottom: 16px;
  color: var(--gray_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
}
.dh_reach_badge_desc p:last-of-type {
  margin-bottom: 0;
}
.dh_multi_cta_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.dh_reach_content_r .dh_button {
  background-color: var(--primary);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
}
.dh_reach_content_r a.dh_button img {
  height: 13px;
  margin-left: 4px;
}

/* HOVER */
@media (hover: hover) {
  .dh_reach_content_r .dh_button:hover {
    background-color: var(--gray_text);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
  .dh_reach_content {
    flex-direction: column;
  }
  .dh_reach_content_l,
  .dh_reach_content_r {
    max-width: 100%;
  }
  .dh_reach_content_l img {
    position: static;
    border-radius: 24px;
  }
  .dh_reach_content_r {
    padding: 34px 20px;
  }
}

@media only screen and (max-width: 600px) {
  .dh_section_title img {
    margin-top: -2px;
  }
  .dh_section_title h2 {
    font-size: 34px;
  }
  .dh_reach_content_r h3 {
    font-size: 32px;
  }
  .dh_reach_content_r h4 {
    font-size: 20px;
  }
  .dh_reach_content_r .dh_button {
    width: 100%;
    text-align: center;
  }
}
/* REACH SECTION END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* START JOURNEY SECTION */
.dh_journey_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 60px;
}
.dh_journey_content_img,
.dh_journey_content_text {
  position: relative;
  width: 100%;
}
.dh_journey_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  z-index: 1;
}
.dh_journey_content_text {
  background-color: var(--black);
  padding: 76px 60px 76px 60px;
  border-radius: 24px;
}
.dh_journey_badge {
  padding: 6px 30px;
  border: 1px solid var(--primary);
  border-radius: 16px;
  background-color: #877aff3b;
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: table;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.dh_journey_content_text h3 {
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dh_journey_content_text h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.dh_journey_badge_desc {
  margin-bottom: 40px;
}
.dh_journey_badge_desc p {
  margin-bottom: 16px;
  color: var(--gray_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
}
.dh_journey_badge_desc p:last-of-type {
  margin-bottom: 0;
}
.dh_journey_content_text .dh_button {
  background-color: var(--primary);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  min-width: 166px;
  text-align: center;
}
.dh_journey_content_text a.dh_button img {
  height: 13px;
  margin-left: 4px;
}

/* HOVER */
@media (hover: hover) {
  .dh_journey_content_text .dh_button:hover {
    background-color: var(--gray_text);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
  .dh_journey_content {
    grid-template-columns: 1fr;
  }
  .dh_journey_content_img {
    aspect-ratio: 1 / 1;
  }
  .dh_journey_content_text {
    padding: 34px 20px;
  }
  /* .dh_journey_content_img:nth-child(1) {
    order: 1;
  }
  .dh_journey_content_text:nth-child(2) {
    order: 2;
  }
  .dh_journey_content_text:nth-child(3) {
    order: 4;
  }
  .dh_journey_content_img:nth-child(4) {
    order: 3;
  } */
}

@media only screen and (max-width: 600px) {
  .dh_journey_content {
    gap: 20px;
  }
  .dh_journey_content_text h3 {
    font-size: 32px;
  }
  .dh_journey_content_text h4 {
    font-size: 20px;
  }
  .dh_journey_content_text .dh_button {
    width: 100%;
    text-align: center;
  }
}
/* START JOURNEY SECTION END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* ABOUT LARGE */
.dh_about_large_content {
  display: flex;
  gap: 20px;
}
.dh_about_large_l,
.dh_about_large_r {
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dh_about_large_text {
  border-radius: 24px;
  background-color: var(--black);
  padding: 112px 40px;
  width: 100%;
}
.dh_about_large_text h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.dh_about_large_text h4 {
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dh_about_large_text ul {
  margin: 0;
  margin-top: 40px;
}
.dh_about_large_text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.dh_about_large_text ul li:last-of-type {
  margin-bottom: 0;
}
.dh_about_large_text ul li p span {
  color: var(--white);
  font-weight: 700;
}
.dh_about_large_img {
  position: relative;
  width: 100%;
  min-height: 920px;
  height: 100%;
}
.dh_about_large_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

@media only screen and (max-width: 940px) {
  .dh_about_large_content {
    flex-direction: column;
    gap: 60px;
  }
  .dh_about_large_l,
  .dh_about_large_r {
    max-width: 100%;
  }
  .dh_about_large_l {
    max-width: 100%;
    flex-direction: column-reverse;
    gap: 60px;
  }
  .dh_about_large_r {
    gap: 60px;
  }
  .dh_about_large_text {
    padding: 34px 20px;
  }
  .dh_about_large_img {
    aspect-ratio: 2/3;
    min-height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .dh_about_large_l,
  .dh_about_large_r,
  .dh_about_large_content {
    gap: 20px;
  }
  .dh_about_large_text h3 {
    font-size: 32px;
  }
  .dh_about_large_text h4 {
    font-size: 20px;
  }
}
/* ---------------------------------------------------------------- */
/* ABOUT LARGE */

/* ABOUT LARGE END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* TEXT SLIDER */
.dh_footer_slider {
  padding: 120px 0;
}
.dh_text_slider_content {
  width: 100%;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.dh_slider_text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 30px;
}
.dh_slider_text:before,
.dh_slider_text:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.dh_slider_text:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--primary));
}
.dh_slider_text:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--primary));
}
.dh_text_slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.dh_text_slide h2 {
  margin: 0 20px;
  color: var(--black);
  font-weight: 700;
  font-style: italic;
  font-size: 96px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.dh_slider_cta {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dh_slider_cta .dh_button {
  background-color: var(--white);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--black);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 167px;
  text-align: center;
  white-space: nowrap;
}
.dh_slider_cta .dh_button img {
  height: 13px;
  margin-left: 4px;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text,
.woocommerce-cart .coupon input.input-text#coupon_code {
  width: 240px !important;
  min-width: 180px;
  max-width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* HOVER */
@media (hover: hover) {
  .dh_slider_cta .dh_button:hover {
    background-color: var(--gray_text);
  }
}

/* MEIDA */
@media only screen and (max-width: 1140px) {
  .dh_footer_slider {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 940px) {
  .dh_footer_slider {
    padding: 60px 0;
  }
  .dh_text_slide h2 {
    font-size: 64px;
  }
}

@media only screen and (max-width: 768px) {
  .dh_slider_text:before,
  .dh_slider_text:after {
    width: 10%;
  }
}

@media only screen and (max-width: 600px) {
  .dh_footer_slider {
    padding: 40px 0;
  }
  .dh_text_slide h2 {
    font-size: 34px;
  }
  .dh_slider_cta {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}
/* TEXT SLIDER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* PLAN */
.dh_plans_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Style the tab */
.dh_plans_tabs .dh_tab {
  overflow: hidden;
  width: 382px;
  background-color: var(--black);
  padding: 6px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Style the buttons inside the tab */
.dh_plans_tabs .dh_tab button {
  width: 100%;
  background-color: #877aff33;
  border: 1px solid var(--primary);
  outline: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 20px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

/* Change background color of buttons on hover */
.dh_plans_tabs .dh_tab button:hover {
  background-color: var(--primary);
}

/* Create an active/current tablink class */
.dh_plans_tabs .dh_tab button.dh_active {
  background-color: var(--primary);
}

/* Style the tab content */
.dh_plans_content .dh_tabcontent {
  display: none;
  flex-direction: column;
  width: 100%;
}
.dh_tabcontent .dh_tab_note {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 16px;
}
.dh_tab_cards_wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
/* card */
.dh_tab_card {
  aspect-ratio: 2/3;
  flex: 0 0 calc((100% - 2 * 20px) / 3);
  display: flex;
  align-items: flex-end;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.dh_tab_card .dh_card_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dh_card_excl_wrap {
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--primary);
  position: relative;
  width: 100%;
}
.dh_card_excl_wrap p {
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 20px 4px;
}
.dh_tab_card_content {
  position: relative;
  border-radius: 24px;
  background-color: var(--white);
  padding: 20px;
  width: 100%;
}
.dh_tab_card_content h3 {
  color: var(--black);
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}
.dh_tab_card_content p {
  color: var(--gray_text);
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 0;
  text-transform: none;
}
.dh_tab_card_content .dh_button {
  background-color: var(--primary);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
}
.dh_tab_card_content .dh_button img {
  height: 13px;
  margin-left: 4px;
}

/* HOVER */
@media (hover: hover) {
  .dh_tab_card_content .dh_button:hover {
    background-color: var(--gray_text);
  }
}

/* MEIDA */
@media only screen and (max-width: 940px) {
  .dh_tab_card {
    padding: 10px;
  }
  .dh_tab_card_content {
    padding: 16px;
  }
  .dh_tab_card_content h3 {
    font-size: 24px;
    line-height: 24px;
  }
  .dh_tab_card_content p {
    margin-bottom: 24px;
  }
  .dh_tab_card_content .dh_button {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .dh_tab_card {
    flex: 0 0 calc((100% - 2 * 20px) / 2);
  }
}
@media only screen and (max-width: 600px) {
  .dh_plans_tabs,
  .dh_plans_tabs .dh_tab {
    width: 100%;
  }
  .dh_tab_card {
    flex: 0 0 calc((100% - 2 * 20px) / 1);
  }
}
/* PLAN END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* STANDARD / EXCLUSIVE */
.dh_plan_product_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.dh_plan_product_l {
  max-width: 555px;
  width: 100%;
}
.dh_plan_product_l .dh_journey_badge {
  margin-bottom: 4px;
  color: var(--black);
  background-color: #877aff66;
}
.dh_plan_product_l h1 {
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
  margin-top: 0;
  max-width: 555px;
}
.dh_plan_product_l p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--gray_text);
}
.dh_plan_products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* cards */
.dh_plan_product_bundle {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  border-radius: 24px;
  max-width: 525px;
  width: 100%;
}
.dh_plan_product_bundle_text {
  padding: 10px 30px;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
}
.dh_plan_product_bundle_text span {
  font-weight: 400;
}
.dh_plan_product_bundle_text span.dh_price_yellow {
  font-weight: 600;
  color: #ffe627;
}
.dh_plan_product {
  max-width: 525px;
  width: 100%;
  border: 1px solid #e8e8e8;
  background-color: var(--white);
  padding: 30px;
  border-radius: 24px;
}
.dh_plan_product_bundle .dh_plan_product {
  border: none;
}
.dh_plan_product_title_price {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dh_plan_product_title_price h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--black);
}
.dh_plan_product_price {
  color: var(--primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}
.dh_plan_product p {
  margin-bottom: 19px;
  max-width: 257px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--gray_text);
}
/* check */
.dh_check_container {
  height: 26px;
  width: 26px;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.dh_check_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.dh_check_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background-color: #f5f6fa;
}

/* On mouse-over, add a grey background color */
.dh_check_container:hover input ~ .dh_check_checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.dh_check_container input:checked ~ .dh_check_checkmark {
  background-color: #877affb8;
  border-color: var(--primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.dh_check_checkmark:after {
  content: url(../assets/checkmark.png);
  position: absolute;
  top: -5px;
  left: 6px;
  display: none;
}

/* Show the checkmark when checked */
.dh_check_container input:checked ~ .dh_check_checkmark:after {
  display: block;
}

.dh_plan_product:has(input[type="checkbox"]:checked) {
  border-color: var(--primary);
  border-width: 1px;
}
/* check end */
.dh_plan_product_r {
  max-width: 621px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.dh_plan_product_checkot {
  width: 100%;
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 30px 30px 70px;
}
.dh_plan_product_checkot .dh_checkout_img {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}
.dh_plan_checkot_phases {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
.dh_plan_checkot_phases h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 12px;
}
.dh_plan_checkot_phases_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 8px;
}
.dh_plan_checkot_phases_item:last-of-type {
  margin-bottom: 0;
}
.dh_plan_checkot_total {
  margin-bottom: 20px;
}
.dh_plan_checkot_total_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
}
.dh_plan_checkot_total_price .dh_plan_check_color_price {
  color: var(--primary);
  white-space: nowrap;
}
.dh_plan_product_checkot .dh_button {
  background-color: var(--primary);
  padding: 12px 41px;
  display: inline-block;
  border-radius: 8px;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
}
.dh_plan_product_checkot .dh_button img {
  height: 13px;
  margin-left: 4px;
}

.dh_plan_product_info h2 {
  color: var(--black);
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dh_accordions_wrap {
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid #e8e8e8;
  padding: 30px;
}
/* accordion */
/* Style the buttons that are used to open and close the accordion panel */
.dh_faq_accordion {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.dh_faq_accordion.dh_active {
  border-color: var(--primary);
}
.dh_faq_accordion:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.dh_accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-right: 24px;
}
.dh_accordion:after {
  content: url("../assets/icons/minus.png");
  width: 20px;
  height: 20px;
  right: 0px;
  top: -2px;
  position: absolute;
}
.dh__active:after {
  content: url("../assets/icons/plus.png");
  top: -2px;
}
/* Style the accordion panel. Note: hidden by default */
.dh_panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-bottom: 4px;
}
.dh_panel p {
  color: var(--gray_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 8px;
  margin-bottom: 20px;
}
.dh_panel p:last-of-type {
  margin-bottom: 0;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
  .dh_plan_product_wrap {
    flex-direction: column;
  }
  .dh_plan_product_l,
  .dh_plan_product_r {
    max-width: 100%;
  }
  .dh_plan_product_l h1 {
    max-width: 100% !important;
  }
  .dh_plan_product_bundle,
  .dh_plan_product {
    max-width: 100%;
  }
  .dh_plan_product {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .dh_plan_product_l h1 {
    font-size: 38px;
    line-height: 52px;
  }
}
/* accordions end */

/* HOVER */
@media (hover: hover) {
  .dh_plan_product_checkot .dh_button:hover {
    background-color: var(--black);
  }
}

/* MEIDA */
@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 600px) {
  .dh_plan_product,
  .dh_plan_product_checkot {
    padding: 14px;
  }
  .dh_plan_product_title_price h2,
  .dh_plan_product_price {
    font-size: 20px;
  }
  .dh_plan_checkot_total_price {
    font-size: 24px;
  }
  .dh_plan_product_checkot .dh_button {
    width: 100%;
    text-align: center;
  }
}
/* STANDARD / EXCLUSIVE END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* STEPS */
.dh_step {
  display: none;
}

.dh_step.active {
  display: block;
}

.dh_step_no {
  text-align: center;
  margin-bottom: 8px;
  color: var(--gray_text);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.dh_steps_wrapper {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.dh_step_content {
  max-width: 820px;
  width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dh_steps_title_single {
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  width: 100%;
}
.dh_steps_title_multi {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
.dh_steps_cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.dh_steps_card {
  width: 100%;
  border-radius: 24px;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.dh_steps_card .dh_steps_card_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.dh_card_select {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 100%;
  background-color: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 20px 30px;
}
.dh_card_select_text {
  color: var(--black);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.dh_card_select .dh_check_checkmark {
  border-color: var(--primary);
}
.dh_input_wrap {
  width: 100%;
}
.dh_single_input {
  width: 100%;
}
.dh_single_input .dh_single_input_title {
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}
.dh_single_input input,
.dh_single_input select {
  width: 100%;
  padding: 20px !important;
  background-color: var(--white);
  border-radius: 8px !important;
  outline: none;
  border: 1px solid var(--primary) !important;
  transition: all 0.3s ease;
  color: var(--black) !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.dh_single_input input:focus,
.dh_single_input input:active,
.dh_single_input select:focus,
.dh_single_input select:active {
  border-color: var(--primary);
}
.dh_steps_ctas {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dh_steps_cta_back {
  width: 100%;
  border: 1px solid var(--primary);
  color: var(--black);
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  cursor: pointer;
}
.dh_steps_cta_next {
  width: 100%;
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--primary);
  border-radius: 8px;
  cursor: pointer;
}

/* 2. step */
.dh_card_multi_select_wrapper,
.dh_card_multi_select_wrapper_radio {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dh_card_multi_select_single {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--primary);
}

/* 4. step */
.dh_select_full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 5. step */
.dh_steps_mid_title {
  width: 100%;
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  text-align: left;
}
.dh_steps_mid_title span {
  color: var(--gray_text);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.dh_card_multi_select_wrapper_radio .dh_card_select_text {
  text-transform: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* custom radio btn */
/* The container */
.dh_container_rad {
  height: 26px;
  width: 26px;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.dh_container_rad input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.dh_checkmark_rad {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: #f5f6fa;
}

/* On mouse-over, add a grey background color */
.dh_container_rad:hover input ~ .dh_checkmark_rad {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.dh_container_rad input:checked ~ .dh_checkmark_rad {
  background-color: #877affb8;
  border-color: var(--primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.dh_checkmark_rad:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.dh_container_rad input:checked ~ .dh_checkmark_rad:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.dh_container_rad .dh_checkmark_rad:after {
  content: url(../assets/checkmark.png);
  position: absolute;
  top: -5px;
  left: 6px;
}
/* custom radio btn end */

/* HOVER */
@media (hover: hover) {
  .dh_steps_cta_back:hover {
    background-color: var(--gray_text);
  }
  .dh_steps_cta_next:hover {
    background-color: var(--gray_text);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
}

@media only screen and (max-width: 600px) {
  .dh_card_select,
  .dh_card_multi_select_single {
    padding: 10px;
    gap: 10px;
  }
  .dh_card_select_text,
  .dh_steps_title_single,
  .dh_card_multi_select_wrapper_radio .dh_card_select_text,
  .dh_steps_mid_title {
    font-size: 14px;
  }
  .dh_single_input input {
    padding: 10px !important;
  }
  .dh_single_input .dh_single_input_title {
    font-size: 14px;
  }
  .dh_card_multi_select_wrapper,
  .dh_card_multi_select_wrapper_radio {
    gap: 10px;
  }
}
/* STEPS END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FOOTER */
.dh_footer {
  background-color: var(--primary);
  border-radius: 24px;
  overflow: hidden;
}
.dh_footer_top {
  width: 100%;
  background-color: var(--black);
  padding: 47px 80px;
  border-radius: 24px 24px 0 0;
}
.dh_footer_top_content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.dh_footer_links_col {
  max-width: 230px;
}
.dh_footer_links_col:first-of-type {
  max-width: 488px;
}
.dh_footer_links_col h2 {
  color: var(--primary);
  font-weight: 700;
  font-style: italic;
  font-size: 128px;
  line-height: 120%;
  letter-spacing: 0%;
}
.dh_footer_links_col:first-of-type p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
}
.dh_footer_links_col h3 {
  color: var(--gray_text);
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mt-16 {
  margin-top: 16px;
}
.dh_footer_links {
  /* display: flex; */
  flex-direction: column;
}
.dh_footer_links p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}
.dh_footer_links p.dh_footer_cookie {
  display: table;
  cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.dh_footer_links p:last-of-type {
  margin-bottom: 0;
}
.dh_footer_links p a,
.dh_footer_links p span {
  cursor: pointer;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.dh_footer_links_nested {
  margin-top: 40px;
}

.dh_footer_bot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 80px 40px;
  background-color: var(--black);
}
.dh_footer_bot p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
}
.dh_footer_bot_link p {
  color: var(--gray_text);
}
.dh_footer_bot a {
  color: var(--primary);
  transition: all 0.3s ease;
}

/* HOVER */
@media (hover: hover) {
  .dh_footer_links p a:hover,
  .dh_footer_links p span:hover,
  .dh_footer_links p.dh_footer_cookie:hover {
    border-bottom: 1px solid var(--primary);
  }
  .dh_footer_bot a:hover {
    color: var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .dh_footer_links_col:first-of-type {
    max-width: 320px;
  }
  .dh_footer_links_col h2 {
    font-size: 74px;
  }
}
@media only screen and (max-width: 940px) {
  .dh_footer_top,
  .dh_footer_bot {
    padding: 34px 20px;
  }
  .dh_footer_top_content {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .dh_footer_links_col:first-of-type {
    max-width: 100%;
    width: 100%;
  }
  .dh_footer_links_col:first-of-type p {
    max-width: 768px;
  }
  .dh_footer_top_cta {
    margin-bottom: 60px;
  }
  .dh_footer_links_col h3.mt-16 {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .dh_footer_links_col {
    max-width: 100%;
    width: 100%;
  }
  .dh_footer_bot {
    flex-direction: column;
    gap: 20px;
  }
  .dh_footer_bot p {
    text-align: center;
  }
  .dh_footer_links_col h2 {
    font-size: 38px;
  }
}

/* FOOTER END */
/* ---------------------------------------------------------------- */

/* PRIVACY BOOTOM UNDER FOOTER */
.privacy_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.privacy_popup.privacy_show {
  display: flex;
}
.privacy_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.privacy_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.privacy_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.privacy_popup_content a {
  color: var(--light-green);
}

/* COOKIES BOOTOM UNDER FOOTER */
.cookie_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.cookie_popup.cookie_show {
  display: flex;
}
.cookie_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookie_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.cookie_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.cookie_popup_content a {
  color: var(--light-green);
}

/* WP FIX */
.wp-block-uagb-container.uagb-block-f2bfe1ea {
  padding-top: 180px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  #respond
  input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  input.button.alt {
  background-color: var(--primary) !important;
}

.wcf-embed-checkout-form .wcf-custom-coupon-field button.wcf-submit-coupon,
.wcf-embed-checkout-form
  .woocommerce
  #order_review
  button:not(.js-woopayments-copy-test-number),
.wcf-embed-checkout-form
  .woocommerce
  #payment
  button:not(.js-woopayments-copy-test-number),
.wcf-embed-checkout-form
  .woocommerce
  .wcf-customer-login-section__login-button {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .wp-block-uagb-container.uagb-block-f2bfe1ea {
    padding: 120px 0 80px;
  }
}

@media only screen and (max-width: 940px) {
  .wp-block-uagb-container.uagb-block-f2bfe1ea {
    padding: 120px 0 60px;
  }
}

@media only screen and (max-width: 600px) {
  .wp-block-uagb-container.uagb-block-f2bfe1ea {
    padding: 120px 0 40px;
  }
}
