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; }

a {
  color: #fff !important; }
  a:hover {
    color: #ff8c42 !important; }

.blog-posts {
  margin: 100px auto; }

.blog-with-sidebar {
  display: flex;
  gap: 20px; }
  .blog-with-sidebar .posts-area {
    background: #242427;
    border-radius: 16px;
    padding: 20px; }
    .blog-with-sidebar .posts-area .breadcrumbs {
      margin-bottom: 20px; }
      .blog-with-sidebar .posts-area .breadcrumbs a {
        color: #b8bdc7 !important;
        font-size: 14px; }
        .blog-with-sidebar .posts-area .breadcrumbs a:hover {
          color: #ff3c41 !important; }
    .blog-with-sidebar .posts-area .featured-image img {
      width: 100%;
      height: auto;
      border-radius: 16px; }
    .blog-with-sidebar .posts-area .post-card {
      display: flex;
      gap: 20px; }
      .blog-with-sidebar .posts-area .post-card .thumb {
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f3f3f3;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4 / 2; }
        .blog-with-sidebar .posts-area .post-card .thumb img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .blog-with-sidebar .posts-area .post-card .card-body {
        flex: 4;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .blog-with-sidebar .posts-area .post-card .card-body .card-meta {
          font-size: .85rem;
          color: #b8bdc7;
          margin-bottom: .8rem; }
          .blog-with-sidebar .posts-area .post-card .card-body .card-meta .author {
            text-transform: capitalize; }
          .blog-with-sidebar .posts-area .post-card .card-body .card-meta .sep {
            margin: 0 .3rem;
            opacity: .6; }
        .blog-with-sidebar .posts-area .post-card .card-body .btn {
          width: fit-content;
          padding: .2rem 1.25rem;
          font-weight: 500; }
          .blog-with-sidebar .posts-area .post-card .card-body .btn:hover {
            background: #fff; }

@media only screen and (max-width: 992px) {
  .blog-with-sidebar .posts-area {
    padding: 10px; }
    .blog-with-sidebar .posts-area .post-card {
      flex-direction: column; }

  aside {
    display: none !important; } }

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