h1, h2, h3, h4, a, ul, li, span, div {
  margin: 0;
  padding: 0;
  font-family: Manrope, sans-serif;
  color: #fff;
  list-style: none; }

p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #b8bdc7; }

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out; }

h1 {
  font-size: 50px; }

h2 {
  font-size: 45px;
  font-weight: 500; }

h3 {
  font-size: 35px;
  font-weight: 500; }

h4 {
  font-size: 30px;
  font-weight: 500; }

h5 {
  font-size: 18px; }

p {
  font-size: 16px; }

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 40px; }

  h2 {
    font-size: 35px; }

  h3 {
    font-size: 32px; }

  h4 {
    font-size: 20px; }

  h5 {
    font-size: 18px; }

  p {
    font-size: 15px; } }
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 30px; }

  h2 {
    font-size: 25px; }

  h3 {
    font-size: 22px; }

  h4 {
    font-size: 17px; }

  h5 {
    font-size: 16px; }

  p {
    font-size: 14px; } }
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 25px; }

  h2 {
    font-size: 22px; }

  h3 {
    font-size: 20px; }

  h4 {
    font-size: 16px; }

  p {
    font-size: 13px; } }
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: #0e0e10; }

.section {
  padding: 50px 0; }
  @media only screen and (max-width: 768px) {
    .section {
      padding: 30px 0; } }

.inner {
  max-width: 1200px;
  margin: 0 auto; }
  @media only screen and (max-width: 1024px) {
    .inner {
      padding: 0 20px; } }
  @media only screen and (max-width: 768px) {
    .inner {
      padding: 0 4%; } }

.section-head {
  text-align: center;
  margin: 25px; }

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .hero.small {
    height: 40vh; }
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); }
  .hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%; }
    .hero .hero-content .wrapper {
      max-width: 600px; }
      .hero .hero-content .wrapper h1 > span {
        color: #ff3c41; }
      .hero .hero-content .wrapper p {
        margin: 1rem 0; }
      .hero .hero-content .wrapper a {
        color: #fff; }
  @media only screen and (max-width: 992px) {
    .hero {
      text-align: center; }
      .hero .hero-content {
        display: flex;
        justify-content: center; }
        .hero .hero-content .wrapper {
          margin-top: -135px; } }
  .hero .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr); }
  .card-grid .card {
    background: #242427;
    border: 1px solid #24242a;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: .2s ease;
    position: relative;
    overflow: hidden; }
    .card-grid .card img {
      width: 25px;
      height: 25px;
      object-fit: cover; }
    .card-grid .card .link {
      color: #ff8c42; }
  @media only screen and (max-width: 992px) {
    .card-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 480px) {
    .card-grid {
      grid-template-columns: 1fr; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid transparent;
  text-transform: capitalize;
  transition: all 0.3s;
  width: fit-content; }

.btn-primary {
  background: #ff3c41; }
  .btn-primary:hover {
    background: #ffffff !important;
    color: #ff3c41 !important; }

.btn:hover {
  background: #ffffff !important;
  color: #ff3c41 !important; }

.underline {
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 3px;
  background: #ff3c41;
  margin: 0; }
  @media only screen and (max-width: 992px) {
    .underline {
      margin: 0 auto; } }

.underline-a {
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 3px;
  background: #ff3c41;
  margin: 0 auto; }

.fcol .underline {
  display: block;
  width: 74px;
  height: 2px;
  border-radius: 3px;
  background: #ff3c41;
  margin: 0; }

.section-title {
  margin: 0 0 26px;
  position: relative; }
  .section-title--center {
    text-align: center; }
  .section-title--bar {
    padding-left: 14px; }
    .section-title--bar::before {
      content: "";
      position: absolute;
      left: 0;
      width: 6px;
      height: 1.4em;
      border-radius: 3px;
      background: linear-gradient(180deg, #ff8a2a, #e63946); }

.translated-rtl .section-title--bar {
  padding-right: 14px; }
  .translated-rtl .section-title--bar::before {
    display: none; }
  .translated-rtl .section-title--bar::after {
    content: "";
    position: absolute;
    right: 0;
    width: 6px;
    height: 1.4em;
    border-radius: 3px;
    background: linear-gradient(180deg, #ff8a2a, #e63946); }

@media only screen and (max-width: 768px) {
  .btn {
    padding: 10px 20px; } }
/* Sidebar container */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: #24242a 1px solid;
  background: #242427;
  border-radius: 16px;
  padding: 20px; }
  .sidebar .widget {
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    margin: 0; }
  .sidebar .widgettitle,
  .sidebar .wp-block-search__label,
  .sidebar .widget_block h2, .sidebar .widget_block h4 {
    margin-bottom: 20px;
    border-bottom: 2px solid #ff3c41;
    padding-bottom: 15px; }

/* Search block */
.wp-block-search {
  display: flex;
  flex-direction: column; }
  .wp-block-search__inside-wrapper {
    display: flex;
    width: 100%; }
  .wp-block-search__input {
    flex: 1;
    padding: .6rem .8rem;
    border-radius: 6px 0 0 6px;
    border: 1px solid #535353;
    background: #0e0e10;
    color: #fff; }
    .wp-block-search__input:focus {
      outline: none;
      border-color: #ff3c41 !important;
      color: #fff !important; }
  .wp-block-search .wp-block-search__button {
    background: #ff3c41;
    color: #fff;
    padding: 0 1rem;
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background .2s;
    margin-left: 0; }
    .wp-block-search .wp-block-search__button:hover {
      background: #ff3c41; }

/* Categories widget */
.widget_categories ul,
.wp-block-categories-list {
  margin: 0;
  padding: 0; }
  .widget_categories ul li,
  .wp-block-categories-list li {
    margin-bottom: .5rem; }
    .widget_categories ul li a,
    .wp-block-categories-list li a {
      color: #fff;
      text-decoration: none; }
      .widget_categories ul li a:hover,
      .wp-block-categories-list li a:hover {
        color: #ff3c41; }

/* Recent posts widget */
.widget_recent_entries ul,
.wp-block-latest-posts__list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .widget_recent_entries ul li,
  .wp-block-latest-posts__list li {
    margin-bottom: .6rem; }

.translated-rtl .site-header,
.translated-rtl .hero,
.translated-rtl .services,
.translated-rtl .site-footer,
.translated-rtl .instructor,
.translated-rtl .philosophy,
.translated-rtl .certifications,
.translated-rtl .contact-hero,
.translated-rtl .contact-grid,
.translated-rtl .blog-posts {
  direction: rtl; }

html {
  scroll-behavior: smooth; }

.site-header {
  background: #0e0e10;
  position: sticky;
  top: 0;
  z-index: 1000; }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .site-header .container .site-branding {
      display: flex; }
      .site-header .container .site-branding a {
        font-weight: bold;
        font-size: 1.4rem;
        color: #fff; }
        .site-header .container .site-branding a img {
          width: 100px;
          height: auto;
          object-fit: contain; }
    .site-header .container nav {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      /* Burger */ }
      .site-header .container nav .menu-toggle {
        position: relative;
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 8px;
        background: transparent;
        cursor: pointer;
        z-index: 1101; }
        .site-header .container nav .menu-toggle .bar {
          display: block;
          width: 22px;
          height: 2px;
          border-radius: 2px;
          background: #fff;
          transition: 0.3s ease; }
      .site-header .container nav .menu-container ul {
        display: flex;
        gap: 2rem;
        list-style: none;
        justify-content: flex-end; }
        .site-header .container nav .menu-container ul .menu-item-gtranslate {
          position: relative; }
          .site-header .container nav .menu-container ul .menu-item-gtranslate div {
            position: relative !important; }
        .site-header .container nav .menu-container ul a {
          color: #fff;
          font-weight: 500;
          text-transform: uppercase;
          font-size: 0.9rem;
          transition: all 0.3s ease-in-out; }
          .site-header .container nav .menu-container ul a:hover {
            color: #ff8c42; }

/* ===== Mobile ===== */
@media only screen and (max-width: 768px) {
  #site-navigation {
    justify-content: flex-end; }
    #site-navigation .menu-toggle {
      display: flex;
      align-items: center; }
    #site-navigation .menu-container {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(80vw, 320px);
      background: #0e0e10;
      border-left: 1px solid #24242a;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      padding: 80px 24px;
      z-index: 1100;
      display: flex;
      flex-direction: column; }
      #site-navigation .menu-container ul {
        flex-direction: column;
        gap: 1.5rem; }
    #site-navigation .nav-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1099; }
    #site-navigation.open .menu-container {
      transform: translateX(0); }
    #site-navigation.open .nav-backdrop {
      opacity: 1;
      pointer-events: auto; }
    #site-navigation.open .menu-toggle .bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg); }
    #site-navigation.open .menu-toggle .bar:nth-child(2) {
      opacity: 0; }
    #site-navigation.open .menu-toggle .bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg); } }
/* Lock body scroll when open */
html.nav-locked, body.nav-locked {
  overflow: hidden; }

.site-footer {
  background: #0a0a0b;
  color: #fff; }
  .site-footer .footer-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding-block: 40px; }
    @media only screen and (max-width: 992px) {
      .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr; } }
    @media only screen and (max-width: 480px) {
      .site-footer .footer-grid {
        grid-template-columns: 1fr; } }
  .site-footer .about .brand-row {
    display: flex;
    align-items: center;
    gap: 12px; }
    .site-footer .about .brand-row .custom-logo {
      max-height: 48px;
      width: auto; }
    .site-footer .about .brand-row .brand-text {
      font-size: 1.4rem;
      font-weight: bold;
      color: #fff; }
      .site-footer .about .brand-row .brand-text b {
        font-weight: bold; }
      .site-footer .about .brand-row .brand-text em {
        font-style: normal;
        color: #ff8c42; }
  .site-footer .about p {
    margin: 10px 0 14px; }
  .site-footer .social {
    display: flex;
    gap: 10px; }
    .site-footer .social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px; }
      .site-footer .social a img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block; }
      .site-footer .social a:hover {
        filter: brightness(1.5);
        border: 1px solid #ff8c42;
        border-radius: 8px; }
  .site-footer .fcol h4 {
    margin: 0 0 10px; }
  .site-footer .fcol .links {
    margin: 10px 0 0;
    display: grid;
    gap: 8px; }
    .site-footer .fcol .links li a {
      color: #fff; }
  .site-footer .footer-bottom {
    border-top: 1px solid #24242a;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center; }
    .site-footer .footer-bottom p {
      margin: 0;
      color: #b8bdc7;
      font-size: 12px; }
      .site-footer .footer-bottom p a {
        color: #ff8c42;
        text-decoration: none;
        transition: color 0.2s ease; }
        .site-footer .footer-bottom p a:hover {
          color: #ff3c41; }
    .site-footer .footer-bottom .sep {
      opacity: 0.5; }

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