:root {
  --primary: #FFA640;
  --secondary: #721315;
  --dark: #000;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html,
body {
  width: 100%;

  font-family: 'Avenir Next Cyr', sans-serif;
}

body {
  padding-top: calc(var(--topbar-height, 41px) + var(--header-height, 76px));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
}

img {
  max-width: 100%;
}
.topbar-topbar {
  background: #f5a623;
  font-size: 13px;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.topbar-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.topbar-top-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #173865;
}


.topbar-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #173865;
}

.topbar-top-right a {
  text-decoration: none;
  color: #173865;
}


.topbar-divider {
  opacity: 0.6;
}


.topbar-font-size span {
  margin: 0 2px;
  cursor: pointer;
}


.topbar-theme-toggle {
  display: flex;
  gap: 5px;
}

.topbar-circle {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.topbar-circle.dark {
  background: #173865;
  color: #fff;
}

.topbar-circle.light {
  background: #fff;
  color: #173865;
  border: 1px solid #173865;
}


.topbar-lang-dropdown select {
  border: none;
  background: transparent;
  color: #173865;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}


.topbar-dots {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  position: fixed;
  top: var(--topbar-height, 41px);
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 6px 20px rgba(23, 56, 101, 0.06);
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo span {
  color: var(--secondary);
}
.logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #222;
  display: inline-block;
  position: relative;
  padding: 5px 0;
  transition: 0.3s;
}


.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}

.menu li a:hover,
.menu li.active a {
  color: var(--secondary);
}

.menu li a:hover::after,
.menu li.active a::after {
  width: 100%;
}
.cta {
    background: var(--primary);
    border: none;
    padding: 10px 7px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

.container {
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}





/* hero section */

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.95) 30%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.3) 55%,
    rgba(255,255,255,0) 70%
  );
  z-index: -1;
}


.hero-content {
  max-width: 520px;
  padding-left: 0;
    position: relative;
  z-index: 2;
}


.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 400;
  padding-bottom: 10px;
}

.hero h1 span {
  color: var(--secondary);
  font-weight: 700;
}
.hero-desc {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  max-width: 450px;
}
/* BUTTONS */
.primary-btn {
  background: #8b0000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 20px;
}

.hero-links {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.outline-btn {
  border: 1px solid #8b0000;
  padding: 12px 22px;
  border-radius: 30px;
  background: transparent;
}

.dark-btn {
  background: #8b0000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
}

/* end hero section */

/* couneter section */

.counter {
  background: var(--primary);
  color: #fff;
}

.counter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px !important;
  color: #173865;
  gap: 18px;
}

.box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}

.counter-icon {
  line-height: 1;
}

.counter-value {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}

.box h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.counter-suffix {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.box p {
  margin-left: 5px;
  margin-bottom: 0;
}

/* end counter section */


/* why choose us */

.why-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.why-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* LEFT */
.why-left {
  flex: 1;
  max-width: 500px;
}

.tag {
  background: #8b0000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.why-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-left h2 span {
  color: var(--secondary);
}

.why-left p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.why-left ul {
  margin: 10px 0 20px;
  padding-left: 20px;
}

.why-left li {
  margin-bottom: 6px;
}

.why-left h4 {
  margin-top: 20px;
  color: var(--secondary);
}


.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #e5cfcf;
  text-align: center;
  position: relative;
}


.icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.card h3 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
}

.card p {
    font-size: 18px;
  font-weight: 400;
  color: #555;
}

.courses {
  padding: 80px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

/* HEADER */
.courses-header .tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.courses-header h2 {
  font-size: 36px;
  margin: 15px 0;
  color: var(--secondary);
}

.courses-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* SWIPER */
.coursesSwiper {
  margin-top: 50px;
  padding-bottom: 50px;
}

/* IMPORTANT */
.swiper-slide {
  height: auto;
  display: flex;
}

/* CARD */
.course-card {
  border: 1px solid #e5cfcf;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
  position: relative;
  width: 100%;
}

/* IMAGE */
.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.course-content {
  padding: 20px;
}

.course-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.course-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  transition: 0.3s;
  line-height: 1.6;
}

/* BUTTON */
.course-content a {
  background: var(--primary);
  border: none;
  padding: 12px 50px;
  border-radius: 25px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

/* HOVER EFFECT */
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.4s ease;
  z-index: 0;
}

.course-card:hover::before {
  transform: scaleY(1);
}

/* KEEP CONTENT ABOVE */
.course-card * {
  position: relative;
  z-index: 1;
}

/* TEXT HOVER */
.course-card:hover h3,
.course-card:hover p {
  color: #fff;
}

/* BUTTON HOVER */
.course-card:hover a {
  background: #fff;
  color: var(--secondary);
}

/* PAGINATION */
.swiper-pagination-bullet {
  background: var(--secondary);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .courses {
    padding: 60px 15px;
  }

  .courses-header h2 {
    font-size: 28px;
  }

  .course-card img {
    height: 200px;
  }

  .course-content {
    padding: 18px;
  }

  .course-content h3 {
    font-size: 18px;
  }

}

/* end course section */

/* sap section */


.sap-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* LAYOUT */
.sap-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.sap-left {
  flex: 1;
}

.sap-left .tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.sap-left h2 {
  font-size: 42px;
  color: var(--secondary);
  margin: 15px 0;
  line-height: 1.2;
}

.sap-left .desc {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
/*
.item {
  font-size: 15px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--secondary);
} */

.item {
  position: relative;
  padding-left: 40px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
}
p.new-pra {
    padding-top: 22px;
    font-size: 14px;
}

.item::before {
  content: "✔";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.item::after {
  content: "";
  position: absolute;
  left: 30px;
  width: 20px;
  height: 2px;
}


/* RIGHT */
.sap-right {
  flex: 1;
  position: relative;
}

/* MAIN IMAGE */
.img-main img {
  width: 90%;
  border-radius: 15px;
  display: block;
}

/* SMALL IMAGE OVERLAP */
.img-small {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 250px;
}

.img-small img {
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ANIMATION */
.img-main img {
  animation: floatUp 3s ease-in-out infinite alternate;
}

.img-small img {
  animation: floatDown 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

@keyframes floatDown {
  from { transform: translateY(0); }
  to { transform: translateY(10px); }
}



/* INITIAL STATE (hidden + shifted) */
.animate-images .img-main {
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-images .img-small {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* ACTIVE STATE (comes together) */
.animate-images.active .img-main {
  transform: translateX(0);
  opacity: 1;
}

.animate-images.active .img-small {
  transform: translateX(0);
  opacity: 1;
}

/* end sap section */

/* step section */

.steps-section {
  padding: 80px 0 0;
  background: #f9f9f9;
}

/* TOP */
.steps-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.steps-top .left {
  flex: 1;
}

.steps-top .right {
  flex: 1;
}

.tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.steps-top h2 {
  font-size: 42px;
  color: var(--secondary);
  margin-top: 15px;
  line-height: 1.2;
}

.steps-top p {
  color: #555;
  line-height: 1.6;
}

/* ORANGE STRIP */
.steps-strip {
  background: var(--primary);
  margin-top: 100px;
  padding: 60px 0 30px;
}

/* ICON ROW */
.steps-icons {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

/* ITEM */
.step-item {
  position: relative;
  width: 18%;
}

/* CIRCLE */
.circle {
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: -100px auto 10px; /* overlap effect */
}

/* ICON IMAGE */
.circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;

  filter: brightness(0) invert(1); /* white icon */
}

/* TEXT */
.step-item p {
  color: #fff;
  font-size: 14px;
}



/* end step section */



/* mentor section */
.mentor-section {
  padding: 120px 0;
  background: #f9f9f9;
}

/* LAYOUT */
.mentor-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
/* LEFT SIDE */
.mentor-left {
  flex: .7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 560px;
  overflow: hidden;
}

.img-bg {
  width: 390px;
  height: 430px;
  border-radius: 220px 220px 0 0;
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
}

.img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PERSON IMAGE (BIGGER + OUTSIDE) */
.img-person {
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: 2;
  width: 760px;
  transform: translateX(-36.6%);
  pointer-events: none;
}

.img-person img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}

/* RIGHT CONTENT */
.mentor-right {
  flex: 1.3;
}

.mentor-right .tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
}

.mentor-right h2 {
  font-size: 42px;
  color: var(--secondary);
  margin: 15px 0;
}

.mentor-right p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.mentor-right ul {
  margin: 15px 0;
  padding-left: 20px;
}

.mentor-right li {
  margin-bottom: 8px;
}


/* end mentor section */


/* testimonial section */


.testimonial-section {
  padding-top: 30px;
  background: #fff;
  text-align: center;
}

/* HEADER */
.testi-header .tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.testi-header h2 {
  font-size: 40px;
  color: var(--secondary);
  margin: 15px 0 40px;
}

/* CARD */
.testi-card {
  border: 1px solid #e5cfcf;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  text-align: left;:240px
  min-height:240px;
}

/* QUOTE */
.quote {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.quote::before {
  content: "❝";
  position: absolute;
  left: 0;
  font-size: 24px;
  color: #000;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user h4 {
  font-size: 14px;
  margin: 0;
}

.user span {
  font-size: 12px;
  color: #777;
}

.stars {
  margin-left: auto;
  color: var(--primary);
  font-size: 14px;
}

/* SWIPER SPACING */
/* .swiper-slide {
  padding: 10px;
} */
/*.testi-card {*/
/*  margin: 0 10px;   */
/*}*/

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}
/* PAGINATION */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
}


/* testimonial section */
/* ================= BLOG SECTION ================= */

.blog-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-size: 40px;
  color: var(--secondary);
}

.tag {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

/* NAV BUTTONS */
.blog-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.blog-nav button:hover {
  transform: scale(1.1);
}

/* SLIDER WRAPPER */
.blog-grid {
  overflow: hidden;
}

.blog-slider {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}
/* CARD WIDTH CONTROL */
.blog-card {
   flex: 0 0 calc((100% - 60px) / 3);
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #e5cfcf;
  transition: 0.4s;
  overflow: hidden;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

/* META */
.meta {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.meta span {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* TEXT */
.blog-card h3 {
  font-size: 18px;
  color: var(--secondary);
  margin: 10px 0;
}

.blog-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--secondary);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card:hover .btn {
  background: var(--primary);
}

/* ================= RESPONSIVE ================= */


/* end blog section */


/* certificates section */


/* ================= CERTIFIED COURSES ================= */

.certified-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 42px;
  color: var(--secondary);
  margin-bottom: 50px;
}

/* GRID */
.certified-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

/* CARD */
.certified-card {
  background: #fff;
  /* border: 1px solid #e5cfcf; */
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  cursor: pointer;
}

/* IMAGE */
.certified-card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TEXT */
.certified-card p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* HOVER EFFECT */
.certified-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.certified-card:hover img {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */


/* end certificates section */
/* ================= FOOTER ================= */


.footer {
  position: relative;
  background: url("./media/footer-bg.png") center/cover no-repeat;
  color: #fff;
  padding: 80px 0 30px;
  overflow: hidden;
}

/* OVERLAY */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: #5b0406e6;
  z-index: 0;
}

/* LAYOUT */
.footer-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

/* RIGHT COLUMN STACK */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ================= LEFT ================= */

.footer-logo img {
  width: 260px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 40px;
}

.tagline {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-left h2 {
  font-size: 36px;
  line-height: 1.4;
  margin-top: 15px;
}

/* ================= COMMON HEADINGS ================= */

.footer-links h4,
.footer-contact h4,
.footer-news h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* ================= LINKS ================= */

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  color: var(--primary);
  padding-left: 5px;
}
    .footer-links li a {
    color: #fff;
    text-decoration: none;
}
/* ================= CONTACT ================= */

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  font-size: 16px;
}

/* ================= SOCIAL ICONS ================= */

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--primary);
  color: #fff;
}

/* ================= NEWSLETTER ================= */

.subscribe {
  display: flex;
  margin-top: 10px;
}

.subscribe input {
  flex: 1;
  padding: 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
}

.subscribe button {
  padding: 0 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.note {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.8;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */


/* ================= END ================= */

/* the-hidden-reality-section start  */

.the-hidden-reality-section {
    padding: 80px 20px;
    background: #f3f3f3;
    font-family: 'Outfit', sans-serif;
}


/* .the-hidden-reality-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    /* align-items: center; */
/* }  */
.the-hidden-reality-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.the-hidden-left-image{
  width:40%;
  position:sticky;
  top:100px;
  height:fit-content;
}

.the-hidden-left-image img{
  width:100%;
  display:block;
}

.the-hidden-reality-content{
  width:60%;
}

.the-hidden-left-image img {
    width: 100%;
    max-width: 510px;
    display: block;
}


.the-hidden-reality-content h2 {
    font-size: 40px;
    color: #7a1a1a;
    margin-bottom: 15px;
    font-weight: 500;
}

.the-hidden-reality-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.the-hidden-reality-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.the-hidden-reality-content ul li {
    position: relative;
    padding-left: 18px;
    font-size: 17px;
    color: #000;
    margin-bottom: 6px;
}

.the-hidden-reality-content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 10px;
    color: #444;
}
.the-hidden-reality-content h4 {
    color: #7a1a1a;
   font-size: 25px;
}


/* the-hidden-reality-section end  */
section.sap-training-market-bottom-section {
    padding: 20px 0px;
}

.sap-training-market-bottom-section-card ul {
    padding: 7px 17px;
    text-align: left;
}
.sap-training-market-bottom-section-card li {
    padding: 7px 0px;
}
.sap-training-market-bottom-section h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding: 20px 0px;
    color: var(--secondary);
}
.sap-training-market-bottom-section-card h3 {
    padding-bottom: 10px;
}

/* .sap-training-market-bottom-section-card start  */

.sap-training-market-bottom-section-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
    max-width: 1200px;
    padding: 40px 20px;
        justify-content: center;
    margin: auto;
}

.sap-training-market-bottom-section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 20px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #721315;
    width: 100%;
    height: auto;
}


.sap-training-market-bottom-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #7a1a1a;
}

.sap-training-market-bottom-section-icon-circle {
    background: linear-gradient(135deg, #7a1a1a, #a83232);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(122, 26, 26, 0.3);
}

.sap-training-market-bottom-section-h3 {
    font-size: 17px;
    color: #1e293b;
    margin: 20px 0 10px;
    font-weight: 700;
}


.sap-training-market-bottom-section p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}
.sap-training-market-bottom-section-icon-circle img {
    width: 40px;
}



/* .sap-training-market-bottom-section-card end  */




/* mentore section start  *//* why choose start  */


.why-choose-us-banner-section {
    background-image: url(./media/common-banner-img.png);
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


.choose-us-banner-content {
    width: 100%;
}


.choose-us-banner-text {
    color: #fff;
}

.choose-us-banner-btn {
    background: #fff;
    color: #721315;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}


.choose-us-banner-banner-text {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
  }



.why-choose-mentor-section {
    background: #f3f3f3;
    padding: 10px 0px 0px 0px;
    border-top: 4px solid #f28c28;
    border-bottom: 4px solid #f28c28;
    overflow: hidden;
}


.why-choose-mentor-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 95px;
}


.why-choose-tag {
    background: #7a1a1a;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 30px;
}


.why-choose-mentor-content h2 {
    font-size: 38px;
    color: #7a1a1a;
    margin-bottom: 15px;
}


.why-choose-mentor-content p {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}


.why-choose-mentor-content ul {
    margin-top: 15px;
    padding-left: 18px;
}

.why-choose-mentor-content ul li {
    font-size: 14px;
    margin-bottom: 6px;
}


.why-choose-mentor-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}



.why-choose-mentor-image img {
    width: 100%;
    height: 548px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-choose-mentor-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-mentor-image {
        justify-content: center;
        margin-top: 30px;
    }

    .why-choose-mentor-image::before {
        display: none;
    }
}

/* mentore section end  *//* why choose end  */




/* sap free star  */
/* learn from start here  */

.learn-from-scratch-sap-section{
    width:100%;
    padding:40px 0px;
}

.learn-from-scratch-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* LEFT SIDE */
.learn-from-scratch-left-content{
    flex:1;
    min-width:320px;
}

.learn-from-scratch-top-btn{
    display:inline-block;
    background:#6d0f12;
    color:#fff;
    font-size:12px;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    font-weight:600;
}

.learn-from-scratch-left-content h1{
    font-size:46px;
    line-height:1.2;
    color:#7b1d1d;
    font-weight:500;
    margin-bottom:20px;
}

.learn-from-scratch-left-content p{
    font-size:15px;
    color:#444;
    line-height:1.8;
    margin-bottom:15px;
}

.learn-from-scratch-features{
    list-style:none;
    margin-top:18px;
    margin-bottom:28px;
}

.learn-from-scratch-features li{
    font-size:15px;
    color:#222;
    margin-bottom:12px;
    padding-left:22px;
    position:relative;
}

.learn-from-scratch-features{
    list-style:none;
    padding:0;
    margin:0;
}

.learn-from-scratch-features li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    font-size:16px;
    color:#222;
    line-height:1.6;
}

/* Perfect round icon */
.learn-from-scratch-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:4px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#7b1d1d;
    color:#fff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.learn-from-scratch-cta-btn{
    display:inline-block;
    background:#6d0f12;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

/* RIGHT SIDE */
.learn-from-scratch-right-content{
    flex:1;
    min-width:320px;
    position:relative;
    text-align:center;
}

.learn-from-scratch-main-image{
    width:100%;
    max-width:537px;
    border-radius:10px;
}

.learn-from-scratch-small-card{
    position:absolute;
    left:20px;
    bottom:15px;
    width:170px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.learn-from-scratch-small-card img{
    width:100%;
    display:block;
}

.learn-from-scratch-badge{
    position:absolute;
    right:10px;
    bottom:10px;
    width:110px;
}

/* learn from end here  */


/* free sap tranning start  */
.Free-sap-training-section{
   width:100%;
   padding:60px 0;
   text-align:center;
   background-color: #f6f6f6;
}

    .Free-sap-training-section-title {
      font-size: 28px;
      font-weight: 700;
      color: #7B1515;
      margin-bottom: 40px;
    }

    .Free-sap-training-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }


    .Free-sap-training-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      transition: transform 0.2s, box-shadow 0.2s;
      text-align: center;
    }

    .Free-sap-training-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    }

    .Free-sap-training-card-thumb {
      width: 100%;
      height: 170px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }



    .Free-sap-training-thumb-icon {
      position: relative;
      z-index: 2;
    }

    /* Card Body */
    .Free-sap-training-card-body {
      padding: 16px 14px 0;
    }

    .Free-sap-training-card-title {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 6px;
    }

    .Free-sap-training-stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1px;
      margin-bottom: 6px;
    }

    .Free-sap-training-star { color: #F5A623; font-size: 14px; }

    .Free-sap-training-rating-label {
      font-size: 12px;
      color: #555;
      margin-left: 5px;
    }

    .Free-sap-training-price {
      font-size: 13px;
      color: #e53935;
      text-decoration: line-through;
      margin-bottom: 10px;
    }

    .Free-sap-training-btn-free {
      display: inline-block;
      background: #8B1212;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      padding: 6px 28px;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.2px;
    }

    .Free-sap-training-btn-free:hover { background: #6e0e0e; }

    .Free-sap-training-card-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 14px;
      padding: 12px 14px;
      background: #fff;
      border-top: 1px solid #eee;
      border-radius: 0 0 10px 10px;
    }

    .Free-sap-training-meta-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      color: #fff;
      background: #8B1212;
      padding: 6px 16px;
      flex: 1;
    }

    .Free-sap-training-meta-item:first-child {
      border-radius: 20px 0 0 20px;
      border-right: 1px solid rgba(255,255,255,0.3);
    }

    .Free-sap-training-meta-item:last-child {
      border-radius: 0 20px 20px 0;
    }

    .Free-sap-training-meta-item img {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: #fff;
      stroke-width: 1.4;
      flex-shrink: 0;
    }
    .Free-sap-training-container{
   max-width:1200px;
   margin:auto;
   padding:0 15px;
}


/* end  */

.who-should-join-course-section{
  background: linear-gradient(90deg,#f7941d,#f97316);
  padding: 80px 20px;
  overflow: visible;
}


.who-should-join-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.who-should-join-left-content{
  flex:1;
  color:#5a1e0e;
}

.who-should-join-left-content h2{
  font-size:32px;
  line-height:1.3;
}

.who-should-join-left-content span{
  font-weight:700;
}


.who-should-join-slider{
  flex:2;
  overflow: hidden;
}

.who-should-join-slider-track{
  display:flex;
  gap:30px;
  width:max-content;
  will-change: transform;
}


.who-should-join-card{
  background:#f3f3f3;
  min-width: 320px;
  padding: 40px 30px;
  border-radius:16px;
  text-align:center;
  font-weight:500;
  position:relative;
  color:#333;
  overflow: visible;

  box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

.who-should-join-card::before,
.who-should-join-card::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  width:60%;
  height:6px;
  background:#6b2a1a; /* same color */
  border-radius:10px;
}


.who-should-join-card::before{
  top:-6px;
}


.who-should-join-card::after{
  bottom:-6px;
}

.who-should-join-card:nth-child(2)::after{background:#6d28d9;}
.who-should-join-card:nth-child(3)::after{background:#16a34a;}
.who-should-join-card:nth-child(4)::after{background:#dc2626;}


/* end  */


/* SECTION */
.why-start-free-sap-section {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
}


.why-start-free-container {
  max-width: 1200px;
  margin: auto;
}


.why-start-free-tag {
  display: inline-block;
  background: #7a1b1b;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}


.why-start-free-sap-section h2 {
  font-size: 40px;
  color: #7a1b1b;
  font-weight: 500;
  margin-bottom: 30px;

}


.why-start-free-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}


.why-start-free-feature {
  flex: 1;
  min-width: 200px;
}

.why-start-free-icon-circle {
  width: 80px;
  height: 80px;
  background: #7a1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.why-start-free-icon-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}


.why-start-free-feature p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .why-start-free-features {
    flex-direction: column;
    align-items: center;
  }

  .why-start-free-feature {
    max-width: 300px;
  }
}







 .free-advance-traning-sap-title {
      background: #E8A838;
      color: #fff;
      font-size: 15px;
      font-weight: bold;
      padding: 9px 36px;
      border-radius: 6px 6px 0 0;
      letter-spacing: 0.01em;
      display: inline-block;
      align-self: center;
    }

    .free-advance-traning-wrapper {
      border-radius: 0 0 8px 8px;
      overflow: hidden;
      border: 1px solid #ddd;
      width: 1000px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      border: 1px solid #c8b89a;
    }

    thead th {
      background: #6B1A1A;
      color: #fff;
      padding: 12px 16px;
      font-weight: bold;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: 1px solid #8a2020;
    }

    thead th:first-child { text-align: left; }
    thead th:not(:first-child) { text-align: center; }

    td {
      padding: 11px 16px;
      border: 1px solid #d6c9b5;
      vertical-align: middle;
    }

    td:first-child {
      font-size: 13px;
      color: #444;
    }

    td:not(:first-child) { text-align: center; }

    tr:nth-child(odd) td { background: #f9f9f9; }
    tr:nth-child(even) td { background: #ffffff; }

    .free-advance-traning-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: default;
    }

    .free-advance-traning-badge:hover {
      transform: scale(1.18);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .free-advance-traning-badge-green { background: #EAF3DE; color: #3B6D11; }
    .free-advance-traning-badge-amber { background: #FAEEDA; color: #854F0B; }
    .free-advance-traning-badge-red   { background: #FCEBEB; color: #A32D2D; }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    .dot-green { background: #3B6D11; }
    .dot-amber { background: #854F0B; }
    .dot-red   { background: #A32D2D; }



.free-advance-section {
  background: #f3f3f3;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.free-advance-container {
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
}


.free-advance-traning-sap-title {
  background: #E8A838;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 6px 6px 0 0;
  display: inline-block;
}


.free-advance-traning-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.free-advance-traning-wrapper table {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
}

.free-advance-traning-sap-title {
    display: block;
    width: fit-content;
    margin: 40px auto 0px auto;
}
.testimonial-section {
   margin: 40px 0px;
}


@media (max-width: 768px) {
  .free-advance-traning-sap-title {
    font-size: 13px;
    padding: 8px 15px;
  }
}




/* faq-header */
.faq-header{
  background:#7b0d0d;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:500;
}

/* CONTAINER */
.faq-container{
  max-width:1200px;
  margin:20px auto;
  padding:0 15px;
}

/* FAQ BOX */
.faq-box{
  background:#eee;
  margin-bottom:12px;
  border-radius:4px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  padding:12px 15px;
  font-size:13px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

/* ICON */
.faq-question i{
  font-size:12px;
  color:#333;
}

/* ANSWER */
.faq-answer{
  padding:15px;
  font-size:12px;
  color:#333;
  line-height:1.6;
  border-top:1px solid #ddd;
  display:none;
}

/* ACTIVE */
.faq-box.active .faq-answer{
  display:block;
}

/* faq-header end  */



/* .stedent-page-testimonial-section  */



  .stedent-page-testimonial-section {
  text-align: center;
}


.stedent-page-testimonial-title {
  background: #7a0f0f;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 40px;
}


.stedent-page-testimonial-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}


.stedent-page-testimonial-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
}


.stedent-page-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.stedent-page-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stedent-page-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.stedent-page-profile-info strong {
  font-size: 14px;
  font-weight: 600;
}

.stedent-page-profile-info {
  font-size: 12px;
  color: #777;
}

.stedent-page-stars {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ff9800;
}


.stedent-page-quote {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
  padding-left: 22px;
  position: relative;
}

.stedent-page-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 32px;
  color: #bbb;
  font-weight: 600;
}


.stedent-page-pagination{
  margin-top:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding-bottom: 40px;
}

.stedent-page-page{
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:14px;
}

.stedent-page-page.active{
  background:#7a0f0f;
  color:#fff;
}

.stedent-page-page.arrow{
  font-size:18px;
}


@media(max-width:768px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}
.training-section {
  position: relative;
  width: 100%;
  min-height: 63vh;
  overflow: hidden;
}

/* BACKGROUND */
.training-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.training-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #5b0406e6;
  top: 0;
  left: 0;
  z-index: 2;
}

/* CONTAINER */
.training-container {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
}

/* LEFT CONTENT */
.training-left-content {
  flex: 1;
  padding: 35px 190px;
  color: #fff;
}

/* RIGHT IMAGE FULL COVER */
.training-right-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.training-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.training-left-content h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

/* STEPS */
.training-step {
  display: flex;
  align-items: center;
  background: #eee;
  color: #333;
  border-radius: 40px;
  margin-bottom: 18px;
  padding: 7px 25px 7px 8px;
  max-width: fit-content;
}

.training-circle {
  width: 30px;
  height: 30px;
  background: #8b1c1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .training-right-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .training-container {
    flex-direction: column;
  }

  .training-left-content {
    padding: 40px 20px;
  }
}
