@charset "UTF-8";
@font-face {
  font-family: "fontello";
  src: "/assets/font/fontello-font/font/fontello.woff2" format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "fontawesome";
  src: "/assets/font/fontawesome/webfonts/fa-regular-400.woff2" format("truetype");
  font-display: swap;
}
/************************************/
/*****        01. General css         ****/
/************************************/
html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body * {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

a:hover,
a {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

figure.wp-block-image {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

button:focus,
input:focus,
img:focus,
.slick-slide:focus,
textarea:focus,
input:focus {
  outline: none;
}

.section-padding-rl-0 {
  padding-right: 0;
  padding-left: 0;
}

.section-pt-0 {
  padding-top: 0;
}

.section-pb-0 {
  padding-bottom: 0;
}

@media screen and (max-width: 991px) {
  .section-pb-0-md {
    padding-bottom: 0;
  }
}

.d-none {
  display: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
:where(.wp-block-file__button):is(a):visited {
  box-shadow: unset;
  color: unset;
  opacity: unset;
  text-decoration: unset;
}

.wp-block-button .wp-block-button__link {
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  transform: skewX(-20deg);
  transition: none;
}
.wp-block-button .wp-block-button__link:hover::after {
  width: 140%;
  background-color: rgba(255, 255, 255, 0);
  transition: width 0.45s ease-in-out, background 0.45s ease-in-out;
}

.wp-block-button a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.wp-block-button a::before {
  content: "\e800";
  font-family: fontello;
  font-weight: 500;
  transition: all 0.5s;
}
.wp-block-button a:hover::before {
  transform: rotate(-45deg);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  transition: all 0.5s;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--button-background-primary);
  color: var(--wp--preset--color--white-color);
  border-color: var(--wp--preset--color--button-background-primary);
}

.wc-block-components-button:not(.is-link):focus {
  border: none;
  box-shadow: none;
}

.wp-block-buttons a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-block-buttons svg {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.wp-block-buttons a,
.wp-block-buttons svg,
.wp-block-buttons path {
  transition: all 0.5s;
}

.has-text-align-center .wp-block-buttons {
  justify-content: center;
}

.subtitle-group {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.subtitle-group .is-style-subtitles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--wp--preset--font-size--subtitle);
  color: var(--wp--preset--color--subtitle-color);
  border: 1px solid var(--wp--preset--color--border-color-primary);
  border-radius: 500px;
  margin: 0;
  min-height: clamp(30px, 5vw, 36px);
  padding: 0 clamp(15px, 3vw, 15px);
  box-sizing: border-box;
}
.subtitle-group p.subtitle-icon {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 0;
  line-height: 0;
}
.subtitle-group p.subtitle-icon svg {
  width: clamp(30px, 5vw, 36px);
  height: clamp(30px, 5vw, 36px);
  fill: var(--wp--preset--color--primary-background);
  border: 1px solid var(--wp--preset--color--border-color-primary);
  border-radius: 100%;
  padding: clamp(6px, 1vw, 8px);
  display: block;
  box-sizing: border-box;
}
.subtitle-group p.subtitle-icon svg path {
  fill: var(--wp--preset--color--primary-background);
}

.testimonials-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 24px;
}

p.is-style-subtitles {
  font-size: var(--wp--preset--font-size--subtitle);
  color: var(--wp--preset--color--subtitle-color);
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  line-height: 1;
}
p.is-style-subtitles.has-text-align-center {
  justify-content: center;
}
p.is-style-subtitles::before {
  content: "";
  display: flex;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  background-image: url("./../image/SVG.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: -3px;
  /* Nudges the icon down to visually center with text */
}

.global-button-secondary .wp-block-button__link {
  color: var(--wp--preset--color--button-text-primary);
  background-color: var(--wp--preset--color--primary-background);
  border: 1px solid var(--wp--preset--color--primary-background);
}
.global-button-secondary .wp-block-button__link:hover {
  background-color: transparent;
  color: var(--wp--preset--color--primary-background);
  border-color: var(--wp--preset--color--primary-background);
}
.global-button-secondary .wp-block-button__link:hover svg path {
  stroke: var(--wp--preset--color--primary-background);
}

p.is-style-subtitles::before {
  animation: rotateImage 6s linear infinite;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Rank Math Breadcrumbs styling */
.rank-math-breadcrumb {
  margin-top: 10px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.rank-math-breadcrumb p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--wp--preset--font-size--description-xs);
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 500;
}
.rank-math-breadcrumb a {
  color: #777777;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.rank-math-breadcrumb a:hover {
  color: var(--wp--preset--color--primary-color);
}
.rank-math-breadcrumb .separator {
  position: relative;
  font-size: 0 !important;
}
.rank-math-breadcrumb .separator::after {
  content: "\f006";
  font-size: var(--wp--preset--font-size--description-xs) !important;
  font-family: "fontello";
  font-weight: 500;
  display: block;
  color: #777777;
}
.rank-math-breadcrumb .last {
  color: #C95F50;
  font-weight: 500;
}

.editor-styles-wrapper .c-header,
.editor-styles-wrapper header.c-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: 30px;
  padding: 0;
}
.editor-styles-wrapper body,
.editor-styles-wrapper .wp-site-blocks {
  padding-top: 0;
}

.c-header,
header.c-header {
  background-color: transparent;
  position: relative;
  top: 7px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
  will-change: transform;
}
.c-header__container,
.c-header .c-header__container,
header.c-header__container,
header.c-header .c-header__container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0px 17px 0px 35px;
  background-color: var(--wp--preset--color--white-color, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(60.1px);
  -webkit-backdrop-filter: blur(60.1px);
  box-sizing: border-box;
  transition: padding 0.3s ease, min-height 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .c-header__container,
  .c-header .c-header__container,
  header.c-header__container,
  header.c-header .c-header__container {
    padding: 12px 24px;
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__container,
  .c-header .c-header__container,
  header.c-header__container,
  header.c-header .c-header__container {
    padding: 10px 20px;
    min-height: 56px;
  }
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle {
  cursor: pointer;
  width: unset;
  height: unset;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle svg,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle svg,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle svg,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation-submenu__toggle svg {
  height: 12px;
  width: 12px;
  margin: 0;
  transition: all 0.5s;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container {
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 250px !important;
  overflow: hidden !important;
  transform: translateY(0px);
  transition: all 0.4s ease;
  top: 68px;
}
@media screen and (max-width: 1199px) {
  .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
  .c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
  header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container,
  header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container {
    min-width: 220px !important;
  }
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li {
  position: relative;
  transition: all 0.4s ease;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li .wp-block-navigation-item__content,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li .wp-block-navigation-item__content,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li .wp-block-navigation-item__content,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li .wp-block-navigation-item__content {
  padding: 0;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content::after,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content::after,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content::after,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content::after {
  display: none;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container span,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container span,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container span,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container span {
  padding: 8px 24px;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:first-of-type > a .wp-block-navigation-item__label,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:first-of-type > a .wp-block-navigation-item__label,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:first-of-type > a .wp-block-navigation-item__label,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:first-of-type > a .wp-block-navigation-item__label {
  padding-top: 20px;
}
.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:last-of-type > a .wp-block-navigation-item__label,
.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:last-of-type > a .wp-block-navigation-item__label,
header.c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:last-of-type > a .wp-block-navigation-item__label,
header.c-header .c-header__container .c-header__nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container li:last-of-type > a .wp-block-navigation-item__label {
  padding-bottom: 20px;
}
.c-header__logo,
.c-header .c-header__logo,
header.c-header__logo,
header.c-header .c-header__logo {
  margin: 0;
  display: inline-flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .c-header__logo,
  .c-header .c-header__logo,
  header.c-header__logo,
  header.c-header .c-header__logo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 0;
  }
}
.c-header__logo a,
.c-header .c-header__logo a,
header.c-header__logo a,
header.c-header .c-header__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.c-header__logo img,
.c-header .c-header__logo img,
header.c-header__logo img,
header.c-header .c-header__logo img {
  width: 141.96px;
  height: auto;
  max-height: 48px;
  vertical-align: middle;
}
@media screen and (max-width: 1199px) {
  .c-header__logo img,
  .c-header .c-header__logo img,
  header.c-header__logo img,
  header.c-header .c-header__logo img {
    width: 120px;
    max-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__logo img,
  .c-header .c-header__logo img,
  header.c-header__logo img,
  header.c-header .c-header__logo img {
    width: 110px;
    max-height: 34px;
  }
}
.c-header__logo .site-title,
.c-header__logo a.site-title,
.c-header .c-header__logo .site-title,
.c-header .c-header__logo a.site-title,
header.c-header__logo .site-title,
header.c-header__logo a.site-title,
header.c-header .c-header__logo .site-title,
header.c-header .c-header__logo a.site-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--wp--preset--color--accent, #000000);
  letter-spacing: -0.5px;
  text-transform: lowercase;
  position: relative;
}
.c-header__logo .site-title::after,
.c-header__logo a.site-title::after,
.c-header .c-header__logo .site-title::after,
.c-header .c-header__logo a.site-title::after,
header.c-header__logo .site-title::after,
header.c-header__logo a.site-title::after,
header.c-header .c-header__logo .site-title::after,
header.c-header .c-header__logo a.site-title::after {
  content: ".";
  color: var(--wp--preset--color--primary, #C95F50);
  font-size: 24px;
  line-height: 0;
}
.c-header__nav,
.c-header .c-header__nav,
header.c-header__nav,
header.c-header .c-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .c-header__nav,
  .c-header .c-header__nav,
  header.c-header__nav,
  header.c-header .c-header__nav {
    display: none;
  }
}
.c-header__nav .wp-block-navigation__container,
.c-header__nav ul.wp-block-navigation__container,
.c-header .c-header__nav .wp-block-navigation__container,
.c-header .c-header__nav ul.wp-block-navigation__container,
header.c-header__nav .wp-block-navigation__container,
header.c-header__nav ul.wp-block-navigation__container,
header.c-header .c-header__nav .wp-block-navigation__container,
header.c-header .c-header__nav ul.wp-block-navigation__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 33px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1400px) {
  .c-header__nav .wp-block-navigation__container,
  .c-header__nav ul.wp-block-navigation__container,
  .c-header .c-header__nav .wp-block-navigation__container,
  .c-header .c-header__nav ul.wp-block-navigation__container,
  header.c-header__nav .wp-block-navigation__container,
  header.c-header__nav ul.wp-block-navigation__container,
  header.c-header .c-header__nav .wp-block-navigation__container,
  header.c-header .c-header__nav ul.wp-block-navigation__container {
    gap: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .c-header__nav .wp-block-navigation__container,
  .c-header__nav ul.wp-block-navigation__container,
  .c-header .c-header__nav .wp-block-navigation__container,
  .c-header .c-header__nav ul.wp-block-navigation__container,
  header.c-header__nav .wp-block-navigation__container,
  header.c-header__nav ul.wp-block-navigation__container,
  header.c-header .c-header__nav .wp-block-navigation__container,
  header.c-header .c-header__nav ul.wp-block-navigation__container {
    gap: 12px;
  }
}
.c-header__nav .wp-block-navigation-item,
.c-header__nav li.wp-block-navigation-item,
.c-header .c-header__nav .wp-block-navigation-item,
.c-header .c-header__nav li.wp-block-navigation-item,
header.c-header__nav .wp-block-navigation-item,
header.c-header__nav li.wp-block-navigation-item,
header.c-header .c-header__nav .wp-block-navigation-item,
header.c-header .c-header__nav li.wp-block-navigation-item {
  margin: 0;
  padding: 0;
}
.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content,
.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--wp--preset--color--foreground, #000000);
  text-decoration: none;
  position: relative;
  padding: 29px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content::after,
.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--wp--preset--color--primary, #C95F50);
  transform: scaleX(0) translateZ(0);
  transform-origin: bottom left;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover,
.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover,
.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover,
.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover,
header.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
header.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
header.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover,
header.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover,
header.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
header.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
header.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover,
header.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--primary, #C95F50);
}
.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
header.c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
header.c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
header.c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
header.c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
header.c-header .c-header__nav .wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
header.c-header .c-header__nav .wp-block-navigation-item a.wp-block-navigation-item__content:hover::after,
header.c-header .c-header__nav li.wp-block-navigation-item .wp-block-navigation-item__content:hover::after,
header.c-header .c-header__nav li.wp-block-navigation-item a.wp-block-navigation-item__content:hover::after {
  transform: scaleX(1) translateZ(0);
}
.c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content, .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
.c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content, .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
.c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content, .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
.c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
.c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
header.c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
header.c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content {
  color: var(--wp--preset--color--primary, #C95F50);
  font-weight: 600;
}
.c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after, .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
.c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after, .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
.c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after, .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
.c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
.c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
header.c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
header.c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
header.c-header .c-header__nav .wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current_page_item a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor .wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-ancestor a.wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent .wp-block-navigation-item__content::after,
header.c-header .c-header__nav li.wp-block-navigation-item.current-menu-parent a.wp-block-navigation-item__content::after {
  transform: scaleX(1) translateZ(0);
}
.c-header .custom-menu-toggle,
header.c-header .custom-menu-toggle {
  display: none;
  font-size: 0;
}
@media screen and (max-width: 1199px) {
  .c-header .custom-menu-toggle,
  header.c-header .custom-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--wp--preset--color--black-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin: 0;
  }
  .c-header .custom-menu-toggle svg,
  header.c-header .custom-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
  }
  .c-header .custom-menu-toggle:hover,
  header.c-header .custom-menu-toggle:hover {
    color: var(--wp--preset--color--primary, #C95F50);
    background-color: rgba(0, 0, 0, 0.03);
  }
}
.c-header__actions,
.c-header .c-header__actions,
header.c-header__actions,
header.c-header .c-header__actions {
  display: flex;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .c-header__actions,
  .c-header .c-header__actions,
  header.c-header__actions,
  header.c-header .c-header__actions {
    position: absolute;
    right: 74px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .c-header__actions,
  .c-header .c-header__actions,
  header.c-header__actions,
  header.c-header .c-header__actions {
    display: none;
  }
}

.c-header__btn {
  margin: 0;
}
.c-header__btn .wp-block-button__link,
.c-header__btn a.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px 12px 24px;
  height: 48px;
  background-color: var(--wp--preset--color--primary, #C95F50);
  color: var(--wp--preset--color--white-color);
  border-radius: 55px;
  border: none;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (max-width: 1199px) {
  .c-header__btn .wp-block-button__link,
  .c-header__btn a.wp-block-button__link {
    padding: 10px 16px 10px 20px;
    height: 42px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__btn .wp-block-button__link,
  .c-header__btn a.wp-block-button__link {
    padding: 8px 14px 8px 18px;
    height: 38px;
    font-size: 13px;
  }
}
.c-header__btn .wp-block-button__link:active,
.c-header__btn a.wp-block-button__link:active {
  transform: translateY(0);
}

.custom-menu-overlay {
  display: none;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .custom-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .custom-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

.custom-menu-sidebar {
  display: none;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .custom-menu-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    z-index: 100005;
    background-color: var(--wp--preset--color--white-color);
    box-shadow: -10px 0px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 24px 30px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .custom-menu-sidebar.is-open {
    transform: translateX(0);
  }
  .custom-menu-sidebar .custom-menu-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .custom-menu-sidebar .custom-menu-sidebar-header .c-header__logo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 0;
    display: inline-flex;
  }
  .custom-menu-sidebar .custom-menu-sidebar-header .c-header__logo img {
    width: 120px;
    max-height: 40px;
  }
  .custom-menu-sidebar .custom-menu-sidebar-header .custom-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--blush-cream);
    color: var(--wp--preset--color--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-size: 0;
  }
  .custom-menu-sidebar .custom-menu-sidebar-header .custom-menu-close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
  }
  .custom-menu-sidebar .custom-menu-sidebar-header .custom-menu-close:hover {
    background-color: var(--wp--preset--color--primary);
    transform: scale(1.05);
  }
  .custom-menu-sidebar .custom-menu-sidebar-body {
    flex-grow: 1;
    margin: 24px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body::-webkit-scrollbar {
    display: none;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item:last-child {
    border-bottom: none;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content,
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item a.wp-block-navigation-item__content,
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item button.wp-block-navigation-item__content {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--wp--preset--color--black-color);
    text-decoration: none;
    text-transform: none;
    transition: all 0.2s ease;
    display: block;
    flex: 1;
    text-align: left;
    padding-left: 8px;
    background: transparent;
    border: none;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:hover,
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
  .custom-menu-sidebar .custom-menu-sidebar-body ul.wp-block-navigation__container .wp-block-navigation-item button.wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--primary, #C95F50);
    transform: translateX(0px);
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu button.wp-block-navigation-submenu__toggle {
    padding: 0 10px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
    transition: all 0.5s;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu button.wp-block-navigation-submenu__toggle {
    padding: 0 10px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu button.wp-block-navigation-submenu__toggle.wp-block-navigation-item__content {
    padding-left: 8px;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container {
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
    width: 100% !important;
    min-width: 100% !important;
    height: 0;
    overflow: hidden !important;
    border-left: 2px solid color-mix(in srgb, var(--wp--preset--color--primary-color) 10%, transparent);
    position: unset !important;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 7px;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container li .wp-block-navigation-item__content .wp-block-navigation-item__label {
    padding: 0px 10px;
    font-weight: 500;
    display: block;
    width: 100%;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu {
    /* Open State for Submenu */
  }
}
@media screen and (max-width: 1199px) and (min-width: 1400px) {
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container li .wp-block-navigation-item__content .wp-block-navigation-item__label {
    padding: 0px 12px;
  }
}
@media screen and (max-width: 1199px) {
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container li.wp-block-navigation-item {
    padding: 7px 0px;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container li.wp-block-navigation-item .wp-block-navigation-item__content {
    padding: 0;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container li.wp-block-navigation-item .wp-block-navigation-item__content:hover {
    transform: unset;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu ul.wp-block-navigation__submenu-container:first-of-type > a .wp-block-navigation-item__label {
    padding-top: 9px;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .header-mobile-menu ul .wp-block-navigation-submenu.is-open ul.wp-block-navigation__submenu-container {
    visibility: visible;
    opacity: 1;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle + .wp-block-navigation__submenu-icon {
    position: absolute;
    right: 0;
    margin: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    top: 20px;
    transform: rotate(-90deg);
    transition: transform 0.4s ease;
  }
  .custom-menu-sidebar .custom-menu-sidebar-body .wp-block-navigation-item.open-on-click.is-open .wp-block-navigation-submenu__toggle + .wp-block-navigation__submenu-icon {
    transform: rotate(0deg);
  }
  .custom-menu-sidebar .mobile-header__bottom {
    display: none;
  }
}
@media screen and (max-width: 1199px) and (max-width: 767px) {
  .custom-menu-sidebar .mobile-header__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1199px) {
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons .wp-block-button,
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons .wp-block-button__link,
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons a.wp-block-button__link {
    width: auto;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    box-sizing: border-box;
  }
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons .wp-block-button__link,
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons a.wp-block-button__link {
    height: 46px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 99px;
    box-shadow: 0px 8px 24px rgba(201, 95, 80, 0.2);
    align-items: center;
  }
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons .wp-block-button__link::after,
  .custom-menu-sidebar .mobile-header__bottom .wp-block-buttons a.wp-block-button__link::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-header__container > .c-header__actions.rsh-profile-actions {
    display: none !important;
  }
}

.c-header__actions.rsh-profile-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions {
  position: static !important;
  transform: none !important;
  right: auto !important;
  top: auto !important;
  margin-left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex !important;
  flex-direction: row;
  align-items: center !important;
  padding: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile {
  display: flex;
  align-items: center;
  padding: 14px 0 14px 8px;
  border-radius: 0;
  width: 100%;
  gap: 12px;
  text-decoration: none;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile:hover {
  background-color: transparent;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile:hover .rsh-header-user-info {
  color: var(--wp--preset--color--primary, #C95F50);
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-avatar {
  width: 36px;
  height: 36px;
  font-size: 16px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary, #ea583c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif, system-ui;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-user-info {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--wp--preset--color--black-color);
  transition: color 0.2s ease;
}
.custom-menu-sidebar .c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-user-info span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  display: inline-block;
}
.c-header__actions.rsh-profile-actions .rsh-header-profile {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50px;
  transition: background-color 0.2s;
}
.c-header__actions.rsh-profile-actions .rsh-header-profile:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary, #ea583c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif, system-ui;
}
.c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-user-info {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--wp--preset--color--primary-heading, #1E1E1E);
  font-family: "Inter", sans-serif, system-ui;
}
.c-header__actions.rsh-profile-actions .rsh-header-profile .rsh-header-user-info span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  display: inline-block;
}

.header-mobile-menu li:has(.rsh-profile-actions) {
  order: 99;
}

.rsh-auth-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.rsh-auth-buttons .c-header__btn a,
.rsh-auth-buttons .rsh-custom-auth-btn {
  white-space: nowrap !important;
}

.rsh-custom-auth-btn {
  display: inline-flex;
  align-items: center;
  align-self: center !important;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 16px 4px 4px;
  margin: 0 !important;
  gap: 12px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1;
}
.rsh-custom-auth-btn .rsh-auth-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.rsh-custom-auth-btn .rsh-auth-separator {
  width: 1px;
  height: 20px;
  background-color: currentColor;
  opacity: 0.15;
}
.rsh-custom-auth-btn .rsh-auth-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.rsh-custom-auth-btn:hover {
  color: inherit;
}
.rsh-custom-auth-btn:hover .rsh-auth-arrow {
  transform: translateX(4px);
}
.rsh-custom-auth-btn .rsh-auth-text {
  display: none;
}
.rsh-custom-auth-btn.icon-only {
  padding: 4px !important;
  width: 44px;
  height: 44px;
  justify-content: center;
  gap: 0;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .rsh-custom-auth-btn.icon-only {
    padding: 4px 16px 4px 4px !important;
    width: auto;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 999px;
  }
  .rsh-custom-auth-btn.icon-only .rsh-auth-text {
    display: block;
    font-size: 15px;
    font-weight: 500;
  }
}
.rsh-custom-auth-btn {
  /* Login Variant */
  /* Login Variant */
}
.rsh-custom-auth-btn.rsh-login-btn, .rsh-custom-auth-btn.rsh-logout-btn {
  background-color: var(--wp--preset--color--white-color, #ffffff);
  color: var(--wp--preset--color--primary, #C95F50);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.02);
}
.rsh-custom-auth-btn.rsh-login-btn .rsh-auth-icon-wrap, .rsh-custom-auth-btn.rsh-logout-btn .rsh-auth-icon-wrap {
  background-color: rgba(201, 95, 80, 0.08);
  color: var(--wp--preset--color--primary, #C95F50);
}
.rsh-custom-auth-btn.rsh-login-btn:hover, .rsh-custom-auth-btn.rsh-logout-btn:hover {
  color: var(--wp--preset--color--primary, #C95F50);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--wp--preset--color-primary-background);
}
.home-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  gap: 20px;
}
@media screen and (max-width: 425px) {
  .home-hero__inner {
    gap: 17px;
  }
}
.home-hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 425px) {
  .home-hero__header {
    gap: 22px;
  }
}
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 40px;
  backdrop-filter: blur(56.7px);
  background: rgba(201, 95, 80, 0.06);
  border: 1.5px solid rgba(201, 95, 80, 0.32);
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 425px) {
  .home-hero__badge {
    padding: 8px 22px;
  }
}
.home-hero__badge mark,
.home-hero__badge span {
  margin-right: 8px;
  background-color: transparent;
}
.home-hero__title {
  line-height: 1.17;
  margin: 0;
}
@media screen and (max-width: 425px) {
  .home-hero__title {
    font-size: 30px !important;
  }
}
.home-hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .home-hero__body {
    gap: 30px;
  }
}
@media screen and (max-width: 425px) {
  .home-hero__body {
    gap: 27px;
  }
}
.home-hero__desc {
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .home-hero__desc br {
    display: none;
  }
}
.home-hero__buttons {
  display: flex;
  justify-content: center;
  gap: var(--wp--preset--spacing--xs);
}
@media screen and (max-width: 575px) {
  .home-hero__buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}

.founder-note {
  background-color: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color-secondary-description);
}
.founder-note__inner {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .founder-note__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .founder-note__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.founder-note .row {
  --bs-gutter-x: 0;
}
.founder-note h2 {
  margin-bottom: 6px;
}
.founder-note__image-col {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  background-image: url("../image/note-from-founder.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 991px) {
  .founder-note__image-col {
    width: 100%;
    margin: 0 auto;
  }
}
.founder-note__image-col figure {
  width: 100%;
  margin: 0;
  display: block;
  margin: 0 auto;
}
.founder-note__image-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.founder-note__content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .founder-note__content-col {
    width: 100%;
    margin-top: 0;
  }
}
.founder-note p.is-style-subtitles {
  gap: 6px;
}
.founder-note__badge {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .founder-note__badge {
    justify-content: center;
  }
}
.founder-note__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-note__text {
  color: var(--wp--preset--color-secondary-description);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 575px) {
  .founder-note__text {
    font-size: 15px;
  }
}
.founder-note__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 14px;
}
@media screen and (max-width: 991px) {
  .founder-note__buttons {
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .founder-note__buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }
  .founder-note__buttons .wp-block-button {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
  }
  .founder-note__buttons .wp-block-button .wp-block-button__link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.founder-note__buttons .wp-block-button {
  display: inline-block;
  width: auto;
  margin: 0;
}
.founder-note__buttons .wp-block-button .wp-block-button__link {
  white-space: nowrap;
}

.vision-section {
  position: relative;
  overflow: hidden;
}
.vision-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .vision-section__inner {
    gap: 24px;
  }
}
.vision-section__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 82px;
}
@media screen and (max-width: 991px) {
  .vision-section__row {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.vision-section__map-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
}
.vision-section__map-img {
  width: 100%;
  height: auto;
  display: block;
}
.vision-section__content-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .vision-section__content-col {
    max-width: 100%;
  }
}
.vision-section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--wp--preset--color--primary-heading);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.vision-section__title {
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .vision-section__title br {
    display: none;
  }
}
.vision-section__title-highlight {
  color: var(--wp--preset--color--primary-color);
}
.vision-section .vision-goals-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .vision-section .vision-goals-list {
    margin: 4px 0;
  }
}
.vision-section .vision-goals-list__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  text-align: left;
  position: relative;
  padding-left: 36px;
  line-height: 1.4;
  color: var(--wp--preset--color-black-color);
}
.vision-section .vision-goals-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  background-color: var(--wp--preset--color--primary-color);
  mask: url("data:image/svg+xml;utf8,<svg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.125 10.7423L9.535 13.1623L14.365 8.32227' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M9.495 1.1925C10.185 0.6025 11.315 0.6025 12.015 1.1925L13.595 2.5525C13.895 2.8125 14.455 3.0225 14.855 3.0225H16.555C17.615 3.0225 18.485 3.8925 18.485 4.9525V6.6525C18.485 7.0425 18.695 7.6125 18.955 7.9125L20.315 9.49249C20.905 10.1825 20.905 11.3125 20.315 12.0125L18.955 13.5925C18.695 13.8925 18.485 14.4525 18.485 14.8525V16.5525C18.485 17.6125 17.615 18.4825 16.555 18.4825H14.855C14.465 18.4825 13.895 18.6925 13.595 18.9525L12.015 20.3125C11.325 20.9025 10.195 20.9025 9.495 20.3125L7.915 18.9525C7.615 18.6925 7.055 18.4825 6.655 18.4825H4.925C3.865 18.4825 2.995 17.6125 2.995 16.5525V14.8425C2.995 14.4525 2.785 13.8925 2.535 13.5925L1.185 12.0025C0.605 11.3125 0.605 10.1925 1.185 9.50249L2.535 7.9125C2.785 7.6125 2.995 7.0525 2.995 6.6625V4.9425C2.995 3.8825 3.865 3.0125 4.925 3.0125H6.655C7.045 3.0125 7.615 2.8025 7.915 2.5425L9.495 1.1925Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.125 10.7423L9.535 13.1623L14.365 8.32227' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M9.495 1.1925C10.185 0.6025 11.315 0.6025 12.015 1.1925L13.595 2.5525C13.895 2.8125 14.455 3.0225 14.855 3.0225H16.555C17.615 3.0225 18.485 3.8925 18.485 4.9525V6.6525C18.485 7.0425 18.695 7.6125 18.955 7.9125L20.315 9.49249C20.905 10.1825 20.905 11.3125 20.315 12.0125L18.955 13.5925C18.695 13.8925 18.485 14.4525 18.485 14.8525V16.5525C18.485 17.6125 17.615 18.4825 16.555 18.4825H14.855C14.465 18.4825 13.895 18.6925 13.595 18.9525L12.015 20.3125C11.325 20.9025 10.195 20.9025 9.495 20.3125L7.915 18.9525C7.615 18.6925 7.055 18.4825 6.655 18.4825H4.925C3.865 18.4825 2.995 17.6125 2.995 16.5525V14.8425C2.995 14.4525 2.785 13.8925 2.535 13.5925L1.185 12.0025C0.605 11.3125 0.605 10.1925 1.185 9.50249L2.535 7.9125C2.785 7.6125 2.995 7.0525 2.995 6.6625V4.9425C2.995 3.8825 3.865 3.0125 4.925 3.0125H6.655C7.045 3.0125 7.615 2.8025 7.915 2.5425L9.495 1.1925Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}
.vision-section__btn {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
}
@media screen and (max-width: 991px) {
  .vision-section__btn {
    justify-content: center;
    margin-top: 7px;
  }
}
.vision-section__btn .wp-block-buttons {
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  .vision-section__btn .wp-block-buttons {
    justify-content: center;
  }
}
.vision-section .key-results-count-row {
  margin: 0;
  width: 100%;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .vision-section .key-results-count-row {
    row-gap: 14px;
  }
}
.vision-section .key-results-count-row > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 16px;
}
.vision-section .key-results-count-row > div:not(:last-child) {
  border-right: 3px solid rgba(201, 95, 80, 0.15);
}
@media screen and (max-width: 991px) {
  .vision-section .key-results-count-row > div {
    padding: 20px 12px;
  }
}
@media screen and (max-width: 767px) {
  .vision-section .key-results-count-row > div:nth-child(2) {
    border-right: 0;
  }
}
.vision-section .key-results-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.vision-section .key-results-count .qrolic-counter {
  font-weight: 700;
  line-height: 1.2;
  color: var(--wp--preset--color--primary);
  margin: 0 0 6px 0 !important;
  letter-spacing: 0.02em;
}
.vision-section .key-results-count p {
  font-weight: 500;
  line-height: 1.3;
  color: var(--wp--preset--color-primary-description);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.why-join-section {
  background-color: var(--wp--preset--color--primary-background);
}
.why-join-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
@media screen and (max-width: 991px) {
  .why-join-section__inner {
    gap: 38px;
  }
}
.why-join-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.why-join-section__title {
  font-weight: 700;
  color: var(--wp-preset--color--heading-color);
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .why-join-section__title br {
    display: none;
  }
}
.why-join-section__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .why-join-section__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding-bottom: 10px;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .why-join-section__grid::-webkit-scrollbar {
    display: none;
  }
}
.why-join-section .why-join-card {
  background-color: var(--wp--preset--color--white-color);
  border-radius: 16px;
  padding: 30px 30px;
  flex: 1;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(201, 95, 80, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 991px) {
  .why-join-section .why-join-card {
    max-width: 480px;
    width: 90%;
    flex: 0 0 85%;
    width: 85%;
    max-width: none;
  }
}
.why-join-section .why-join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 95, 80, 0.08), 0 8px 20px rgba(0, 0, 0, 0.03);
}
.why-join-section .why-join-card__img {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 28px 0;
}
.why-join-section .why-join-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.why-join-section .why-join-card__title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 12px 0;
  white-space: nowrap;
}
.why-join-section .why-join-card__description {
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

.job-board-section__header {
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .job-board-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
@media screen and (max-width: 767px) {
  .job-board-section__header {
    margin-bottom: 25px;
    padding-bottom: 0;
  }
}
.job-board-section__header .job-board-section__header-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-board-section__header .job-board-section__header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .job-board-section__header .job-board-section__header-right {
    width: 100%;
  }
  .job-board-section__header .job-board-section__header-right .job-board-sort {
    width: 100%;
  }
}

.job-board-section__title {
  font-weight: 600;
  color: var(--wp--preset--color--primary-heading);
  margin: 0;
}
.job-board-section__title-highlight {
  color: var(--wp--preset--color--primary-color);
}

.job-board-section__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-board-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .job-board-filter {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
  }
}
.job-board-filter__dropdowns {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .job-board-filter__dropdowns {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .job-board-filter__dropdowns {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .job-board-filter__select-wrapper {
    width: 100%;
  }
}
.job-board-filter__select-custom {
  position: relative;
  min-width: 180px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .job-board-filter__select-custom {
    min-width: unset;
    width: 100%;
  }
}
.job-board-filter__select-custom.is-open .job-board-filter__select-selected {
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 95, 80, 0.12);
}
.job-board-filter__select-custom.is-open .job-board-filter__select-selected svg {
  transform: rotate(180deg);
}
.job-board-filter__select-custom.is-open .job-board-filter__select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.job-board-filter__select-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  font-size: var(--wp--preset--font-size--description-sm);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .job-board-filter__select-selected {
    padding: 0 16px;
    height: 44px;
    font-size: 13px;
  }
}
.job-board-filter__select-selected svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
  transition: transform 0.3s;
}
.job-board-filter__select-selected:hover {
  border-color: rgba(0, 0, 0, 0.24);
}
.job-board-filter__select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--wp--preset--color--white-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.job-board-filter__select-options::-webkit-scrollbar {
  width: 6px;
}
.job-board-filter__select-options::-webkit-scrollbar-track {
  background: transparent;
}
.job-board-filter__select-options::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.job-board-filter__select-option {
  padding: 10px 16px;
  font-size: var(--wp--preset--font-size--description-xs);
  font-weight: 500;
  color: #4A4A4A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.job-board-filter__select-option:hover {
  background-color: rgba(201, 95, 80, 0.05);
  color: var(--wp--preset--color--primary-color);
}
.job-board-filter__select-option.selected {
  background-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}
.job-board-filter__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.job-board-filter__submit-btn {
  background-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: none;
  border-radius: 100px;
  padding: 12px 32px;
  font-size: var(--wp--preset--font-size--description-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.job-board-filter__submit-btn:hover {
  background-color: #B24F42;
  transform: translateY(-2px);
}
.job-board-filter__clear-btn {
  font-size: var(--wp--preset--font-size--description-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  color: var(--wp--preset--color--primary-heading);
}
.job-board-filter__clear-btn:hover {
  color: var(--wp--preset--color--primary-color);
}

.job-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .job-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .job-board-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.job-board-grid__no-results {
  grid-column: 1/-1;
  text-align: center;
  font-size: var(--wp--preset--font-size--description-sm);
  color: rgba(0, 0, 0, 0.5);
  padding: 40px 0;
}

.job-board-section--full .job-card {
  background: var(--wp--preset--color--white-color);
  border: 1px solid rgb(236, 236, 236);
  border-radius: 16px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.job-board-section--full .job-card:hover {
  border-color: rgba(201, 95, 80, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.explore-jobs-slider .splide__track {
  padding-top: 10px !important;
  padding-bottom: 30px !important;
  margin-top: -10px;
  margin-bottom: -30px;
}

.job-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.job-card__logo-container {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--wp--preset--color--white-color);
  flex-shrink: 0;
}

.job-card__logo {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.job-card__title-area {
  flex: 1;
}

.job-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.job-card__company {
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  margin: 0;
  font-weight: 500;
}

.job-card__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.job-card__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.job-card__badge--type {
  background-color: rgb(254, 244, 199);
  color: var(--wp--preset--color--primary-heading);
}

.job-card__badge--site {
  background-color: rgb(254, 244, 199);
  color: var(--wp--preset--color--primary-heading);
}

.job-card__date {
  font-size: 12px;
  color: var(--wp--preset--color--secondary-description);
  margin-left: auto;
}

.job-card__details {
  background-color: rgba(245, 245, 245, 0.79);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .job-card__details {
    padding: 16px;
    gap: 12px;
  }
}

.job-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .job-card__meta {
    gap: 12px;
    padding-bottom: 12px;
  }
}

.job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--wp--preset--color--primary-description);
}

.job-card__meta-icon {
  display: flex;
  align-items: center;
  color: var(--wp--preset--color--secondary-description);
}
.job-card__meta-icon svg {
  stroke-width: 2px;
}

.job-card__meta-text {
  font-size: 13px;
  font-weight: 500;
}

.job-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.job-card__skill {
  background: var(--wp--preset--color--white-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 11px;
  font-weight: 500;
  color: var(--wp--preset--color--primary-description);
  padding: 4px 10px;
  border-radius: 60px;
}

.job-card__skill--more {
  background: var(--wp--preset--color--white-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--wp--preset--color--primary-color);
  font-weight: 600;
}

.job-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .job-card__footer {
    gap: 8px;
    padding-top: 0;
  }
}

.job-card__apply-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-align: center;
}
.job-card__apply-btn:hover {
  background-color: #ba4f40;
}
.job-card__apply-btn:active {
  transform: scale(0.98);
}

.job-card__share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--wp--preset--color--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--wp--preset--color--primary-heading);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.job-card__share-btn:hover {
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
  background-color: rgba(201, 95, 80, 0.02);
}
.job-card__share-btn svg {
  stroke-width: 2px;
}
.job-card__share-btn .icon-copy-desktop {
  display: none;
}
.job-card__share-btn .icon-share-mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .job-card__share-btn .icon-copy-desktop {
    display: block;
  }
  .job-card__share-btn .icon-share-mobile {
    display: none;
  }
}

/* Pagination */
.job-board-pagination-wrapper {
  width: 100%;
}

.job-board-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.job-board-pagination__numbers {
  display: flex;
  gap: 8px;
}

.job-board-pagination__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary-description);
  text-decoration: none;
  transition: all 0.2s ease;
}
.job-board-pagination__number:hover {
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
}
.job-board-pagination__number.is-active {
  background-color: var(--wp--preset--color--primary-color);
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}
.job-board-pagination__number.dots {
  border: none;
  background: transparent;
  color: var(--wp--preset--color--primary-heading);
  pointer-events: none;
}

.job-board-pagination__next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--wp--preset--color--white-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary-description);
  text-decoration: none;
  transition: all 0.2s ease;
}
.job-board-pagination__next:hover:not(.is-disabled) {
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
}
.job-board-pagination__next.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.job-board-pagination__next svg {
  stroke-width: 2px;
}

.explore-jobs-slider {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .explore-jobs-slider {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .explore-jobs-slider {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .explore-jobs-slider {
    padding: 0;
    padding-bottom: 60px;
  }
}
.explore-jobs-slider .splide__arrows {
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .explore-jobs-slider .splide__arrows {
    top: auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 16px;
  }
}
.explore-jobs-slider .splide__arrow {
  pointer-events: auto;
  position: static;
  transform: none;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0;
}
.explore-jobs-slider .splide__arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
}
.explore-jobs-slider .splide__arrow.job-board-pagination__next {
  padding: 0;
  background-color: var(--wp--preset--color--white-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1e1e1e;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.explore-jobs-slider .splide__arrow.job-board-pagination__next:hover:not([disabled]) {
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
}
.explore-jobs-slider .splide__arrow.job-board-pagination__next[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.our-board {
  background-color: var(--wp--preset--color--primary-background);
}
.our-board__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
@media screen and (max-width: 991px) {
  .our-board__inner {
    gap: 38px;
  }
}
.our-board__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.our-board__title {
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  margin: 0;
}
.our-board__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .our-board__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .our-board__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
.our-board .our-board-card {
  background-color: var(--wp--preset--color--white-color);
  border-radius: 16px;
  padding: 16px;
  flex: 1;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(201, 95, 80, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@media screen and (max-width: 991px) {
  .our-board .our-board-card {
    max-width: 480px;
    width: 100%;
  }
}
.our-board .our-board-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 271/184;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #e5ccca;
  background-image: repeating-conic-gradient(from 0deg, transparent 0deg 15deg, rgba(255, 255, 255, 0.15) 15deg 30deg);
  border-radius: 12px;
  overflow: hidden;
}
.our-board .our-board-card__img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.our-board .our-board-card__title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--wp--preset--color--black-color);
  margin: 24px 0 5px 0;
  white-space: nowrap;
}
.our-board .our-board-card__title a {
  color: inherit;
  text-decoration: none;
}
.our-board .our-board-card__title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.our-board .our-board-card__description {
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

.engagement-model {
  background-color: var(--wp--preset--color--primary-background);
}
.engagement-model__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wp--preset--spacing--common-padding);
}
.engagement-model__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--wp--preset--spacing--xs);
  max-width: 800px;
}
.engagement-model__title {
  font-weight: 700;
  line-height: 1.25;
  color: var(--wp--preset--color--primary-heading);
  margin: 0;
}
.engagement-model__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 65px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .engagement-model__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 24px;
  }
  .engagement-model__grid > :nth-child(3) {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 767px) {
  .engagement-model__grid {
    grid-template-columns: 1fr;
  }
}
.engagement-model .engagement-model-card {
  position: relative;
  background-color: var(--wp--preset--color--white-color);
  border-radius: 16px;
  padding: 16px;
  flex: 1;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(201, 95, 80, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.engagement-model .engagement-model-card:nth-child(1)::after, .engagement-model .engagement-model-card:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -66px;
  width: 66px;
  height: 71px;
  transform: translateY(-50%);
  background-image: url("../image/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .engagement-model .engagement-model-card:nth-child(1)::after, .engagement-model .engagement-model-card:nth-child(2)::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .engagement-model .engagement-model-card {
    max-width: 480px;
    width: 100%;
  }
}
.engagement-model .engagement-model-card__img {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 28px 0;
}
.engagement-model .engagement-model-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.engagement-model .engagement-model-card__title {
  font-weight: 700;
  line-height: 1.3;
  color: var(--wp--preset--color--black-color);
  margin: 13px 0 5px 0;
  white-space: nowrap;
}
.engagement-model .engagement-model-card__description {
  font-weight: 400;
  line-height: 1.6;
  color: var(--wp--preset--color--black-color);
  margin: 0;
}

.latest-ta-cta .newsletter-form {
  max-width: 500px;
  gap: 10px;
  margin-top: 8px;
}
@media screen and (max-width: 1199px) {
  .latest-ta-cta .newsletter-form {
    max-width: 450px;
  }
}
@media screen and (max-width: 425px) {
  .latest-ta-cta .newsletter-form {
    margin-top: 4px;
  }
}
.latest-ta-cta .newsletter-form .wpcf7-form-control-wrap {
  flex: 1;
}
.latest-ta-cta .newsletter-form input[type=email] {
  width: 100%;
  border: none;
  outline: none;
  background: var(--wp--preset--color--white-color);
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--wp--preset--color--primary-description);
  box-sizing: border-box;
}
.latest-ta-cta .newsletter-form .wpcf7-submit {
  background-color: var(--wp--preset--color--button-background-primary);
  color: var(--wp--preset--color--button-text-primary);
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
  position: relative;
  text-transform: capitalize;
  overflow: hidden;
  /* 
     NOTE: <input> tags do NOT support ::after. 
     To replicate the theme's shine effect on an input, we use a linear-gradient animation!
  */
  background-image: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: 200% 0;
  transition: background-position 0.6s ease-in-out, background-color 0.3s ease;
}
.latest-ta-cta .newsletter-form .wpcf7-submit:hover {
  background-position: -100% 0;
}
.latest-ta-cta .newsletter-form p {
  display: flex;
  align-items: center;
  background-color: var(--wp--preset--color--white-color);
  padding: 5px;
  border-radius: 50px;
}
@media screen and (max-width: 425px) {
  .latest-ta-cta .newsletter-form p {
    flex-direction: column;
    align-items: flex-start;
    background-color: unset;
    gap: 12px;
    padding: 0;
  }
}
.latest-ta-cta .wpcf7-spinner {
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 425px) {
  .latest-ta-cta .wpcf7-spinner {
    right: 9px;
  }
}
.latest-ta-cta .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -34px;
}
@media screen and (max-width: 425px) {
  .latest-ta-cta .wpcf7-not-valid-tip {
    bottom: -88px;
  }
}
.latest-ta-cta .wpcf7-form {
  position: relative;
}
.latest-ta-cta .wpcf7 form .wpcf7-response-output {
  border: unset;
  margin-inline: 0;
  color: var(--wp--preset--color--primary-color);
  padding: 0;
}
.latest-ta-cta .wpcf7 form.invalid .wpcf7-response-output, .latest-ta-cta .wpcf7 form.failed .wpcf7-response-output, .latest-ta-cta .wpcf7 form.unaccepted .wpcf7-response-output, .latest-ta-cta .wpcf7 form[data-status=invalid] .wpcf7-response-output, .latest-ta-cta .wpcf7 form[data-status=failed] .wpcf7-response-output, .latest-ta-cta .wpcf7 form[data-status=unaccepted] .wpcf7-response-output {
  color: #dc3545;
  /* Red color for error messages */
}
.latest-ta-cta .wpcf7 form.sent .wpcf7-response-output, .latest-ta-cta .wpcf7 form[data-status=sent] .wpcf7-response-output {
  color: #28a745;
  /* Green color for success messages */
}
.latest-ta-cta__inner {
  padding-inline: var(--wp--preset--spacing--common-padding);
}
@media screen and (max-width: 575px) {
  .latest-ta-cta__inner {
    padding-inline: var(--wp--preset--spacing--horizontal-padding);
  }
}
.latest-ta-cta__inner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1199px) {
  .latest-ta-cta__inner-content {
    gap: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .latest-ta-cta__inner-content h2 br,
  .latest-ta-cta__inner-content p br {
    display: none;
  }
}
.latest-ta-cta .wp-block-image img {
  max-width: 100%;
  max-height: 390px;
}
@media screen and (max-width: 991px) {
  .latest-ta-cta .wp-block-image img {
    height: auto;
    max-height: 500px;
  }
}
.latest-ta-cta .row {
  --bs-gutter-x: 60px;
}
@media screen and (max-width: 1199px) {
  .latest-ta-cta .row {
    --bs-gutter-x: 30px;
  }
}
@media screen and (max-width: 991px) {
  .latest-ta-cta .row {
    gap: 30px 0;
  }
}
.latest-ta-cta .col-lg-7 {
  display: flex;
  align-items: center;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .footer__top {
    gap: 14px;
  }
}
.footer__right-content {
  display: flex;
  gap: 24px;
  padding: 14px 22px;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  .footer__right-content {
    padding: 12px 19px;
  }
}
@media screen and (max-width: 767px) {
  .footer__right-content {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 9px;
    gap: 12px;
    width: 100%;
    word-break: break-all;
  }
}
.footer__right-content p {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__top-left-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__middle-left-content {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.footer__logo img {
  margin-bottom: 8px;
  max-width: 185px !important;
  max-height: 70px;
}
@media screen and (max-width: 575px) {
  .footer__logo img {
    width: 160px !important;
  }
}
.footer__social-media-wrapper {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .footer__social-media-wrapper {
    gap: 14px;
  }
}
.footer .wp-block-social-links {
  display: flex;
  gap: 6px 12px;
}
.footer .wp-block-social-links p {
  margin: 0 !important;
}
.footer .wp-block-social-links .wp-block-social-link {
  border-radius: 8px;
}
.footer__middle-right-content .row {
  gap: 24px 0;
}
.footer__middle > .row {
  justify-content: space-between;
  align-items: center;
  --bs-gutter-x: 120px;
}
@media screen and (max-width: 991px) {
  .footer__middle > .row {
    gap: 50px 0;
  }
}
@media screen and (max-width: 575px) {
  .footer__middle > .row {
    gap: 34px 0;
  }
}
.footer__middle > .row .col-lg-4 {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 991px) {
  .footer__middle > .row .col-lg-4 {
    gap: 22px;
  }
}
@media screen and (max-width: 575px) {
  .footer__middle > .row .col-lg-4 {
    gap: 19px;
  }
}
.footer__middle > .row .wp-block-navigation-item__content {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  padding-bottom: 2px;
  transform: translateZ(0);
}
.footer__middle > .row .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--wp--preset--color--primary-color);
  transition: transform 0.3s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
  backface-visibility: hidden;
}
.footer__middle > .row .wp-block-navigation-item__content:hover::after {
  transform: scaleX(1);
}
.footer__menu-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer__middle-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 90px;
}
@media screen and (max-width: 767px) {
  .footer__middle-slider-wrapper {
    flex-direction: column;
    gap: 23px;
  }
}
.footer__middle-slider-wrapper h3 {
  width: 23%;
}
@media screen and (max-width: 991px) {
  .footer__middle-slider-wrapper h3 {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .footer__middle-slider-wrapper h3 {
    width: 100%;
  }
  .footer__middle-slider-wrapper h3 br {
    display: none;
  }
}
.footer__middle {
  position: relative;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .footer__bottom {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .footer__bottom {
    gap: 12px;
  }
}
@media screen and (max-width: 425px) {
  .footer__bottom {
    flex-wrap: wrap;
  }
}
.footer__middle-bg-text {
  position: absolute;
  bottom: 32px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .footer__middle-bg-text {
    bottom: 58px;
  }
}
.footer__middle-bg-text img {
  width: 100%;
}
.footer__bottom-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .footer__bottom-link {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.footer__bottom-left-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .footer__bottom-left-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 12px;
    justify-content: center;
    text-align: center;
  }
}
.footer .logo-section {
  overflow: hidden;
}
.footer .logo-section__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 28px;
}
@media screen and (max-width: 575px) {
  .footer .logo-section__heading {
    margin-bottom: 16px;
  }
}
.footer .logo-section__heading img {
  max-height: 45px;
  max-width: 135px;
}
.footer .logo-section__heading p {
  font-size: 18px;
  line-height: 26px;
  color: #222222;
}
@media screen and (min-width: 1440px) {
  .footer .logo-section__heading p {
    font-size: 20px;
    line-height: 28px;
  }
}
.footer .logo-section__box figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 8px;
}
@media screen and (max-width: 575px) {
  .footer .logo-section__box figure {
    width: 112px;
    height: 54px;
    padding: 5px;
  }
}
.footer .logo-section__box figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
.footer .logo-section .logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.footer .logo-section .logo-track {
  display: flex;
  align-items: center;
  gap: 2px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}
.footer .logo-section .logo-item {
  flex-shrink: 0;
  width: 150px;
  text-align: center;
  padding: 0 4px;
}
@media screen and (max-width: 575px) {
  .footer .logo-section .logo-item {
    width: 120px;
    padding: 0 3px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.membership__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(94.89deg, rgba(201, 95, 80, 0.05) -46.3%, rgba(201, 95, 80, 0.05) 48.83%, rgba(201, 95, 80, 0.05) 129.4%);
  border-radius: 41px;
  position: relative;
  overflow: hidden;
  padding: var(--wp--preset--spacing--section-padding) 20px;
}
@media screen and (max-width: 767px) {
  .membership__box {
    gap: 18px;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box br {
    display: none;
  }
}
.membership__box::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 260px;
  height: 260px;
  background: url("../image/membership-open-2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .membership__box::before {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box::before {
    width: 100px;
    height: 100px;
  }
}
.membership__box::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 260px;
  height: 260px;
  background: url("../image/membership-open.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .membership__box::after {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box::after {
    width: 100px;
    height: 100px;
  }
}
.membership__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.membership__btn {
  display: flex;
  justify-content: center;
  gap: 23px;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .membership__btn {
    flex-direction: column;
    gap: 10px;
  }
}

.resume-builder__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  padding: 40px;
}
@media screen and (max-width: 991px) {
  .resume-builder__box {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 40px 24px;
    align-items: center;
  }
}
.resume-builder__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .resume-builder__left {
    width: 100%;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .resume-builder__left h2 br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .resume-builder__left h2 {
    text-align: center !important;
  }
}
.resume-builder__left h2 strong {
  color: #C95F50 !important;
}
.resume-builder__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .resume-builder__content {
    align-items: center;
  }
}
.resume-builder__right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .resume-builder__right {
    width: 100%;
    justify-content: center;
  }
}
.resume-builder__right figure {
  margin: 0 !important;
}
.resume-builder__right img {
  max-width: 100%;
  height: auto;
}
.resume-builder__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .resume-builder__list {
    justify-content: center;
  }
}
.resume-builder__list li {
  position: relative;
  margin: 0px 0px 0px 30px;
  text-align: left;
}
.resume-builder__list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: -28px;
  width: 24px;
  height: 24px;
  background: url("../image/double-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 1;
}
.resume-builder__title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .resume-builder__title {
    justify-content: ce991nter;
  }
}
.resume-builder__btn {
  display: flex;
  justify-content: start;
  gap: 40px;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .resume-builder__btn {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .resume-builder__btn {
    flex-direction: column-reverse;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 425px) {
  .resume-builder__btn {
    flex-direction: row;
    align-items: center;
  }
}

.indihire__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 1400px) {
  .indihire__box {
    align-items: center;
  }
}
@media screen and (max-width: 1199px) {
  .indihire__box {
    align-items: start;
  }
}
@media screen and (max-width: 991px) {
  .indihire__box {
    flex-direction: column-reverse;
  }
}
.indihire .row {
  --bs-gutter-x: 0;
}
.indihire__title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.indihire__left {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 50px;
}
@media screen and (max-width: 991px) {
  .indihire__left {
    width: 100%;
    position: unset;
  }
}
.indihire__left figure {
  width: 100%;
  height: auto;
  aspect-ratio: 592/475;
  background-image: url("../image/powerd-by-indihire.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indihire__left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  display: block;
}
.indihire__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media screen and (max-width: 991px) {
  .indihire__right {
    width: 100%;
    gap: 28px;
  }
}
.indihire__right h2 {
  margin-bottom: 8px;
}
@media screen and (max-width: 1199px) {
  .indihire__right h2 {
    margin-bottom: 0;
  }
  .indihire__right h2 br {
    display: none;
  }
}
.indihire__right .right-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.indihire__right .countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .indihire__right .countdown {
    gap: 24px;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .indihire__right .countdown {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .indihire__right .countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.indihire__right .countdown__items {
  padding-left: 20px;
  border-left: 2px solid var(--wp--preset--color--primary-color);
}
.indihire__right .countdown__items p {
  font-weight: 700;
  text-transform: uppercase;
}

.openroles-hero {
  position: relative;
  z-index: 0;
}
.openroles-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  background: url("../image/Tapered Brief Structure (right).webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .openroles-hero::before {
    width: 50%;
    height: 50%;
  }
}
.openroles-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../image/Tapered Brief Structure (left).webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .openroles-hero::after {
    width: 50%;
    height: 50%;
  }
}
.openroles-hero__box {
  display: flex;
  align-items: end;
  gap: 86px;
}
@media screen and (min-width: 1400px) {
  .openroles-hero__box {
    gap: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box {
    flex-direction: column;
    gap: 20px;
  }
}
.openroles-hero__box .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box .left {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .openroles-hero__box .left h1 {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box .left h1 br {
    display: none;
  }
}
.openroles-hero__box .left .tagline {
  font-weight: 700;
  display: inline-block;
  border: 2px solid rgba(201, 95, 80, 0.3215686275);
  padding: 15px 30px 12px 30px;
  background-color: rgba(201, 95, 80, 0.0588235294);
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .openroles-hero__box .left .tagline {
    padding: 10px 24px;
  }
}
.openroles-hero__box .left .tagline p {
  line-height: 15px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .openroles-hero__box .left .tagline p {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box .left > p {
    text-align: center;
  }
}
.openroles-hero__box .right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box .right {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .openroles-hero__box .right {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .openroles-hero__box .right p {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .openroles-hero__box .right p {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .openroles-hero__box .right p br {
    display: none;
  }
}

.common-page .row {
  display: flex;
  justify-content: center;
}
.common-page__content a {
  color: var(--wp--preset--color--primary-color);
}
.common-page__content h1 {
  font-size: var(--wp--preset--font-size--text-h-1);
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .common-page__content h1 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 575px) {
  .common-page__content h1 {
    margin-bottom: 20px;
  }
}
.common-page__content h2 {
  font-size: var(--wp--preset--font-size--text-h-2-secondary);
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  margin-bottom: 16px;
}
@media screen and (max-width: 575px) {
  .common-page__content h2 {
    margin-top: 8px;
    margin-bottom: 14px;
  }
}
.common-page__content h3 {
  font-size: var(--wp--preset--font-size--text-h-3);
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  margin-bottom: 17px;
}
@media screen and (max-width: 575px) {
  .common-page__content h3 {
    margin-bottom: 14px;
  }
}
.common-page__content h4, .common-page__content h5, .common-page__content h6 {
  margin-bottom: 18px;
}
.common-page__content p {
  font-size: var(--wp--preset--font-size--description-sm);
  font-weight: 500;
  color: var(--wp--preset--color--primary-description);
  margin-bottom: 18px;
}
@media screen and (max-width: 991px) {
  .common-page__content p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 575px) {
  .common-page__content p {
    margin-bottom: 14px;
  }
}
.common-page__content p strong {
  color: var(--wp--preset--color--black-color);
}
.common-page__content .wp-block-list {
  display: flex;
  flex-direction: column;
  list-style-position: inside;
  list-style-type: disc;
  gap: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .common-page__content .wp-block-list {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 575px) {
  .common-page__content .wp-block-list {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 575px) {
  .common-page__content .wp-block-list {
    gap: 13px;
  }
}
.common-page__content .wp-block-list li {
  font-size: var(--wp--preset--font-size--description-sm);
  font-weight: 500;
  color: var(--wp--preset--color--primary-description);
}
.common-page__content .wp-block-list li strong {
  color: var(--wp--preset--color--black-color);
}

.career-opt__inner {
  position: relative;
  border: 1px solid rgba(201, 95, 80, 0.34);
  overflow: hidden;
}
.career-opt__inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 330px;
  height: 330px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 1199px) {
  .career-opt__inner::before {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
  }
}
@media screen and (max-width: 767px) {
  .career-opt__inner::before {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -60px;
  }
}
.career-opt__inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 185px;
  height: 185px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 1199px) {
  .career-opt__inner::after {
    width: 160px;
    height: 160px;
    bottom: -60px;
    left: -60px;
  }
}
@media screen and (max-width: 767px) {
  .career-opt__inner::after {
    width: 100px;
    height: 100px;
    bottom: -40px;
    left: -40px;
  }
}
@media screen and (max-width: 991px) {
  .career-opt__inner .row {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 575px) {
  .career-opt__inner .row {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.career-opt__inner .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .career-opt__inner .left {
    margin-bottom: 35px;
  }
}
.career-opt__inner .left .career-list {
  margin-top: 15px;
}
.career-opt__inner .left .career-list li {
  position: relative;
  padding: 0px 0px 18px 36px;
  line-height: 1.5;
}
.career-opt__inner .left .career-list li::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  background: url("../image/Group.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: 1;
}
.career-opt__inner .right {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 35px;
  background: rgba(201, 95, 80, 0.1);
  backdrop-filter: blur(33.8px);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (max-width: 767px) {
  .career-opt__inner .right {
    padding: 24px;
    gap: 18px;
    border-radius: 20px;
  }
}
.career-opt__inner .right .wpcf7-form-control-wrap[data-name=your-file] input[type=file],
.career-opt__inner .right .hidden-file-input {
  display: none !important;
}
.career-opt__inner .right .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.career-opt__inner .right .wpcf7-form br {
  display: none;
}
.career-opt__inner .right .wpcf7-form p {
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
@media (max-width: 425px) {
  .career-opt__inner .right .wpcf7-form p {
    font-size: 14px;
  }
}
.career-opt__inner .right .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
.career-opt__inner .right .wpcf7-form input[type=text],
.career-opt__inner .right .wpcf7-form input[type=email],
.career-opt__inner .right .wpcf7-form input[type=tel],
.career-opt__inner .right .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(201, 95, 80, 0.25);
  border-radius: 12px;
  background: var(--wp--preset--color--white-color);
  font-size: 14px;
  color: var(--wp--preset--color--primary-heading);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.career-opt__inner .right .wpcf7-form input[type=text]:focus,
.career-opt__inner .right .wpcf7-form input[type=email]:focus,
.career-opt__inner .right .wpcf7-form input[type=tel]:focus,
.career-opt__inner .right .wpcf7-form textarea:focus {
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 95, 80, 0.15);
}
.career-opt__inner .right .wpcf7-form input[type=text]::-moz-placeholder, .career-opt__inner .right .wpcf7-form input[type=email]::-moz-placeholder, .career-opt__inner .right .wpcf7-form input[type=tel]::-moz-placeholder, .career-opt__inner .right .wpcf7-form textarea::-moz-placeholder {
  color: rgba(122, 117, 112, 0.7);
}
.career-opt__inner .right .wpcf7-form input[type=text]::placeholder,
.career-opt__inner .right .wpcf7-form input[type=email]::placeholder,
.career-opt__inner .right .wpcf7-form input[type=tel]::placeholder,
.career-opt__inner .right .wpcf7-form textarea::placeholder {
  color: rgba(122, 117, 112, 0.7);
}
.career-opt__inner .right .wpcf7-form textarea {
  min-height: 100px;
  resize: vertical;
}
.career-opt__inner .right .wpcf7-form p:has(input[type=submit]),
.career-opt__inner .right .wpcf7-form p:has(.wpcf7-submit) {
  position: relative;
}
.career-opt__inner .right .wpcf7-form input[type=submit],
.career-opt__inner .right .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--wp--preset--color--button-background-primary);
  color: var(--wp--preset--color--button-text-primary);
  border: 2px solid var(--wp--preset--color--button-background-primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 8px;
}
.career-opt__inner .right .wpcf7-form input[type=submit]:hover,
.career-opt__inner .right .wpcf7-form .wpcf7-submit:hover {
  background: transparent;
  color: var(--wp--preset--color--button-background-primary);
}
.career-opt__inner .right .wpcf7-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
  margin-top: 4px;
  /* Adjusting for button margin-top */
}
.career-opt__inner .right .resume-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-opt__inner .right .resume-upload:has(.custom-upload-label.has-file) .upload-note {
  display: none;
}
.career-opt__inner .right .custom-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 170px;
  border: 2px dashed rgba(201, 95, 80, 0.35);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--wp--preset--color--white-color);
  padding: 20px 15px;
}
.career-opt__inner .right .custom-upload-label:hover, .career-opt__inner .right .custom-upload-label.drag-over {
  border-color: var(--wp--preset--color--primary-color);
  background: rgba(201, 95, 80, 0.02);
}
@media screen and (max-width: 767px) {
  .career-opt__inner .right .custom-upload-label {
    min-height: 150px;
  }
}
.career-opt__inner .right .custom-upload-label.has-file .upload-icon-circle,
.career-opt__inner .right .custom-upload-label.has-file .upload-text,
.career-opt__inner .right .custom-upload-label.has-file .upload-max {
  display: none;
}
.career-opt__inner .right .upload-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.career-opt__inner .right .upload-text {
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: #2C2C2A;
  line-height: 1.4;
  margin: 0;
}
.career-opt__inner .right .upload-max {
  width: 100%;
  text-align: center;
  color: #888780;
  margin: 0;
}
.career-opt__inner .right .upload-note {
  color: #888780;
  line-height: 1.4;
}
.career-opt__inner .right .wp-block-buttons {
  width: 100%;
  margin-top: 8px;
}
.career-opt__inner .right .wp-block-buttons .wp-block-button {
  width: 100%;
}
.career-opt__inner .right .wp-block-buttons .wp-block-button__link {
  width: 100%;
  justify-content: center;
}
.career-opt__inner .right .preview-file-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F9F9F9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 14px;
  color: #2C2C2A;
  width: 100%;
}
.career-opt__inner .right .preview-file-box .file-icon {
  flex-shrink: 0;
  color: var(--wp--preset--color--primary-color);
}
.career-opt__inner .right .preview-file-box .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.career-opt__inner .right .preview-file-box .file-size {
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}
.career-opt__inner .right .preview-file-box .remove-file {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.contact-map {
  background-color: var(--wp--preset--color--white-color);
  padding: 64px 86px;
}
@media screen and (max-width: 1199px) {
  .contact-map {
    padding: 48px 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-map {
    padding: 32px 16px;
  }
}
.contact-map__wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--wp--preset--color--white-color);
}
.contact-map__wrapper iframe {
  width: 100%;
  height: 466px;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}
@media screen and (max-width: 991px) {
  .contact-map__wrapper iframe {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .contact-map__wrapper iframe {
    height: 300px;
  }
}
.contact-map__card {
  background: var(--wp--preset--color--white-color);
  border-radius: 11px;
  padding: 19px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  max-width: 290px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-map__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 991px) {
  .contact-map__card {
    position: absolute;
    top: 25px;
    left: 24px;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .contact-map__card {
    z-index: 10;
    width: calc(100% - 48px);
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .contact-map__card {
    margin: 24px auto 0 auto;
  }
}
.contact-map__card__title {
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.contact-map__card__text {
  line-height: 1.5;
  margin: 0;
}
.contact-map__card__btn {
  align-items: center;
  justify-content: center;
  gap: 6.27px;
}

.resources-download__inner {
  position: relative;
  overflow: hidden;
}
.resources-download__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 40px;
}
.resources-download__header .is-style-subtitles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: var(--wp--preset--color--primary-color);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1199px) {
  .resources-download__header h2 br {
    display: none;
  }
}
.resources-download__tag-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.resources-download {
  /* Resources Grid */
}
.resources-download .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .resources-download .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.resources-download .resource-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: var(--wp--preset--color--white-color);
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .resources-download .resource-card {
    padding: 20px;
  }
}
.resources-download .resource-card:hover {
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 12px 30px rgba(201, 95, 80, 0.08);
  transform: translateY(-4px);
}
.resources-download .resource-card:hover .resource-card__file-icon {
  transform: scale(1.1);
}
.resources-download .resource-card:hover .resource-card__arrow-icon {
  transform: translate(2px, 2px) scale(1.05);
}
.resources-download .resource-card__left {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .resources-download .resource-card__left {
    gap: 16px;
  }
}
.resources-download .resource-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--wp--preset--color--primary-color);
  border-radius: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .resources-download .resource-card__icon-wrapper {
    width: 44px;
    height: 44px;
  }
}
.resources-download .resource-card__file-icon {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.35s ease;
}
.resources-download .resource-card__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.resources-download .resource-card__title {
  font-family: var(--wp--preset--font-family--secondary), sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--wp--preset--color--primary-heading);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .resources-download .resource-card__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .resources-download .resource-card__title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
@media screen and (max-width: 425px) {
  .resources-download .resource-card__title {
    font-size: 13px;
  }
}
.resources-download .resource-card__meta {
  font-family: var(--wp--preset--font-family--primary), sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  color: var(--wp--preset--color--secondary-description);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .resources-download .resource-card__meta {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
.resources-download .resource-card__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 12px;
}
.resources-download .resource-card__arrow-icon {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.35s ease;
}

.single-blog-template__page-header .header-right-side {
  border-left: 1px solid rgba(0, 0, 0, 0.31);
  padding: 7px 0px 7px 40px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__page-header .header-right-side {
    margin-top: 20px;
  }
}
.single-blog-template__page-header .header-right-side .post-info {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 23px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .single-blog-template__page-header .header-right-side .post-info {
    justify-content: start;
    gap: 20px;
  }
}
.single-blog-template__page-header .header-right-side .post-info .wp-block-post-date,
.single-blog-template__page-header .header-right-side .post-info .wp-block-post-time-to-read {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-blog-template__page-header .header-right-side .post-info .wp-block-post-date::before,
.single-blog-template__page-header .header-right-side .post-info .wp-block-post-time-to-read::before {
  content: "";
  display: block;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #666666;
}
.single-blog-template__page-header .header-right-side .post-info__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-blog-template__page-header .header-right-side .post-info__author img {
  height: 34px;
  width: 34px;
  border-radius: 100px;
}
.single-blog-template__page-header .header-right-side .post-info__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-blog-template__page-header .header-right-side .social-media-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.single-blog-template__page-header .header-right-side .social-media-icons p {
  margin-bottom: 0;
  white-space: nowrap;
}
.single-blog-template__page-header .header-right-side .social-media-icons ul {
  gap: 22px;
}
@media screen and (max-width: 991px) {
  .single-blog-template__page-header .header-right-side .social-media-icons ul {
    gap: 10px;
  }
}
.single-blog-template__page-header .header-right-side .social-media-icons ul .wp-social-link-facebook a {
  position: relative;
  line-height: unset;
}
.single-blog-template__page-header .header-right-side .social-media-icons ul .wp-social-link-facebook a svg {
  display: none;
}
.single-blog-template__page-header .header-right-side .social-media-icons ul .wp-social-link-facebook a::after {
  content: "\f09a";
  font-family: "fontello";
  font-weight: 400;
  display: block;
  color: #c95f50;
}
.single-blog-template__single-block-content .row {
  --bs-gutter-x: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .single-blog-template__single-block-content .row {
    --bs-gutter-x: 20px;
  }
}
.single-blog-template__single-block-content--left-side {
  position: sticky;
  top: 50px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 991px) {
  .single-blog-template__single-block-content--left-side {
    gap: 40px;
  }
}
@media screen and (max-width: 991px) {
  .single-blog-template__single-block-content--left-side {
    position: sticky;
    gap: 40px;
    margin-bottom: 40px !important;
  }
}
.single-blog-template__single-block-content--left-side .on-this-page h3 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-blog-template__single-block-content--left-side .on-this-page h3 svg {
  display: block;
  flex-shrink: 0;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: heading-counter;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics li {
  counter-increment: heading-counter;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics li a {
  font-weight: 500;
  color: #6D6D6D;
  text-decoration: none;
  display: block;
  padding: 17px 0 6px 12px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics li a::before {
  content: counter(heading-counter) ". ";
  color: inherit;
  font-weight: 500;
  transition: color 0.3s ease;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics li a:hover {
  color: #c95f50;
  border-left: 2px solid #c95f50;
  padding-left: 30px;
  margin-right: -18px;
}
.single-blog-template__single-block-content--left-side .on-this-page .post-topics li a.active {
  color: #c95f50;
  border-left: 2px solid #c95f50;
  padding-left: 30px;
  margin-right: -18px;
}
.single-blog-template__single-block-content--left-side .stay-updateed {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form p br {
  display: none;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form .wpcf7-spinner {
  display: none;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=email] {
  width: 100%;
  background-color: var(--wp--preset--color--button-text-primary);
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 14px 24px;
  font-size: 14px;
  color: var(--wp--preset--color--primary-description);
  outline: none;
  box-sizing: border-box;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=email]::-moz-placeholder {
  color: var(--wp--preset--color--primary-description);
  opacity: 0.7;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=email]::placeholder {
  color: var(--wp--preset--color--primary-description);
  opacity: 0.7;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=email]:focus {
  border-color: var(--wp--preset--color--primary-color);
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=submit] {
  width: 100%;
  background-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 18px;
  transition: background-position 0.5s ease-in-out, background-color 0.3s ease;
  /* Replicating the theme's slanted shine effect for <input> */
  background-image: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 400% 100%;
  background-position: 100% 0;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form input[type=submit]:hover {
  background-position: 0% 0;
}
.single-blog-template__single-block-content--left-side .stay-updateed .newsletter-form .wpcf7-not-valid-tip {
  font-size: 14px;
  padding: 5px 10px 0px 10px;
}
.single-blog-template__single-block-content--left-side .stay-updateed .wpcf7-response-output {
  padding: 0;
  border: unset;
  margin: 10px 0px 0px 5px;
}
.single-blog-template__single-block-content--left-side .stay-updateed .wpcf7-form.invalid .wpcf7-response-output,
.single-blog-template__single-block-content--left-side .stay-updateed .wpcf7-form.failed .wpcf7-response-output {
  color: #dc3232;
}
.single-blog-template__single-block-content--left-side .popular-tags {
  border: 1px solid #F1E4DF;
}
.single-blog-template__single-block-content--left-side .popular-tags h3 {
  margin-bottom: 28px;
}
.single-blog-template__single-block-content--left-side .popular-tags .all-tags {
  display: flex;
  gap: 12px 14px;
  flex-wrap: wrap;
  width: 100%;
}
.single-blog-template__single-block-content--left-side .popular-tags .all-tags .tags {
  border: 1px solid rgb(238, 238, 238);
  padding: 9px 17px;
  border-radius: 50px;
}
.single-blog-template__single-block-content--right-side {
  counter-reset: heading-counter;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-blog-template__single-block-content--right-side img {
  border-radius: 22px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side img {
    height: 300px;
  }
}
.single-blog-template__single-block-content--right-side p {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--description-sm);
  color: var(--wp--preset--color--heading-color);
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side p {
    margin-bottom: 18px;
  }
}
.single-blog-template__single-block-content--right-side ul,
.single-blog-template__single-block-content--right-side ol {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.single-blog-template__single-block-content--right-side ul li,
.single-blog-template__single-block-content--right-side ol li {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--description-sm);
  color: var(--wp--preset--color--heading-color);
  font-weight: 400;
  margin: 0 !important;
}
.single-blog-template__single-block-content--right-side a {
  color: #c95f50;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.single-blog-template__single-block-content--right-side a:hover {
  color: var(--wp--preset--color--secondary-description);
}
.single-blog-template__single-block-content--right-side ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side ul {
    margin-bottom: 18px;
  }
}
.single-blog-template__single-block-content--right-side ul li {
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side ul li {
    margin-bottom: 6px;
  }
}
.single-blog-template__single-block-content--right-side ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 24px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side ol {
    margin-bottom: 18px;
  }
}
.single-blog-template__single-block-content--right-side ol li {
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side ol li {
    margin-bottom: 6px;
  }
}
.single-blog-template__single-block-content--right-side h2,
.single-blog-template__single-block-content--right-side h2.wp-block-heading {
  font-weight: 600;
  color: var(--wp--preset--color--primary-color);
  text-transform: capitalize;
  counter-increment: heading-counter;
  margin-top: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side h2,
  .single-blog-template__single-block-content--right-side h2.wp-block-heading {
    margin-top: 24px;
    margin-bottom: 18px;
  }
}
.single-blog-template__single-block-content--right-side h2::before,
.single-blog-template__single-block-content--right-side h2.wp-block-heading::before {
  content: counter(heading-counter) ". ";
  color: var(--wp--preset--color--primary-color);
  font-weight: 700;
}
.single-blog-template__single-block-content--right-side h3,
.single-blog-template__single-block-content--right-side h3.wp-block-heading {
  font-weight: 600;
  color: var(--wp--preset--color--primary-color);
  counter-increment: heading-counter;
  margin-top: 28px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side h3,
  .single-blog-template__single-block-content--right-side h3.wp-block-heading {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}
.single-blog-template__single-block-content--right-side h3::before,
.single-blog-template__single-block-content--right-side h3.wp-block-heading::before {
  content: counter(heading-counter) ". ";
  color: var(--wp--preset--color--primary-color);
  font-weight: 700;
}
.single-blog-template__single-block-content--right-side h4,
.single-blog-template__single-block-content--right-side h4.wp-block-heading {
  font-weight: 600;
  color: var(--wp--preset--color--primary-color);
  counter-increment: heading-counter;
  margin-top: 24px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .single-blog-template__single-block-content--right-side h4,
  .single-blog-template__single-block-content--right-side h4.wp-block-heading {
    margin-top: 18px;
    margin-bottom: 8px;
  }
}
.single-blog-template__single-block-content--right-side h4::before,
.single-blog-template__single-block-content--right-side h4.wp-block-heading::before {
  content: counter(heading-counter) ". ";
  color: var(--wp--preset--color--primary-color);
  font-weight: 700;
}
.single-blog-template__related-blog--listing {
  margin-top: 30px !important;
}
@media screen and (max-width: 425px) {
  .single-blog-template__related-blog--listing {
    margin-top: 20px;
  }
}

.latest-blog__header {
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .latest-blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
.latest-blog__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.latest-blog__header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .latest-blog__header h2 br {
    display: none;
  }
}

.latest-blog__title {
  font-weight: 600;
  color: var(--wp--preset--color--primary-heading);
  margin: 0;
}
.latest-blog__title-highlight {
  color: var(--wp--preset--color--primary-color);
}

.faq__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .faq__box {
    gap: 30px;
  }
}
.faq__box .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.faq__box .top .is-style-subtitles {
  align-items: center;
}
.faq__box .bottom .faq-list {
  max-width: 850px;
  margin: 0 auto;
}
.faq__box .bottom .faq-list .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}
.faq__box .bottom .faq-list .wp-block-accordion-heading__toggle {
  border: 1px solid #E7E4E2;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .faq__box .bottom .faq-list .wp-block-accordion-heading__toggle {
    padding: 18px;
    margin-bottom: 14px;
  }
}
.faq__box .bottom .faq-list .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-icon {
  background-color: var(--wp--preset--color--button-background-primary);
  padding: 18px;
  color: white;
  border-radius: 8px;
  font-size: 17px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__box .bottom .faq-list .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-icon {
    padding: 15px;
    font-size: 16px;
  }
}
.faq__box .bottom .faq-list .wp-block-accordion-panel {
  padding: 0px 20px 20px 20px;
  display: block !important;
}
.faq__box .bottom .rank-math-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq__box .bottom .rank-math-list .rank-math-list-item {
  background: var(--wp--preset--color--white-color);
  border: 1px solid #E7E4E2;
  border-radius: 16px;
}
.faq__box .bottom .rank-math-list .rank-math-list-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-weight: 500;
  font-family: var(--wp--preset--font-family--secondary);
  color: #2D2D2D;
  position: relative;
  cursor: pointer;
  padding: 25px;
  transition: margin-bottom 0.3s ease;
}
@media screen and (max-width: 575px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item h3 {
    padding: 20px;
  }
}
.faq__box .bottom .rank-math-list .rank-math-list-item h3::after {
  content: "+";
  color: var(--wp--preset--color--white-color);
  font-size: 22px;
  font-weight: 100;
  line-height: 1;
  transition: transform 0.3s ease;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--wp--preset--color--primary-color);
  border-radius: 8.6px;
}
@media screen and (max-width: 767px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item h3::after {
    font-size: 18px;
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 575px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item h3::after {
    font-size: 16px;
  }
}
.faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer p {
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 400;
  color: #6D6D6D;
  padding: 0px 25px 25px 25px;
  margin-bottom: 0;
}
.faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer p br {
  display: none;
}
.faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer p:empty {
  display: none;
}
@media screen and (max-width: 575px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer p {
    padding: 0px 20px 20px 20px;
  }
}
.faq__box .bottom .rank-math-list .rank-math-list-item .faq-answer p a {
  color: var(--wp--preset--color--primary-color);
  font-weight: 500;
}
.faq__box .bottom .rank-math-list .rank-math-list-item h3 {
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 991px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item h3 {
    font-size: 16px;
    line-height: 26px;
  }
}
.faq__box .bottom .rank-math-list .rank-math-list-item p {
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width: 991px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item p {
    font-size: 15px;
    line-height: 26px;
  }
}
@media screen and (max-width: 425px) {
  .faq__box .bottom .rank-math-list .rank-math-list-item p {
    font-size: 14px;
    line-height: 22px;
  }
}
.faq__box .bottom .rank-math-list .rank-math-list-item.active h3::after {
  transform: rotate(45deg);
}
.faq__box .bottom .rank-math-list .rank-math-list-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}
.faq__box .bottom .rank-math-list .rank-math-list-item.active .faq-answer > p {
  opacity: 1;
}

.contact-hero {
  position: relative;
  z-index: 0;
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../image/Vector 77.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.contact-hero__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  flex-direction: column;
}
.contact-hero__box .tagline {
  display: inline-block;
  border: 2px solid rgba(201, 95, 80, 0.3215686275);
  padding: 12px 29px 10px;
  background-color: rgba(201, 95, 80, 0.0588235294);
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .contact-hero__box .tagline {
    padding: 6px 20px 5px 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-hero__box .tagline p {
    text-align: center;
  }
}
.contact-hero__box h1, .contact-hero__box h2, .contact-hero__box h3 {
  padding-top: 13px;
}
@media screen and (max-width: 767px) {
  .contact-hero__box h1, .contact-hero__box h2, .contact-hero__box h3 {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-library {
  overflow: hidden;
}
.video-library__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 500px;
  position: relative;
  z-index: 1;
}
.video-library__hero .sub-title {
  padding: 15px 29px 12px 29px;
}
.video-library__hero::after {
  content: "";
  position: absolute;
  height: 700px;
  width: 700px;
  bottom: -271.188px;
  left: -387.484px;
  border: 70px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 50%;
  z-index: -3;
}
@media screen and (max-width: 1199px) {
  .video-library__hero::after {
    bottom: -300px;
    left: -450px;
  }
}
@media screen and (max-width: 1199px) {
  .video-library__hero h1 br {
    display: none;
  }
}
.video-library__hero::before {
  content: "";
  position: absolute;
  height: 700px;
  width: 700px;
  top: -298.312px;
  right: -498.203px;
  border: 70px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 50%;
  z-index: -3;
}
@media screen and (max-width: 1199px) {
  .video-library__hero::before {
    right: -525px;
    top: -360px;
  }
}
@media screen and (max-width: 991px) {
  .video-library__hero::before {
    right: -600px;
    top: -360px;
  }
}
.video-library__hero .sub-title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.video-library__featured-video {
  position: relative;
  z-index: 1;
}
.video-library__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .video-library__header h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .video-library__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.video-library__header-left {
  flex: 1;
}
.video-library__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 15px 0 0 0;
}
.video-library__title mark {
  background: transparent;
  color: #C95F50;
}
@media (max-width: 991px) {
  .video-library__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 576px) {
  .video-library__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.video-library__header-right {
  flex-shrink: 0;
}
.video-library__header-right .wp-block-buttons {
  margin-bottom: 0;
}

.alternating-features__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.alternating-features__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .alternating-features__item {
    align-items: start;
  }
}
@media screen and (max-width: 991px) {
  .alternating-features__item {
    flex-direction: column-reverse;
    margin-bottom: 48px;
  }
}
.alternating-features__item.is-reversed {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .alternating-features__item.is-reversed {
    flex-direction: column-reverse;
  }
}
.alternating-features__image {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1199px) {
  .alternating-features__image {
    position: sticky;
    top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .alternating-features__image {
    width: 100%;
    position: unset;
  }
}
.alternating-features__image figure {
  width: 100%;
  height: auto;
  aspect-ratio: 592/475;
  background-color: var(--wp--preset--color--primary);
  background-image: url("../../assets/image/powerd-by-indihire.svg");
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alternating-features__image figure img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 400px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  display: block;
}
@media screen and (min-width: 1400px) {
  .alternating-features__image figure img {
    min-height: 450px;
    max-height: 450px;
  }
}
@media screen and (max-width: 1199px) {
  .alternating-features__image figure img {
    min-height: 320px;
    max-height: 320px;
  }
}
@media screen and (max-width: 991px) {
  .alternating-features__image figure img {
    min-height: 450px;
    max-height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .alternating-features__image figure img {
    min-height: 350px;
    max-height: 350px;
  }
}
@media screen and (max-width: 575px) {
  .alternating-features__image figure img {
    min-height: 270px;
    max-height: 270px;
  }
}
@media screen and (max-width: 425px) {
  .alternating-features__image figure img {
    min-height: 220px;
    max-height: 220px;
  }
}
.alternating-features__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media screen and (max-width: 991px) {
  .alternating-features__content {
    width: 100%;
    gap: 28px;
  }
}
.alternating-features__content h2 {
  margin-bottom: 8px;
}
@media screen and (max-width: 1199px) {
  .alternating-features__content h2 {
    margin-bottom: 0;
  }
  .alternating-features__content h2 br {
    display: none;
  }
}
.alternating-features__content h2 strong {
  color: #C95F50 !important;
}
.alternating-features__content .right-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.alternating-features__content .countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.alternating-features__content .countdown__items {
  padding-left: 20px;
  border-left: 2px solid var(--wp--preset--color--primary-color);
}
.alternating-features__content .countdown__items p {
  font-weight: 700;
  text-transform: uppercase;
}

.contact-get-in-touch__wrapper {
  background-color: var(--wp--preset--color--primary-color);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .contact-get-in-touch__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.contact-get-in-touch__form-card {
  background-color: var(--wp--preset--color--white-color);
  border-radius: 20px;
  padding: 40px 40px;
  color: var(--wp--preset--color--primary-heading);
  flex: 1;
}
@media screen and (max-width: 991px) {
  .contact-get-in-touch__form-card {
    padding: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact-get-in-touch__form-card {
    border-radius: 12px;
  }
}
.contact-get-in-touch__form-card .title {
  color: var(--wp--preset--color--primary-color);
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-get-in-touch__form-card .desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 21px;
  line-height: 1.5;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 18px;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 14px;
  padding: 5px;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap input,
.contact-get-in-touch__form-card .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 15px 12px;
  border: 0.98px solid rgba(130, 130, 130, 0.2);
  border-radius: 8px;
  background-color: transparent;
  font-size: var(--wp--preset--font-size--description-xs);
  font-family: inherit;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5019607843);
  box-sizing: border-box;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap input:focus,
.contact-get-in-touch__form-card .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap textarea {
  height: 90px;
  padding: 15px 12px;
  resize: none;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 12px;
  border: 0.98px solid rgba(130, 130, 130, 0.2);
  border-radius: 8px;
  background-color: transparent;
  font-size: var(--wp--preset--font-size--description-xs);
  font-family: inherit;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5019607843);
  box-sizing: border-box;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  stroke: #000000;
  stroke-width: 2.2px;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select.is-open .cf7-custom-select__trigger {
  border-color: var(--wp--preset--color--primary-color);
  background: #fff;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select.is-open .cf7-custom-select__trigger svg {
  transform: rotate(180deg);
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select.is-open .cf7-custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select.is-open .wpcf7-response-output {
  border: unset;
  margin-inline: 0;
  color: #46b450;
  padding: 0;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__option {
  padding: 10px 15px;
  transition: background 0.2s;
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__option:hover {
  background: rgba(201, 95, 80, 0.05);
  color: var(--wp--preset--color--primary-color);
}
.contact-get-in-touch__form-card .wpcf7-form-control-wrap .cf7-custom-select__option.selected {
  background: var(--wp--preset--color--primary-color);
  color: #fff;
}
.contact-get-in-touch__form-card .wpcf7-submit {
  width: 100%;
  background-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: none;
  padding: 12px 15px 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, background-position 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 2L11 13M22 2L15 22L11 13M22 2L2 9L11 13' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% - 64px) center;
  background-size: 18px;
}
.contact-get-in-touch__form-card .wpcf7-submit:hover {
  background-color: rgb(175.7641921397, 69.3013100437, 54.2358078603);
  background-position: calc(50% + 75px) center;
}
form.submitting .contact-get-in-touch__form-card .wpcf7-submit {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath fill='%23ffffff' d='M25,5A20.14,20.14,0,0,1,45,22.88a2.51,2.51,0,0,0,2.49,2.26h0A2.52,2.52,0,0,0,50,22.33a25.14,25.14,0,0,0-50,0,2.52,2.52,0,0,0,2.5,2.81h0A2.51,2.51,0,0,0,5,22.88,20.14,20.14,0,0,1,25,5Z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
  background-position: calc(50% + 75px) center;
  background-size: 20px;
}
.contact-get-in-touch__form-card .wpcf7 .wpcf7-response-output {
  font-size: 14px;
  margin: 0;
  padding: 10px;
  border: unset;
}
.contact-get-in-touch__form-card .wpcf7-spinner {
  display: none !important;
}
.contact-get-in-touch__form-card .wpcf7 .wpcf7-response-output {
  margin: 15px 0 0 0 !important;
  border-radius: 8px !important;
  padding: 12px 15px !important;
  font-size: var(--wp--preset--font-size--description-sm) !important;
  line-height: 1.5;
}
.contact-get-in-touch__form-card .wpcf7 form.sent .wpcf7-response-output {
  color: #155724 !important;
  background-color: #d4edda !important;
  border: 1px solid #c3e6cb !important;
}
.contact-get-in-touch__form-card .wpcf7 form.invalid .wpcf7-response-output,
.contact-get-in-touch__form-card .wpcf7 form.failed .wpcf7-response-output,
.contact-get-in-touch__form-card .wpcf7 form.spam .wpcf7-response-output {
  color: #721c24 !important;
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
}
.contact-get-in-touch__form-card .wpcf7-form.invalid,
.contact-get-in-touch__form-card .wpcf7-response-output {
  color: #dc3232;
}
.contact-get-in-touch__form-card .privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 21px;
  justify-content: flex-start;
  text-align: left;
}
.contact-get-in-touch__form-card .privacy-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--wp--preset--color--primary-color);
}
.contact-get-in-touch__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 38px;
}
@media screen and (max-width: 991px) {
  .contact-get-in-touch__info {
    padding-top: 0;
  }
}
.contact-get-in-touch__info .desc {
  margin: 17px 0px 21px 0;
}
.contact-get-in-touch__info .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-get-in-touch__info .info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
.contact-get-in-touch__info .info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
}
.contact-get-in-touch__info .info-list li .icon {
  width: auto;
  height: auto;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  background-color: var(--wp--preset--color--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-get-in-touch__info .info-list li .icon svg {
  width: 18px;
  height: 18px;
  fill: var(--wp--preset--color--primary-color);
}
.contact-get-in-touch__info .info-list li .details h5 {
  color: var(--wp--preset--color--white-color);
  font-weight: 500;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--description-sm);
}
.contact-get-in-touch__info .info-list li .details p {
  line-height: 27px;
  font-weight: 400;
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--description-xs);
}
@media screen and (max-width: 991px) {
  .contact-get-in-touch__info .info-list li .details p {
    line-height: 1.5;
  }
}
.contact-get-in-touch__info .info-list li .details p {
  margin: 0;
}
.contact-get-in-touch__info .response-time {
  background-color: var(--wp--preset--color--white-color);
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 32px;
}

.ta-corner-community-hub {
  position: relative;
  z-index: 0;
}
.ta-corner-community-hub__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 991px) {
  .ta-corner-community-hub__box {
    flex-direction: column;
    gap: 40px;
  }
}
.ta-corner-community-hub__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .ta-corner-community-hub__left {
    width: 100%;
    gap: 20px;
  }
}
.ta-corner-community-hub__left .tagline {
  font-weight: 700;
  display: inline-block;
  border: 2px solid rgba(201, 95, 80, 0.3215686275);
  padding: 12px 24px 10px 24px;
  background-color: rgba(201, 95, 80, 0.0588235294);
  border-radius: 100px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ta-corner-community-hub__left .tagline {
    padding: 8px 18px;
  }
}
.ta-corner-community-hub__left .tagline p {
  margin: 0;
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--wp--preset--font-size--description-xs);
}
.ta-corner-community-hub__left .tagline .tagline-spark {
  color: var(--wp--preset--color--primary-color);
  flex-shrink: 0;
}
.ta-corner-community-hub__left h2 {
  margin: 0;
  line-height: 1.25;
}
@media screen and (max-width: 1199px) {
  .ta-corner-community-hub__left h2 br {
    display: none;
  }
}
.ta-corner-community-hub__left h2 mark {
  background-color: transparent;
  color: var(--wp--preset--color--primary-color);
}
.ta-corner-community-hub__left p {
  margin: 0;
}
.ta-corner-community-hub__right {
  width: 50%;
  display: flex;
  justify-content: center;
  background: var(--wp--preset--color--white-color);
  border-radius: 24px;
  border: 1px solid rgba(201, 95, 80, 0.08);
  box-shadow: 0 15px 45px rgba(201, 95, 80, 0.04);
  padding: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .ta-corner-community-hub__right {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .ta-corner-community-hub__right {
    padding: 16px;
  }
}
.ta-corner-community-hub__right figure {
  margin: 0;
  width: 100%;
}
.ta-corner-community-hub__right figure img {
  width: 100% !important;
  height: auto;
  display: block;
}
.ta-corner-community-hub .key-results-count__wrapper {
  margin-top: 60px;
  background: var(--wp--preset--color--white-color);
  border-radius: 100px;
  border: 1px solid rgba(201, 95, 80, 0.08);
  box-shadow: 0 15px 45px rgba(201, 95, 80, 0.04);
  padding: 10px 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .ta-corner-community-hub .key-results-count__wrapper {
    border-radius: 24px;
    padding: 24px;
  }
}
.ta-corner-community-hub .key-results-count__wrapper .key-results-count-row {
  align-items: center;
}
@media screen and (min-width: 767px) {
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-md-3:not(:last-child) .key-results-count,
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-lg-3:not(:last-child) .key-results-count {
    border-right: 3px solid rgba(201, 95, 80, 0.3);
  }
}
@media screen and (max-width: 767px) {
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row {
    margin-left: 0;
    margin-right: 0;
    row-gap: 0;
  }
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-6:nth-child(2n+1) .key-results-count {
    border-right: 2px solid rgba(201, 95, 80, 0.15);
  }
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-6:nth-child(-n+2) .key-results-count {
    border-bottom: 2px solid rgba(201, 95, 80, 0.15);
    padding-bottom: 20px;
  }
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count-row .col-6:nth-child(n+3) .key-results-count {
    padding-top: 20px;
  }
}
.ta-corner-community-hub .key-results-count__wrapper .key-results-count {
  text-align: center;
  padding: 10px;
}
.ta-corner-community-hub .key-results-count__wrapper .key-results-count h3.qrolic-counter {
  font-size: 48px;
  font-weight: 700;
  color: var(--wp--preset--color--primary-color);
  margin: 0 0 4px 0;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count h3.qrolic-counter {
    font-size: 32px;
  }
}
.ta-corner-community-hub .key-results-count__wrapper .key-results-count p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin: 0;
  text-transform: uppercase;
  color: var(--wp--preset--color--secondary-description);
}
@media screen and (max-width: 767px) {
  .ta-corner-community-hub .key-results-count__wrapper .key-results-count p {
    font-size: 10px;
  }
}

@font-face {
  font-family: "fontello";
  src: "/assets/font/fontello-font/font/fontello.woff2" format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "fontawesome";
  src: "/assets/font/fontawesome/webfonts/fa-regular-400.woff2" format("truetype");
  font-display: swap;
}
.ta-corner-hero {
  position: relative;
  z-index: 0;
  background-color: var(--wp--preset--color--white-color);
  overflow: hidden;
}
.ta-corner-hero__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ta-corner-hero__box {
    gap: 16px;
  }
}
.ta-corner-hero__box .tagline {
  font-weight: 700;
  display: inline-block;
  border: 2px solid rgba(201, 95, 80, 0.3215686275);
  padding: 12px 24px 10px 24px;
  background-color: rgba(201, 95, 80, 0.0588235294);
  border-radius: 100px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ta-corner-hero__box .tagline {
    padding: 8px 18px;
  }
}
.ta-corner-hero__box .tagline p {
  margin: 0;
  font-weight: 700;
  color: var(--wp--preset--color--primary-heading);
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 991px) {
  .ta-corner-hero__box .tagline p {
    text-align: center !important;
  }
}
@media screen and (max-width: 1199px) {
  .ta-corner-hero__box h1 br {
    display: none;
  }
}
.ta-corner-hero__filters {
  margin-top: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ta-corner-hero__filters {
    margin-top: 8px;
  }
}
.ta-corner-hero__filters .wp-block-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .ta-corner-hero__filters .wp-block-buttons {
    gap: 8px;
  }
}
.ta-corner-hero__filters .wp-block-button a::before, .ta-corner-hero__filters .wp-block-button a::after {
  display: none !important;
}

/* 
 * Fix for sticky elements in Gutenberg block themes 
 * Gutenberg often applies overflow-x: hidden to wrappers, which breaks position: sticky.
 * Using overflow: clip fixes this on modern browsers.
 */
body,
.wp-site-blocks,
main {
  overflow-x: clip;
}

.rsh-dashboard-container {
  display: flex;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .rsh-dashboard-container {
    flex-direction: column;
  }
}

.rsh-dashboard-sidebar {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 30px 15px;
  flex-shrink: 0;
  /* Sticky Sidebar on Desktop */
}
@media (min-width: 992px) {
  .rsh-dashboard-sidebar {
    position: sticky !important;
    top: 150px !important;
    /* Offset to clear your site header */
    align-self: flex-start;
    z-index: 10;
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar {
    width: 100%;
    padding: 15px 0;
    background: transparent;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar .rsh-dashboard-nav {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for a cleaner look */
  }
  .rsh-dashboard-sidebar .rsh-dashboard-nav::-webkit-scrollbar {
    display: none;
  }
  .rsh-dashboard-sidebar .rsh-dashboard-nav {
    scrollbar-width: none;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li {
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar .rsh-dashboard-nav li {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--wp--preset--color--primary-heading, #1E1E1E);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar .rsh-dashboard-nav li a {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 10px 16px;
    font-size: 14px;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li a i {
  width: 24px;
  margin-right: 12px;
  font-size: 18px;
  color: #777;
  transition: all 0.3s ease;
  text-align: center;
  /* Align icon center */
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar .rsh-dashboard-nav li a i {
    margin-right: 6px;
    font-size: 16px;
    width: auto;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li a:hover, .rsh-dashboard-sidebar .rsh-dashboard-nav li a.active {
  background: rgba(234, 88, 60, 0.08);
  color: var(--wp--preset--color--primary, #ea583c);
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li a:hover i, .rsh-dashboard-sidebar .rsh-dashboard-nav li a.active i {
  color: var(--wp--preset--color--primary, #ea583c);
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li.logout-link {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
@media screen and (max-width: 991px) {
  .rsh-dashboard-sidebar .rsh-dashboard-nav li.logout-link {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li.logout-link a {
  color: var(--wp--preset--color--primary, #ea583c);
}
.rsh-dashboard-sidebar .rsh-dashboard-nav li.logout-link a i {
  color: var(--wp--preset--color--primary, #ea583c);
}

.rsh-dashboard-main {
  flex-grow: 1;
  background: transparent;
  /* Changed from white to transparent to allow individual cards */
  border-radius: 0;
  padding: 0;
  min-height: 600px;
}
@media (max-width: 991px) {
  .rsh-dashboard-main {
    width: 100%;
  }
}
.rsh-dashboard-main .rsh-tab-content {
  animation: rshFadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Spacing between cards */
}

.rsh-dashboard-header {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .rsh-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.rsh-dashboard-header .rsh-header-text h1 {
  font-size: 28px;
  color: var(--wp--preset--color--primary-heading, #1E1E1E);
  margin-bottom: 8px;
  font-weight: 600;
}
.rsh-dashboard-header .rsh-header-text p {
  color: #666;
  font-size: 15px;
  margin: 0;
}
@media (max-width: 767px) {
  .rsh-dashboard-header .rsh-header-action {
    width: 100%;
  }
}
.rsh-dashboard-header .rsh-header-action .rsh-btn-outline {
  border: 1px solid var(--wp--preset--color--primary, #ea583c);
  color: var(--wp--preset--color--primary, #ea583c);
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .rsh-dashboard-header .rsh-header-action .rsh-btn-outline {
    width: 100%;
  }
}
.rsh-dashboard-header .rsh-header-action .rsh-btn-outline:hover {
  background: var(--wp--preset--color--primary, #ea583c);
  color: #fff;
}

/* Profile Display Card Styles */
.rsh-profile-display-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 767px) {
  .rsh-profile-display-card {
    padding: 20px;
  }
}
.rsh-profile-display-card .rsh-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .rsh-profile-display-card .rsh-profile-header {
    flex-direction: column;
    gap: 20px;
  }
}
.rsh-profile-display-card .rsh-profile-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rsh-profile-display-card .rsh-profile-avatar-wrap .rsh-avatar-circle {
  width: 90px;
  height: 90px;
  background: #d88970;
  /* Soft terra-cotta */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 400;
}
.rsh-profile-display-card .rsh-profile-avatar-wrap .rsh-profile-titles h2 {
  margin: 0 0 5px 0;
  font-size: 28px;
  color: var(--wp--preset--color--primary-heading, #1E1E1E);
}
.rsh-profile-display-card .rsh-profile-avatar-wrap .rsh-profile-titles p {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #555;
}
.rsh-profile-display-card .rsh-profile-avatar-wrap .rsh-profile-titles p.rsh-email {
  color: #777;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rsh-profile-display-card .rsh-divider {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 30px 0;
}
.rsh-profile-display-card .rsh-info-section h3 {
  font-size: 18px;
  color: var(--wp--preset--color--primary-heading, #1E1E1E);
  margin-bottom: 25px;
  font-weight: 600;
}
.rsh-profile-display-card .rsh-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.rsh-profile-display-card .rsh-info-grid .rsh-info-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: baseline;
}
@media (max-width: 767px) {
  .rsh-profile-display-card .rsh-info-grid .rsh-info-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.rsh-profile-display-card .rsh-info-grid .rsh-info-row .rsh-info-label {
  color: #666;
  font-size: 14px;
}
.rsh-profile-display-card .rsh-info-grid .rsh-info-row .rsh-info-value {
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

/* Dashboard Home Styles */
.rsh-profile-completion-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.rsh-profile-completion-card .completion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.rsh-profile-completion-card .completion-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.rsh-profile-completion-card .completion-header .completion-percentage {
  font-weight: 600;
  color: var(--wp--preset--color--primary, #ea583c);
}
.rsh-profile-completion-card .completion-bar-wrap {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.rsh-profile-completion-card .completion-bar-wrap .completion-bar-fill {
  height: 100%;
  background: var(--wp--preset--color--primary, #ea583c);
  border-radius: 4px;
  transition: width 1s ease;
}
.rsh-profile-completion-card .completion-hint {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.rsh-dashboard-section-title {
  font-size: 20px;
  color: #1E1E1E;
  margin-bottom: 20px;
  font-weight: 600;
}

.rsh-dashboard-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.rsh-dashboard-widgets .rsh-widget-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rsh-dashboard-widgets .rsh-widget-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.rsh-dashboard-widgets .rsh-widget-card .widget-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.rsh-dashboard-widgets .rsh-widget-card h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}
.rsh-dashboard-widgets .rsh-widget-card p {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.rsh-dashboard-widgets .rsh-widget-card .widget-link {
  color: var(--wp--preset--color--primary, #ea583c);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.rsh-dashboard-widgets .rsh-widget-card .widget-link:hover {
  color: rgb(219.375, 55.125, 23.625);
}

/* Edit Profile Form Styles */
.rsh-profile-form {
  background: #fff;
}
.rsh-profile-form .rsh-form-section-title {
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 20px;
  font-weight: 600;
}
.rsh-profile-form .rsh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .rsh-profile-form .rsh-form-grid {
    grid-template-columns: 1fr;
  }
}
.rsh-profile-form .form-group {
  display: flex;
  flex-direction: column;
}
.rsh-profile-form .form-group.full-width {
  grid-column: 1/-1;
}
.rsh-profile-form .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}
.rsh-profile-form .form-group .rsh-input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.rsh-profile-form .form-group .rsh-input:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary, #ea583c);
  box-shadow: 0 0 0 3px rgba(234, 88, 60, 0.1);
}
.rsh-profile-form .form-group .rsh-input.readonly {
  background-color: #f9f9f9;
  color: #888;
  cursor: not-allowed;
}
.rsh-profile-form .rsh-form-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.rsh-profile-form .rsh-form-actions .rsh-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rsh-profile-form .rsh-form-actions .rsh-form-message {
  font-size: 14px;
  font-weight: 500;
}
.rsh-profile-form .rsh-form-actions .rsh-form-message.success {
  color: #2e7d32;
}
.rsh-profile-form .rsh-form-actions .rsh-form-message.error {
  color: #d32f2f;
}

.rsh-tab-resources .rsh-profile-header {
  margin-bottom: 30px;
}
.rsh-tab-resources .rsh-profile-header p {
  color: #666;
}
.rsh-tab-resources .rsh-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .rsh-tab-resources .rsh-resources-grid {
    grid-template-columns: 1fr;
  }
}
.rsh-tab-resources .rsh-resource-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  background: #fff;
}
.rsh-tab-resources .rsh-resource-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.rsh-tab-resources .rsh-resource-card .resource-icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rsh-tab-resources .rsh-resource-card .resource-icon-wrap .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.rsh-tab-resources .rsh-resource-card .resource-icon-wrap .status-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.rsh-tab-resources .rsh-resource-card .resource-icon-wrap .status-badge.publish {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.rsh-tab-resources .rsh-resource-card .resource-icon-wrap .status-badge.pending, .rsh-tab-resources .rsh-resource-card .resource-icon-wrap .status-badge.draft {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.rsh-tab-resources .rsh-resource-card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rsh-tab-resources .rsh-resource-card .date {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 20px 0;
}
.rsh-tab-resources .rsh-resource-card .actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #f3f4f6;
}
.rsh-tab-resources .rsh-resource-card .actions a {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}
.rsh-tab-resources .rsh-resource-card .actions a.btn-edit {
  background: #f9fafb;
  color: #374151;
}
.rsh-tab-resources .rsh-resource-card .actions a.btn-edit:hover {
  background: #e5e7eb;
}
.rsh-tab-resources .rsh-resource-card .actions a.btn-view {
  background: rgba(234, 88, 60, 0.08);
  color: var(--wp--preset--color--primary, #ea583c);
}
.rsh-tab-resources .rsh-resource-card .actions a.btn-view:hover {
  background: rgba(234, 88, 60, 0.15);
}
.rsh-tab-resources .rsh-empty-state {
  text-align: center;
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
}
.rsh-tab-resources .rsh-empty-state i {
  font-size: 40px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.rsh-tab-resources .rsh-empty-state h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #374151;
}
.rsh-tab-resources .rsh-empty-state p {
  color: #6b7280;
  margin: 0 0 20px 0;
  font-size: 15px;
}
.rsh-tab-resources .rsh-empty-state .rsh-btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--wp--preset--color--primary, #ea583c);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}
.rsh-tab-resources .rsh-empty-state .rsh-btn-primary:hover {
  background: rgb(219.375, 55.125, 23.625);
  color: #fff;
}

@keyframes rshFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-page__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .blog-page__hero {
    gap: 15px;
  }
}
.blog-page__hero--sub-tittle {
  padding: 8px 29px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .blog-page__hero--description br {
    display: none;
  }
}
.blog-page__latest-blog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-page__latest-blog--section-header .is-style-subtitles {
  justify-content: center;
  margin-bottom: 12px;
  align-items: center;
}

.error-page__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .error-page__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .error-page__inner {
    gap: 15px;
  }
}
.error-page__inner .error-page__image {
  max-width: 520px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.error-page__inner .error-page__image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}
.error-page__inner h2 {
  margin-bottom: 20px;
  color: #111827;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .error-page__inner h2 {
    margin-bottom: 15px;
  }
}
.error-page__inner p {
  color: #6B7280;
  margin-bottom: 40px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .error-page__inner p {
    margin-bottom: 30px;
  }
}
.error-page__inner .wp-block-buttons {
  display: flex;
  justify-content: center;
}
.error-page__inner .wp-block-button__link {
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .error-page__inner .wp-block-button__link {
    padding: 12px 30px;
  }
}

/* ============================================================
   RSH Login / Register / Forgot Password Popup
   Save as: /assets/css/login-popup.css
   ============================================================ */
/* ── Overlay ── */
.rsh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.rsh-overlay.rsh-open {
  opacity: 1;
  visibility: visible;
}

/* ── Card ── */
.rsh-card {
  position: relative;
  background: var(--wp--preset--color--white-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 420px;
  padding: 36px 40px 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transform: translateY(16px);
  transition: transform 0.28s ease;
}

.rsh-overlay.rsh-open .rsh-card {
  transform: translateY(0);
}

/* ── Close Button ── */
.rsh-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.rsh-close:hover {
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--primary-color);
}

/* ── Panel visibility ── */
.rsh-panel {
  display: block;
}

.rsh-hidden {
  display: none;
}

/* ── Header ── */
.rsh-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rsh-header h2 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 6px;
  line-height: 1.2;
}

.rsh-header h2 span {
  color: var(--wp--preset--color--primary-color);
}

.rsh-header p {
  display: block;
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* ── Message banner ── */
.rsh-msg {
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: none;
  padding: 10px 14px;
}

.rsh-msg.rsh-error {
  display: block;
  background: var(--wp--preset--color--primary-background);
  border: 1px solid #ffc5bc;
  color: var(--wp--preset--color--primary-color);
}

.rsh-msg.rsh-success {
  display: block;
  background: var(--wp--preset--color--primary-background);
  border: 1px solid #b7ebc8;
  color: #1e7e34;
}

.rsh-msg a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Form field ── */
.rsh-field {
  margin-bottom: 18px;
}

.rsh-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.rsh-field input[type=email],
.rsh-field input[type=password],
.rsh-field input[type=text] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.rsh-field input:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.12);
  background: var(--wp--preset--color--white-color);
}

/* ── Password wrapper ── */
.rsh-pw-wrap {
  position: relative;
}

.rsh-pw-wrap input {
  padding-right: 42px;
}

.rsh-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #aaa;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.rsh-eye:hover {
  color: var(--wp--preset--color--primary-color);
}

.rsh-eye svg {
  width: 18px;
  height: 18px;
}

/* ── Remember / Forgot row ── */
.rsh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rsh-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: normal;
}

.rsh-check input[type=checkbox] {
  accent-color: var(--wp--preset--color--primary-color);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 0 0 0;
  padding: 0;
  transform: translateY(1.5px);
}

/* ── Links ── */
.rsh-link {
  text-decoration: none;
  transition: opacity 0.2s;
}

.rsh-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.rsh-accent {
  color: var(--wp--preset--color--primary-color);
  font-weight: 600;
}

.rsh-forgot {
  font-size: 13px;
  color: var(--wp--preset--color--primary-color);
  font-weight: 500;
}

/* ── Primary Button ── */
.rsh-btn {
  width: 100%;
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
}

.rsh-btn:hover {
  opacity: 0.9;
}

.rsh-btn:active {
  transform: scale(0.98);
}

.rsh-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.rsh-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Loading spinner inside button */
.rsh-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--wp--preset--color--white-color);
  border-radius: 50%;
  animation: rshSpin 0.7s linear infinite;
}

.rsh-btn.rsh-loading .rsh-btn-text {
  opacity: 0.6;
}

.rsh-btn.rsh-loading .rsh-spinner {
  display: inline-block;
}

.rsh-btn.rsh-loading svg {
  display: none;
}

@keyframes rshSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ── Or divider ── */
.rsh-panel form {
  margin-bottom: 0;
}

.rsh-or {
  position: relative;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 17px;
}

.rsh-or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #eee;
}

.rsh-or span {
  position: relative;
  background: var(--wp--preset--color--white-color);
  padding: 0 12px;
  font-size: 13px;
  color: #aaa;
}

/* ── Social Buttons ── */
.rsh-social {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wp--preset--color--black-color);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 10px;
}

.rsh-social:hover {
  background: var(--wp--preset--color--primary-background);
  border-color: var(--wp--preset--color--border-color-light);
}

/* ── Footer text ── */
.rsh-footer {
  text-align: center;
  font-size: 14px;
  color: var(--wp--preset--color--secondary-description);
  margin: 16px 0 0;
}

/* ── Responsive ── */
@media screen and (max-width: 425px) {
  .rsh-card {
    padding: 28px 22px 24px;
    border-radius: 12px;
  }
  .rsh-header h2 {
    font-size: 22px;
  }
}
/* ── MULTI-STEP FORM STYLES ── */
.rsh-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.rsh-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--secondary-description);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.rsh-step-dot.active {
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}

.rsh-step-line {
  height: 2px;
  width: 40px;
  background: var(--wp--preset--color--primary-background);
  margin: 0 8px;
}

.rsh-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 16px;
  text-align: left;
}

.rsh-step-sub {
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  margin: -10px 0 16px 0;
}

.rsh-row-2 {
  display: flex;
  gap: 16px;
}

.rsh-row-2 .rsh-field {
  flex: 1;
}

.rsh-field select,
.rsh-field textarea,
.rsh-field input[type=tel],
.rsh-field input[type=url] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--wp--preset--color--secondary-description);
  background: var(--wp--preset--color--primary-background);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.rsh-field select:focus,
.rsh-field textarea:focus,
.rsh-field input[type=tel]:focus,
.rsh-field input[type=url]:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.12);
  background: #fff;
}

.rsh-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--wp--preset--color--primary-background);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  max-height: 200px;
  overflow-y: auto;
}

.rsh-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.rsh-checkbox-grid input[type=checkbox] {
  accent-color: #C96753;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.rsh-consent {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rsh-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--wp--preset--color--secondary-description);
  cursor: pointer;
  line-height: 1.4;
}

.rsh-consent input[type=checkbox] {
  accent-color: var(--wp--preset--color--primary-color);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rsh-consent a {
  color: var(--wp--preset--color--primary-color);
  text-decoration: none;
}

.rsh-consent a:hover {
  text-decoration: underline;
}

.rsh-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--wp--preset--color--border-color-light);
}

.rsh-btn-outline {
  background: transparent;
  border: 1px solid var(--wp--preset--color--border-color-light);
  color: var(--wp--preset--color--secondary-description);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.rsh-btn-outline:hover {
  background: var(--wp--preset--color--primary-background);
  border-color: var(--wp--preset--color--border-color-primary);
}

.rsh-btn-next {
  margin-left: auto;
  width: auto;
  padding: 12px 28px;
}

.rsh-error-field {
  border-color: var(--wp--preset--color--border-color-primary);
  background: var(--wp--preset--color--white-color);
}

.rsh-card {
  max-height: 90vh;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .rsh-row-2 {
    flex-direction: column;
    gap: 0;
  }
  .rsh-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
/* ── WIZARD SPECIFIC STYLES ── */
.rsh-wizard-header {
  text-align: center;
  margin-bottom: 24px;
}

.rsh-wizard-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.rsh-wizard-title-area h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 10px;
  line-height: 1.2;
}

.rsh-wizard-title-area h2 span {
  color: var(--wp--preset--color--primary-color);
}

.rsh-wizard-title-area p {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.rsh-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.rsh-step-indicator {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--secondary-description);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-indent: 0;
  box-sizing: border-box;
}

.rsh-step-indicator.active {
  background: #C96753;
  color: #fff;
}

.rsh-step-line {
  height: 2px;
  flex: 1;
  background: #e2e2e2;
  margin: 0 8px;
}

.rsh-step-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  text-align: left;
}

.rsh-step-desc {
  font-size: 13.5px;
  color: #666;
  margin: 0 0 20px 0;
}

.rsh-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rsh-actions-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}

.rsh-btn-back {
  background: transparent;
  border: 1px solid #ddd;
  color: #555;
  width: auto;
  padding: 12px 24px;
  flex: 0 0 auto;
}

.rsh-btn-back:hover {
  background: #f5f5f5;
}

.rsh-actions-split .rsh-btn,
.rsh-actions-split button[type=submit] {
  flex: 1;
}

.rsh-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fafafa;
  padding: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

.rsh-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  line-height: normal;
}

.rsh-checkbox-group input {
  accent-color: #C96753;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 0 0 0;
  padding: 0;
  transform: translateY(1.5px);
}

.rsh-multi-select {
  height: 120px;
}

@media screen and (max-width: 767px) {
  .rsh-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rsh-checkbox-group {
    grid-template-columns: 1fr;
  }
}
.quality .quality__inner {
  max-width: 1500px;
  margin: 0 auto;
}
.quality .row {
  --bs-gutter-x: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality .col-lg-7,
.quality .col-lg-5 {
  display: flex;
}
.quality__video-overlay {
  display: flex;
  gap: 12px;
  position: absolute;
  align-items: center;
  bottom: 70px;
  right: 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.52);
  border-radius: 13px 0 0 13px;
}
@media screen and (max-width: 575px) {
  .quality__video-overlay {
    display: none;
  }
}
.quality__box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 16px;
}
@media screen and (max-width: 575px) {
  .quality__box-wrapper {
    padding-top: 22px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 425px) {
  .quality__box-wrapper {
    gap: 16px;
  }
}
.quality__left {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quality__left .wp-block-video {
  width: 90%;
  max-width: 800px;
  margin: 0 auto !important;
  border-radius: 16px;
  overflow: hidden;
}
.quality__left .wp-block-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.quality__left .wp-block-embed {
  width: 90%;
  max-width: 800px;
  margin: 0 auto !important;
}
.quality__left .wp-block-embed .wp-block-embed__wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  justify-content: center;
}
.quality__left .wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}
.quality__left iframe {
  width: 90%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  display: block;
  margin: 0 auto !important;
}
.quality__box {
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}
.quality__box:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.quality__box:hover .quality__icon {
  background: var(--wp--preset--color--primary-color, #c95f50);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(201, 95, 80, 0.2);
}
.quality__box p {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--wp--preset--color--secondary-description, #263238) !important;
  line-height: 1.5;
}
@media screen and (max-width: 425px) {
  .quality__box {
    padding: 16px;
  }
}
.quality__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(201, 95, 80, 0.08);
  color: var(--wp--preset--color--primary-color, #c95f50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.quality__icon svg {
  width: 20px;
  height: 20px;
}
.quality h2 {
  margin: 0 0 16px 0;
}
@media screen and (max-width: 1199px) {
  .quality h2 {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 991px) {
  .quality h2 {
    margin: 12px 0 12px 0;
  }
}
@media screen and (max-width: 1199px) {
  .quality__right {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .quality__right {
    width: 100%;
    padding: var(--wp--preset--spacing--section-padding) var(--wp--preset--spacing--horizontal-padding);
  }
}

.advisory-zigzag img {
  width: 100%;
  border-radius: 20px;
}
.advisory-zigzag .row {
  --bs-gutter-x: 50px;
}
@media screen and (max-width: 1199px) {
  .advisory-zigzag .row {
    --bs-gutter-x: 30px;
  }
}
@media screen and (max-width: 991px) {
  .advisory-zigzag .row {
    gap: 34px 0;
  }
}
.advisory-zigzag__left {
  height: 100%;
}
.advisory-zigzag__left figure, .advisory-zigzag__left img {
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .advisory-zigzag__left figure, .advisory-zigzag__left img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.advisory-zigzag__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .advisory-zigzag__right {
    gap: 14px;
  }
}
.advisory-zigzag__right h3 {
  margin-bottom: 10px;
}
.advisory-zigzag__right h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--wp--preset--color--primary-color);
}
.advisory-zigzag__right p {
  font-size: var(--wp--preset--font-size--description-md);
}

/* =========================================
   Add Job Popup - Premium 2-Column Design
   ========================================= */
/* ── Overlay ── */
.rsh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rsh-overlay.rsh-open {
  opacity: 1;
  visibility: visible;
}

/* ── Panel Container ── */
.rsh-panel-container {
  background: var(--wp--preset--color--white-color);
  width: 100%;
  max-width: 1040px;
  /* Wide layout for 2 columns */
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* So sidebar background respects border-radius */
}

.rsh-overlay.rsh-open .rsh-panel-container {
  transform: translateY(0);
  opacity: 1;
}

/* ── Close Button ── */
.rsh-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--wp--preset--color--white-color);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: var(--wp--preset--color--secondary-description);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.rsh-close:hover {
  background: #ffe0dc;
  color: var(--wp--preset--color--primary-color);
}

/* ── Columns Layout ── */
.rsh-modal-columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-height: 90vh;
}

.rsh-modal-main {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}

.rsh-modal-sidebar {
  width: 320px;
  background: #faf5f2;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #f0e6e1;
  overflow-y: auto;
}

/* ── Left Side: Header & Progress ── */
.rsh-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .rsh-header {
    justify-content: center;
  }
}
.rsh-header .rsh-header-icon {
  width: 48px;
  height: 48px;
  background: #ffebe5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rsh-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 4px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .rsh-header h2 {
    text-align: center;
  }
}
.rsh-header p {
  font-size: 14px;
  color: var(--wp--preset--color--primary-description);
  margin: 0;
}
@media screen and (max-width: 991px) {
  .rsh-header p {
    text-align: center;
  }
}

.aj-wizard-progress {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--wp--preset--color--border-color-light);
}

.aj-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 400px;
  margin: 0 auto 30px auto;
}

.aj-step-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.aj-step-circle {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--secondary-description);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.aj-step-circle.active {
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  box-shadow: 0 0 0 4px rgba(201, 103, 83, 0.15);
}
.aj-step-circle.completed {
  background: var(--wp--preset--color--white-color);
  color: var(--wp--preset--color--primary-color);
  border: 2px solid var(--wp--preset--color--primary-color);
}

.aj-step-label {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  text-align: center;
  font-size: 11px;
  color: var(--wp--preset--color--secondary-description);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.aj-step-label.active {
  color: var(--wp--preset--color--primary-color);
}

.aj-step-line {
  flex: 1;
  height: 2px;
  background: var(--wp--preset--color--primary-background);
  margin: 0 8px;
  transition: all 0.3s ease;
}
.aj-step-line.active {
  background: var(--wp--preset--color--primary-color);
}

/* ── Wizard Animations ── */
.rsh-wizard-step {
  animation: rshFadeIn 0.3s ease forwards;
}

@keyframes rshFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Form Layout ── */
.rsh-row-2 {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.rsh-row-2 > .rsh-field {
  flex: 1;
  margin-bottom: 0;
}

.rsh-field {
  margin-bottom: 20px;
  position: relative;
}
.rsh-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary-description);
  margin-bottom: 8px;
}
.rsh-field label span.required {
  color: var(--wp--preset--color--primary-color);
}
.rsh-field label span:not(.required) {
  font-size: 12px;
  white-space: nowrap;
}
.rsh-field input[type=text],
.rsh-field input[type=email],
.rsh-field input[type=url],
.rsh-field input[type=number],
.rsh-field select,
.rsh-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--wp--preset--color--primary-description);
  background: var(--wp--preset--color--white-color);
  box-sizing: border-box;
  transition: all 0.2s ease;
  font-family: inherit;
}
.rsh-field input[type=text]:focus,
.rsh-field input[type=email]:focus,
.rsh-field input[type=url]:focus,
.rsh-field input[type=number]:focus,
.rsh-field select:focus,
.rsh-field textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.1);
}
.rsh-field input[type=text]::-moz-placeholder, .rsh-field input[type=email]::-moz-placeholder, .rsh-field input[type=url]::-moz-placeholder, .rsh-field input[type=number]::-moz-placeholder, .rsh-field select::-moz-placeholder, .rsh-field textarea::-moz-placeholder {
  color: #aaa;
}
.rsh-field input[type=text]::placeholder,
.rsh-field input[type=email]::placeholder,
.rsh-field input[type=url]::placeholder,
.rsh-field input[type=number]::placeholder,
.rsh-field select::placeholder,
.rsh-field textarea::placeholder {
  color: #aaa;
}
.rsh-field .rsh-file-input {
  padding: 9px 12px;
  border: 1px dashed #ccc;
  cursor: pointer;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  height: 60%;
}
.rsh-field .rsh-file-input:hover {
  border-color: var(--wp--preset--color--primary-color);
}

/* Input with Icon */
.rsh-input-with-icon {
  position: relative;
}
.rsh-input-with-icon > svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  z-index: 2;
}
.rsh-input-with-icon input,
.rsh-input-with-icon select {
  padding-left: 42px !important;
  height: 48px;
  /* Force uniform height for inputs with icons */
}
.rsh-input-with-icon .rsh-custom-select {
  position: relative;
  z-index: 1;
}

/* ── Add New Term UI ── */
.rsh-add-new-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 8px;
  background: var(--wp--preset--color--white-color);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.rsh-add-new-wrap:focus-within {
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.1);
}
.rsh-add-new-wrap input,
.rsh-add-new-wrap input[type=text] {
  flex: 1;
  margin: 0;
  border: none !important;
  border-radius: 0;
  padding: 10px 14px;
  background: transparent !important;
  box-shadow: none !important;
  height: 44px;
}
.rsh-add-new-wrap input:focus,
.rsh-add-new-wrap input[type=text]:focus {
  outline: none;
  border: none !important;
  box-shadow: none !important;
}
.rsh-add-new-wrap input:-webkit-autofill, .rsh-add-new-wrap input:-webkit-autofill:hover, .rsh-add-new-wrap input:-webkit-autofill:focus, .rsh-add-new-wrap input:-webkit-autofill:active,
.rsh-add-new-wrap input[type=text]:-webkit-autofill,
.rsh-add-new-wrap input[type=text]:-webkit-autofill:hover,
.rsh-add-new-wrap input[type=text]:-webkit-autofill:focus,
.rsh-add-new-wrap input[type=text]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--wp--preset--color--white-color) inset !important;
  -webkit-text-fill-color: var(--wp--preset--color--primary-description) !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.rsh-add-new-wrap .rsh-add-new-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: #f8efeb;
  color: var(--wp--preset--color--primary-color);
  cursor: pointer;
  transition: 0.2s;
}
.rsh-add-new-wrap .rsh-add-new-btn:hover {
  background: var(--wp--preset--color--primary-color);
  color: #fff;
}

/* ── Radio Cards (Work Mode) ── */
.rsh-radio-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rsh-radio-card {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
}
.rsh-radio-card input[type=radio] {
  display: none;
}
.rsh-radio-card .rsh-radio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.rsh-radio-card .rsh-radio-content svg {
  flex-shrink: 0;
  color: #aaa;
  transition: all 0.2s ease;
}
.rsh-radio-card input[type=radio]:checked + .rsh-radio-content {
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
  background: #fffafa;
  box-shadow: 0 2px 8px rgba(201, 103, 83, 0.1);
}
.rsh-radio-card input[type=radio]:checked + .rsh-radio-content svg {
  color: var(--wp--preset--color--primary-color);
}
.rsh-radio-card:hover input[type=radio]:not(:checked) + .rsh-radio-content {
  border-color: var(--wp--preset--color--primary-color);
  background: var(--wp--preset--color--primary-background);
}

/* ── Skill Pills ── */
.rsh-skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px;
}

.rsh-skill-pill {
  cursor: pointer;
}
.rsh-skill-pill input[type=checkbox] {
  display: none;
}
.rsh-skill-pill .rsh-pill-text {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  transition: all 0.2s ease;
}
.rsh-skill-pill input[type=checkbox]:checked + .rsh-pill-text {
  background: #fffafa;
  border-color: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--primary-color);
}
.rsh-skill-pill:hover input[type=checkbox]:not(:checked) + .rsh-pill-text {
  background: #eaeaea;
}

/* Tip Box */
.rsh-tip-box {
  background: #fff5f2;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}
.rsh-tip-box svg {
  color: var(--wp--preset--color--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.rsh-tip-box span {
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  line-height: 1.5;
}
.rsh-tip-box span strong {
  color: var(--wp--preset--color--primary-color);
}

/* ── Wizard Actions ── */
.rsh-wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  width: 100%;
  gap: 16px;
}
.rsh-wizard-actions.right-align {
  justify-content: flex-end;
}
.rsh-wizard-actions button {
  width: auto;
  flex: 0 0 auto;
}
.rsh-wizard-actions .rsh-btn-cancel {
  background: transparent;
  border: 1px solid var(--wp--preset--color--border-color-light);
  color: var(--wp--preset--color--secondary-description);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.rsh-wizard-actions .rsh-btn-cancel:hover {
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--black-color);
}

/* Primary Button */
.rsh-btn {
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: 0;
}
.rsh-btn:hover {
  background: #b55643;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 103, 83, 0.2);
}
.rsh-btn:active {
  transform: translateY(0);
}

.rsh-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--wp--preset--color--white-color);
  border-radius: 50%;
  animation: rsh-spin 0.7s linear infinite;
  display: none;
  /* Hidden by default, shown only when .rsh-loading is active */
}

.rsh-btn.rsh-loading .rsh-spinner {
  display: inline-block;
}

@keyframes rsh-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ── Right Side: Sidebar ── */
.rsh-sidebar-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 32px;
  display: block;
}

.rsh-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.rsh-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rsh-benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--wp--preset--color--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 103, 83, 0.15);
}

.rsh-benefit-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 4px;
}
.rsh-benefit-text p {
  font-size: 12px;
  color: var(--wp--preset--color--primary-description);
  margin: 0;
  line-height: 1.5;
}

.rsh-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #f0e6e1;
  font-size: 12px;
  color: var(--wp--preset--color--secondary-description);
}
.rsh-secure-badge svg {
  color: var(--wp--preset--color--primary-color);
}

/* ── Message Banner ── */
.rsh-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}
.rsh-msg.rsh-show {
  display: block;
  animation: rshFadeIn 0.3s ease forwards;
}
.rsh-msg.rsh-error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}
.rsh-msg.rsh-success {
  background: #f0fff4;
  color: #2f855a;
  border: 1px solid #c6f6d5;
}

/* ── Responsive ── */
@media screen and (max-width: 991px) {
  .rsh-modal-columns {
    flex-direction: column;
  }
  .rsh-modal-sidebar {
    display: none;
  }
  .rsh-modal-main {
    padding: 32px 24px;
  }
  .rsh-row-2 {
    flex-direction: column;
    gap: 0;
  }
  .rsh-row-2 > .rsh-field {
    margin-bottom: 20px;
  }
  .rsh-row-2 > .rsh-field:last-child {
    margin-bottom: 0;
  }
  .rsh-radio-cards {
    gap: 10px;
  }
  .rsh-radio-card {
    min-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
  }
  .aj-step-indicator {
    width: 50%;
  }
}
@media screen and (max-width: 991px) and (max-width: 425px) {
  .aj-step-indicator {
    width: 65%;
  }
}
/* ── Custom Select Dropdowns ── */
.rsh-custom-select {
  position: relative;
  width: 100%;
}
.rsh-custom-select .rsh-custom-select-trigger {
  padding: 12px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #333;
  height: 48px;
  transition: all 0.2s ease;
}
.rsh-custom-select .rsh-custom-select-trigger .rsh-chevron {
  color: #999;
  transition: transform 0.2s ease;
}
.rsh-custom-select.is-open {
  z-index: 100;
}
.rsh-custom-select.is-open .rsh-custom-select-trigger {
  border-color: #c96753;
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.1);
}
.rsh-custom-select.is-open .rsh-custom-select-trigger .rsh-chevron {
  transform: rotate(180deg);
}
.rsh-custom-select.has-icon .rsh-custom-select-trigger {
  padding-left: 42px !important;
}
.rsh-custom-select .rsh-custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  /* Custom scrollbar */
}
.rsh-custom-select .rsh-custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.rsh-custom-select .rsh-custom-select-options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.rsh-custom-select.is-open .rsh-custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rsh-custom-select .rsh-custom-option {
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.1s ease;
}
.rsh-custom-select .rsh-custom-option:hover {
  background: #fdf5f3;
  color: #c96753;
}
.rsh-custom-select .rsh-custom-option.selected {
  background: #faf5f2;
  font-weight: 600;
  color: #c96753;
}

/* =========================================
   Add Job CTA Block
   ========================================= */
.add-job-section {
  position: relative;
  z-index: 1;
}

.rsh-cta-hero {
  background-color: #fff9f6;
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  /* Dotted Background Pattern */
}
.rsh-cta-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#e0d4cf 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.rsh-cta-hero {
  /* Soft Circle Overlays */
}
.rsh-cta-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 103, 83, 0.1);
  z-index: 0;
  pointer-events: none;
}
.rsh-cta-hero > .wp-block-columns {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .rsh-cta-hero {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .rsh-cta-hero {
    padding: 30px 15px;
    border-radius: 20px;
  }
  .rsh-cta-hero::after {
    display: none;
    /* Hide circle overlays on small screens to save space/performance */
  }
}

.rsh-cta-badge-wrap {
  display: inline-flex !important;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 8px;
  background: #fff5f2;
  border: 1px solid rgba(201, 103, 83, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.rsh-cta-badge-wrap svg {
  color: #c96753;
}
.rsh-cta-badge-wrap .rsh-cta-badge-text {
  margin: 0;
  color: #c96753;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rsh-cta-heading {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 16px;
}
@media screen and (max-width: 1199px) {
  .rsh-cta-heading br {
    display: none;
  }
}
.rsh-cta-heading span {
  color: #c96753;
}

.rsh-cta-desc {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.rsh-cta-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
  /* Assuming shortcode outputs a button, ensure it inherits premium styling */
}
.rsh-cta-action-row .wp-block-button,
.rsh-cta-action-row .wp-block-button__link,
.rsh-cta-action-row .rsh-add-job-trigger {
  width: auto !important;
  margin: 0 !important;
}
.rsh-cta-action-row .wp-block-button__link,
.rsh-cta-action-row .rsh-add-job-trigger {
  display: inline-flex !important;
  background: #c96753;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 103, 83, 0.2);
  white-space: nowrap;
}
.rsh-cta-action-row .wp-block-button__link:hover,
.rsh-cta-action-row .rsh-add-job-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 103, 83, 0.3);
  background: #b55643;
}
.rsh-cta-action-row .rsh-cta-arrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rsh-cta-action-row .rsh-cta-arrow-wrap .rsh-cta-arrow {
  width: 60px;
  height: 30px;
}
.rsh-cta-action-row .rsh-cta-arrow-wrap .rsh-cta-arrow-text {
  color: #c96753;
  font-size: 16px;
  font-weight: 600;
  font-family: "Caveat", cursive, sans-serif;
  /* Fallback for handwritten */
  transform: rotate(-5deg);
}

.rsh-cta-illustration {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  /* Space between text and image on mobile */
}
@media (max-width: 991px) {
  .rsh-cta-illustration {
    display: none !important;
  }
}
.rsh-cta-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: inline-block;
  /* Optional floating animation */
  animation: rshFloat 6s ease-in-out infinite;
}

@keyframes rshFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.membership__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(94.89deg, rgba(201, 95, 80, 0.05) -46.3%, rgba(201, 95, 80, 0.05) 48.83%, rgba(201, 95, 80, 0.05) 129.4%);
  border-radius: 41px;
  position: relative;
  overflow: hidden;
  padding: var(--wp--preset--spacing--section-padding) 20px;
}
@media screen and (max-width: 767px) {
  .membership__box {
    gap: 18px;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box br {
    display: none;
  }
}
.membership__box::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 260px;
  height: 260px;
  background: url("../image/membership-open-2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .membership__box::before {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box::before {
    width: 100px;
    height: 100px;
  }
}
.membership__box::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 260px;
  height: 260px;
  background: url("../image/membership-open.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .membership__box::after {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .membership__box::after {
    width: 100px;
    height: 100px;
  }
}
.membership__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.membership__btn {
  display: flex;
  justify-content: center;
  gap: 23px;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .membership__btn {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
   BM Login / Register / Forgot Password Popup
   Save as: /assets/css/login-popup.css
   ============================================================ */
/* ── Overlay ── */
.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.bm-overlay.bm-open {
  opacity: 1;
  visibility: visible;
}

/* ── Card ── */
.bm-card {
  position: relative;
  background: var(--wp--preset--color--white-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 500px;
  min-height: 420px;
  padding: 40px 48px 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transform: translateY(16px);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.bm-overlay.bm-open .bm-card {
  transform: translateY(0);
}

/* ── Close Button ── */
.bm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.bm-close:hover {
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--primary-color);
}

/* ── Panel visibility ── */
.bm-panel {
  display: block;
}

.bm-hidden {
  display: none;
}

/* ── Header ── */
.bm-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bm-header h2 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 12px;
  line-height: 1.3;
}

.bm-header h2 br,
.bm-wizard-title-area h2 br,
.wpcf7 h2 br {
  display: none !important;
}

.bm-header h2 span,
.bm-wizard-title-area h2 span,
.wpcf7 h2 span {
  color: var(--wp--preset--color--primary-color);
  margin-left: 5px;
}

.bm-header p {
  display: block;
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.5;
  text-wrap: balance;
}

/* ── Message banner ── */
.bm-msg {
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: none;
  padding: 10px 14px;
}

.bm-msg.bm-error {
  display: block;
  background: var(--wp--preset--color--primary-background);
  border: 1px solid #ffc5bc;
  color: var(--wp--preset--color--primary-color);
}

.bm-msg.bm-success {
  display: block;
  background: var(--wp--preset--color--primary-background);
  border: 1px solid #b7ebc8;
  color: #1e7e34;
}

.bm-msg a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Form field ── */
.bm-field {
  margin-bottom: 18px;
}

.wpcf7 p,
.bm-field p {
  margin-bottom: 0 !important;
}

.bm-field br,
.wpcf7 br {
  display: none !important;
}

.wpcf7 p:empty,
.wpcf7 p:has(br:only-child) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Also handle empty spacing blocks often output by CF7 */
.wpcf7-form > p:not(:has(input, select, textarea, label, span, button)) {
  display: none !important;
  margin: 0 !important;
}

.bm-field label,
.wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.bm-field input,
.wpcf7 input,
.bm-field textarea,
.wpcf7 textarea,
.bm-field select,
.wpcf7 select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.bm-field input:focus,
.wpcf7 input:focus,
.bm-field textarea:focus,
.wpcf7 textarea:focus,
.bm-field select:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.12);
  background: var(--wp--preset--color--white-color);
}

/* ── Password wrapper ── */
.bm-pw-wrap {
  position: relative;
}

.bm-pw-wrap input {
  padding-right: 42px;
}

.bm-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #aaa;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.bm-eye:hover {
  color: var(--wp--preset--color--primary-color);
}

.bm-eye svg {
  width: 18px;
  height: 18px;
}

/* ── Remember / Forgot row ── */
.bm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bm-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: normal;
}

.bm-check input[type=checkbox] {
  accent-color: var(--wp--preset--color--primary-color);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 0 0 0;
  padding: 0;
  transform: translateY(1.5px);
}

/* ── Links ── */
.bm-link {
  text-decoration: none;
  transition: opacity 0.2s;
}

.bm-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.bm-accent {
  color: var(--wp--preset--color--primary-color);
  font-weight: 600;
}

.bm-forgot {
  font-size: 13px;
  color: var(--wp--preset--color--primary-color);
  font-weight: 500;
}

/* ── Primary Button ── */
.bm-btn {
  width: 100%;
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}

.bm-btn:hover,
.bm-btn:focus {
  opacity: 0.9;
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}

.bm-btn:active {
  transform: scale(0.98);
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}

.bm-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bm-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Loading spinner inside button */
.bm-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--wp--preset--color--white-color);
  border-radius: 50%;
  animation: rshSpin 0.7s linear infinite;
}

.bm-btn.bm-loading .bm-btn-text {
  opacity: 0.6;
}

.bm-btn.bm-loading .bm-spinner {
  display: inline-block;
}

.bm-btn.bm-loading svg {
  display: none;
}

@keyframes rshSpin {
  to {
    transform: rotate(360deg);
  }
}
/* ── Or divider ── */
.bm-multi-step-form .wpcf7 {
  margin-bottom: 0 !important;
}

.bm-multi-step-form form {
  margin-bottom: 0 !important;
}

.wpcf7-spinner {
  display: none !important;
}

.bm-or {
  position: relative;
  text-align: center;
  margin: 20px 0 20px;
}

.bm-or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #eee;
}

.bm-or span {
  position: relative;
  background: var(--wp--preset--color--white-color);
  padding: 0 12px;
  font-size: 13px;
  color: #aaa;
}

/* ── Social Buttons ── */
.bm-social {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wp--preset--color--black-color);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 10px;
}

.bm-social:hover {
  background: var(--wp--preset--color--primary-background);
  border-color: var(--wp--preset--color--border-color-light);
}

/* ── Footer text ── */
.bm-footer {
  text-align: center;
  font-size: 14px;
  color: var(--wp--preset--color--secondary-description);
  margin: 16px 0 0;
}

/* ── Responsive ── */
@media screen and (max-width: 991px) {
  .bm-card {
    margin: 40px auto !important;
    padding: 50px 24px 30px !important;
    border-radius: 12px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .bm-header h2,
  .bm-card h2,
  .bm-card h3,
  .bm-multi-step-form h2,
  .wpcf7 h2,
  .wpcf7 h3,
  .bm-wizard-title-area h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    text-wrap: wrap !important; /* Disables balance which causes forced breaks */
  }
  .bm-header h2 span,
  .bm-card h2 span,
  .bm-card h3 span,
  .bm-multi-step-form h2 span,
  .wpcf7 h2 span,
  .wpcf7 h3 span,
  .bm-wizard-title-area h2 span {
    font-size: 17px !important;
    display: inline-block;
    margin-top: 4px;
  }
  .bm-card br,
  .wpcf7 br {
    display: none !important;
  }
}
@media screen and (max-width: 425px) {
  .bm-card {
    margin: 20px auto !important;
    padding: 50px 20px 24px !important;
    max-height: calc(100vh - 40px);
  }
}
/* ── MULTI-STEP FORM STYLES ── */
.bm-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bm-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--secondary-description);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.bm-step-dot.active {
  background: var(--wp--preset--color--primary-color);
  color: var(--wp--preset--color--white-color);
}

.bm-step-line {
  height: 2px;
  width: 40px;
  background: var(--wp--preset--color--primary-background);
  margin: 0 8px;
}

.bm-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 16px;
  text-align: left;
}

.bm-step-sub {
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  margin: -10px 0 16px 0;
}

.bm-row-2 {
  display: flex;
  gap: 16px;
}

.bm-row-2 .bm-field {
  flex: 1;
}

.bm-field select,
.bm-field textarea,
.bm-field input[type=tel],
.bm-field input[type=url],
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 input[type=tel],
.wpcf7 input[type=url] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--wp--preset--color--secondary-description);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.bm-field select:focus,
.bm-field textarea:focus,
.bm-field input[type=tel]:focus,
.bm-field input[type=url]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 103, 83, 0.12);
  background: #fff;
}

.bm-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--wp--preset--color--primary-background);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--border-color-light);
  max-height: 200px;
  overflow-y: auto;
}

.bm-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wp--preset--color--secondary-description);
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.bm-checkbox-grid input[type=checkbox] {
  accent-color: #C96753;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.bm-consent {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bm-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--wp--preset--color--secondary-description);
  cursor: pointer;
  line-height: 1.4;
}

.bm-consent input[type=checkbox] {
  accent-color: var(--wp--preset--color--primary-color);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bm-consent a {
  color: var(--wp--preset--color--primary-color);
  text-decoration: none;
}

.bm-consent a:hover {
  text-decoration: underline;
}

/* ── CF7 Acceptance Checkbox ── */
.wpcf7-acceptance {
  display: block;
  margin: 15px 0 5px 0;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  padding: 0;
  display: block;
}

.wpcf7-acceptance label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  cursor: pointer;
  margin: 0 !important;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13.5px;
  color: var(--wp--preset--color--secondary-description, #444);
  line-height: 1.4;
  cursor: pointer;
  display: block;
  margin-top: 1px;
}

.wpcf7-acceptance input[type=checkbox] {
  accent-color: var(--wp--preset--color--primary-color, #C96753);
  width: 18px;
  height: 18px;
  margin: 0 !important;
  flex-shrink: 0;
  cursor: pointer;
}

.wpcf7-acceptance a {
  color: var(--wp--preset--color--primary-color, #C96753);
  text-decoration: none;
  font-weight: 600;
}

.wpcf7-acceptance a:hover {
  text-decoration: underline;
}

.bm-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--wp--preset--color--border-color-light);
}

.bm-btn-outline {
  background: transparent;
  border: 1px solid var(--wp--preset--color--border-color-light);
  color: var(--wp--preset--color--secondary-description);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.bm-btn-outline:hover,
.bm-btn-outline:focus,
.bm-btn-outline:active {
  background: var(--wp--preset--color--primary-background);
  border-color: var(--wp--preset--color--border-color-primary);
  color: var(--wp--preset--color--secondary-description);
}

.bm-btn-next {
  margin-left: auto;
  width: auto;
  padding: 12px 28px;
}

.bm-error-field {
  border-color: var(--wp--preset--color--border-color-primary);
  background: var(--wp--preset--color--white-color);
}

.bm-card {
  max-height: 95vh;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .bm-row-2 {
    flex-direction: column;
    gap: 0;
  }
  .bm-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
/* ── WIZARD SPECIFIC STYLES ── */
.bm-wizard-header {
  text-align: center;
  margin-bottom: 24px;
}

.bm-wizard-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.bm-wizard-title-area h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--wp--preset--color--black-color);
  margin: 0 0 10px;
  line-height: 1.2;
}

.bm-wizard-title-area h2 span {
  color: var(--wp--preset--color--primary-color);
}

.bm-wizard-title-area p {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.bm-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.bm-step-indicator {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-background);
  color: var(--wp--preset--color--secondary-description);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-indent: 0;
  box-sizing: border-box;
}

.bm-step-indicator.active {
  background: #C96753;
  color: #fff;
}

.bm-step-line {
  height: 2px;
  flex: 1;
  background: #e2e2e2;
  margin: 0 8px;
}

.bm-step-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  text-align: left;
}

.bm-step-desc {
  font-size: 13.5px;
  color: #666;
  margin: 0 0 20px 0;
}

.bm-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bm-actions-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}

.bm-btn-back {
  background: transparent;
  border: 1px solid #ddd;
  color: #555;
  width: auto;
  padding: 12px 24px;
  flex: 0 0 auto;
}

.bm-btn-back:hover,
.bm-btn-back:focus,
.bm-btn-back:active {
  background: #f5f5f5;
  color: #555;
}

.bm-actions-split .bm-btn,
.bm-actions-split button[type=submit] {
  flex: 1;
}

.bm-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fafafa;
  padding: 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

.bm-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  line-height: normal;
}

.bm-checkbox-group input {
  accent-color: #C96753;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 0 0 0;
  padding: 0;
  transform: translateY(1.5px);
}

.bm-multi-select {
  height: 120px;
}

@media screen and (max-width: 767px) {
  .bm-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bm-checkbox-group {
    grid-template-columns: 1fr;
  }
}
/* ── Selection Cards ── */
.bm-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bm-selection-card {
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #FFFFFF;
}
.bm-selection-card:hover {
  border-color: #D1D1D1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.bm-selection-card.selected {
  border-color: var(--wp--preset--color--primary-color, #C96753);
  background-color: #FFF9F8;
  box-shadow: 0 4px 12px rgba(201, 103, 83, 0.1);
}

.bm-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bm-card-text {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}
.bm-card-text strong {
  font-size: 18px;
  color: var(--wp--preset--color--primary-color, #C96753);
}

@media (max-width: 480px) {
  .bm-selection-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Button Links ── */
.bm-btn-link {
  background: none;
  border: none;
  color: #777;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.bm-btn-link:hover {
  color: var(--wp--preset--color--primary-color, #C96753);
  text-decoration: underline;
}

.bm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── Floral Decorations ── */
.bm-floral-left,
.bm-floral-right {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: 150px;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.bm-floral-left {
  left: 0;
  border-bottom-left-radius: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 Q 20 80 40 50 Q 20 50 0 100" fill="%23C96753"/><path d="M0 100 Q 50 90 70 60 Q 40 70 0 100" fill="%23C96753"/></svg>');
}

.bm-floral-right {
  right: 0;
  border-bottom-right-radius: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M100 100 Q 80 80 60 50 Q 80 50 100 100" fill="%23C96753"/><path d="M100 100 Q 50 90 30 60 Q 60 70 100 100" fill="%23C96753"/></svg>');
}

/* ── Extracted Inline Styles ── */
.bm-card-wide {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bm-card-form {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 90vh;
  overflow-y: auto;
}

.bm-top-icon-container {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.bm-top-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #FFF0ED;
  color: var(--wp--preset--color--primary-color, #C96753);
  position: relative;
  z-index: 2;
}

.bm-header h2 {
  font-size: 26px;
  line-height: 1.3;
}
.bm-header h2 span {
  color: var(--wp--preset--color--primary-color, #C96753);
}
.bm-header p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 425px) {
  .bm-header p {
    margin-top: 0;
  }
}

.bm-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.bm-line {
  height: 1px;
  background-color: #EEE;
  flex: 1;
  max-width: 120px;
}

.bm-divider-icon {
  margin: 0 12px;
  color: var(--wp--preset--color--primary-color, #C96753);
}

.bm-privacy-note {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.bm-privacy-note svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.bm-action-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.bm-btn-continue {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ── Terms Content ── */
.bm-terms-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}
.bm-terms-content a {
  color: var(--wp--preset--color--primary-color, #C96753);
  text-decoration: underline;
}
.bm-terms-content h2,
.bm-terms-content h3 {
  color: var(--wp--preset--color--primary-color, #C96753);
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.bm-terms-content h4,
.bm-terms-content h5 {
  color: #222;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 16px;
}
.bm-terms-content strong {
  color: #222;
  font-weight: 600;
}
.bm-terms-content h2:first-child,
.bm-terms-content h3:first-child {
  margin-top: 0;
}
.bm-terms-content ul,
.bm-terms-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.bm-terms-content ul li,
.bm-terms-content ol li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.bm-terms-content ul {
  list-style-type: disc;
}
.bm-terms-content ol {
  list-style-type: decimal;
}

/* ── Structural Styles for Terms Popup ── */
#termsOverlay {
  z-index: 9999999;
}

.bm-terms-card {
  width: 90%;
  max-width: 900px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
}
.bm-terms-card .bm-header {
  text-align: center;
  margin-bottom: 20px;
}
.bm-terms-card .bm-header h2 {
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
}
.bm-terms-card .bm-header h2 span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.bm-terms-content {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 24px;
  background: #fafafa;
  text-align: left;
}

/* ── Responsiveness ── */
@media screen and (max-width: 767px) {
  .bm-terms-card {
    height: 95vh;
    padding: 30px 15px 15px;
    width: 95%;
  }
  .bm-terms-card .bm-header {
    margin-bottom: 15px;
  }
  .bm-terms-card .bm-header h2 {
    font-size: 20px;
  }
  .bm-terms-card .bm-header h2 span {
    font-size: 14px;
  }
  .bm-terms-content {
    padding: 16px;
    margin-bottom: 16px;
  }
  /* Hide all br tags on mobile so text flows naturally */
  .bm-terms-card br {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */