:root {
  --font-family: "Inter", sans-serif;
}
.testimonial-card-clickable:hover {
  transform: none !important;
  
}
body {
  font-family: var(--font-family) !important;
}

.reviews-section__all-link {
  justify-content: end !important;
  opacity: 1 !important;
}

.main-header {
  box-shadow: none;
}

.shrink-0 {
  flex-shrink: 0;
}

.link-arrow-right::after {
  content: '';
  background: url('/new-design/landing/link-arrow-right.svg') no-repeat center center;
  width: 21px;
  height: 12px;
  display: inline-block;
  margin-left: 10px;
}

/* Hero Section */
.hero-section {

  overflow: hidden;
}



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

.overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 59, 59, 0.67);
}

.hero-title {
  position: relative;
  color: #fafafa;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  z-index: 2;
  padding-top: 115px;
  white-space: pre-line;
  text-align: left;
}

.hero-content {
  position: relative;
  padding: 0 0 115px 0;
  z-index: 1;
  background: none;
}

.hero-text {
  color: #fafafa;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}

.btn-primary {
  background: #0177cc;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: #fafafa;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  width: max-content;
}

.btn-secondary {
  background: #ff7900;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  width: max-content;
}

.hero-section .hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: start;
}

.btn-secondary-black {
  background: #3D3E40;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  width: max-content;
}

.hero-buttons .btn-outline-primary {
  background: transparent;
  border: 2px solid #ff7900;
  border-radius: 8px;
  padding: 10px 20px;
  color: #fafafa;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-buttons .btn-outline-secondary {
  background: transparent;
  border: 2px solid #0177cc;
  border-radius: 8px;
  padding: 10px 20px;
  color: #fafafa;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Advantages Section */
.advantages-section {
  padding: 40px 0 60px;
  background: url('/new-design/landing/advantage_background.svg') repeat-y center right, url('/new-design/landing/advantage_background2.svg') no-repeat center left;
  background-size: auto 100%, auto 50%;
}

.section-title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  white-space: pre-line;
}

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.stats-number {
  color: #0177cc;
  font-family: var(--font-family);
  font-size: 46px;
  font-weight: 700;
}

.stats-text {
  color: #3d3e40;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

/* Pillars Section */
.pillars-section {
  padding: 40px 0 60px;
  position: relative;
}

.pillar-card {
  background: linear-gradient(99.71deg,
      rgba(210, 217, 235, 0.8) 0%,
      rgba(213, 198, 221, 0.8) 100%);
  border-radius: 10px;
  padding: 25px;
  position: relative;
  height: 100%;
  min-height: 200px;
}

.pillar-title {
  color: #21315a;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-text {
  color: #21315a;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.pillar-img {
  position: absolute;
  max-width: 130px;
}

.pillar-img-1 {
  top: 0;
  left: -70px;
}

.pillar-img-2 {
  top: 0;
  left: -40px;
}

.pillar-img-3 {
  bottom: -40px;
  right: -60px;
}

.media-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content:center;
  align-items:center;
}
.media-modal-content {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 90vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.media-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 96px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transform: translate(100%, -50%);
}
@media (max-width: 991px) {
  .media-modal-close {
    font-size: 48px;
    transform: translate(50%, -50%);
  }
}

.scroll-item.student-card {
  padding: 0 40px;
  width: 50%;
  cursor: pointer;
}
.student-card__media {
  width: 415px;
  border-radius: 20px;
  margin-bottom: 50px;
}
.student-card__title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 30px;  
}
.student-card__description {
  color: #3d3e40;
  font-family: var(--font-family);
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .scroll-item.student-card {
    width: 100%;
  }
  .students-scroll .scroll-next {
    right: 0;
  }
  .students-scroll .scroll-prev {
    left: 0;
  }
}

/* Programs Section */
.programs-section {
  padding: 40px 0 60px;
}

.program-card {
  border: 2px solid #3d3e40;
  border-radius: 10px;
  padding: 0px 0px;
  height: 100%;
  min-height: 180px;
  max-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

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

.program-card-no-border {
  border: none;
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.program-text {
  color: #3d3e40;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Journey Steps Section */
.journey-section {
  padding: 40px 0 60px;
  position: relative;
}

@media (min-width: 768px) {
  .journey-section::before {
    display: block;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.step-item-arrow {
  background: url('/new-design/landing/arrow-round.svg') no-repeat center center;
}

.step-item-arrow-black {
  background: url('/new-design/landing/arrow-round-black.svg') no-repeat center center;
}

.step-item-arrow-black-2 {
  background: url('/new-design/landing/Vector121.svg') no-repeat center center;
  background-size: contain;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.step-title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-text {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.pillars-row {
  gap: 30px;
}

.programs-row {
  gap: 30px;
}

/* Chess Methodology Section */
.chess-methodology-section {
  padding: 40px 0 60px;
}

.methodology-text {
  color: #3d3e40;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.assessment-card {
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.assessment-image {
  margin-bottom: 20px;
}

.assessment-title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.assessment-text {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}

.level-system-card {
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  border-radius: var(--van-size-radius-desktop, 10px);
  border-style: solid;
  border-color: #3d3e40;
  border-width: 2px;
  flex-shrink: 0;
  height: 470px;
  position: relative;
  overflow: hidden;
}

.level-system-title {
  color: #3d3e40;
  font-family: var(--font-family);
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}

.frame-16193 {
  background: #f4cd94;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 95px;
  top: 395.5px;
}

.icon-strk-pawn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.absolute-beginner {
  color: #ffffff;
  text-align: left;
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 90%;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.frame-16194 {
  background: #f2bd71;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 145px;
  top: 366.5px;
}

.icon-strk-pawn2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16195 {
  background: #f09f40;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 195px;
  top: 337.5px;
}

.icon-strk-pawn3 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16196 {
  background: #a4d57f;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 235px;
  top: 308.5px;
}

.icon-strk-pawn4 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16197 {
  background: #71bc3e;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 285px;
  top: 279.5px;
}

.icon-strk-knight {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16198 {
  background: #86c0f6;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 335px;
  top: 250.5px;
}

.icon-strk-knight2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16199 {
  background: #4a9bf4;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 385px;
  top: 221.5px;
}

.icon-strk-bishop {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16200 {
  background: #7a91db;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 425px;
  top: 192.5px;
}

.icon-strk-bishop2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16201 {
  background: #294cc6;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 465px;
  top: 163.5px;
}

.icon-strk-rock {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16202 {
  background: #d770a3;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 505px;
  top: 134.5px;
}

.icon-strk-rock2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16203 {
  background: #c62b6b;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 545px;
  top: 105.5px;
}

.icon-strk-queen {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

.frame-16204 {
  background: #c63620;
  border-radius: var(--van-size-radius-desktop, 10px);
  padding: 2px 10px 2px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 118px;
  position: absolute;
  left: 595px;
  top: 76.5px;
}

.icon-strk-king {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}

/* Chess Teaches Section */
.chess-teaches-section {
  padding: 100px 0 100px;
  background: rgba(1, 119, 204, 0.2);
  position: relative;
}

.real-skills-section {
  padding: 80px 0 80px;
  background-image: url('/new-design/landing/real-skills-bg.svg');
  background-position: bottom right;
  background-repeat: no-repeat;
}

.bold-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.chess-teaches-bg {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 10%;
}

.chess-heroes-section {
  padding: 40px 0 40px;
}

.banner-boy {
  background-image: url('/new-design/landing/banner-boy-30.webp');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}

.chess-heroes-gradient-bg {
  background: linear-gradient(to right, #768293, #ecf3ff);
  padding: 40px 0 40px;
  border-radius: 10px;
  padding: 0;
}

.chess-heroes-logo {
  width: 196px;
}

.chess-heroes-text {
  color: #ffffff;
  text-align: left;
  font-family: var(--font-family);
  font-size: 40px;
  letter-spacing: -0.011000000000000001em;
  font-weight: 700;
}

.chess-heroes-button {
  background: url('/new-design/landing/_0000000-set-08012023-10.png') no-repeat center center;
  width: 160px;
  color: #3D3E40;
  font-size: 25px;
  line-height: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chess-heroes-button:hover {
  color: #3D3E40;
}

.chess-heroes-content {
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.top-performers-section {
  padding: 40px 0 40px;
}

.performer-card {
  border: 2px solid #3d3e40;
  border-radius: 50%;
  height: 180px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.performer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Scroll Container with Snapping */
.scroll-container {
  position: relative;
  width: 100%;
  padding: 20px 30px;
  margin: 30px 0;
}

.scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

/* Center slides if fewer than 3 */
.scroll-wrapper.few-items {
  justify-content: center;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.scroll-item {
  flex: 0 0 auto;
  width: 33.333%;
  scroll-snap-align: start;
  padding: 0 15px;
}

/* Desktop view: show 3 items */
@media (max-width: 991px) {
  .scroll-item {
    width: 100%;
  }
}

.scroll-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  width: 40px;
  height: 40px;
  z-index: 2;
  cursor: pointer;
}

.scroll-prev {
  left: -10px;
  background-image: url('/new-design/landing/slider-arrow-left.svg');
}

.scroll-next {
  right: -10px;
  background-image: url('/new-design/landing/slider-arrow-right.svg');
}

.line-background {
  background-image: url('/new-design/landing/vector125.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
  width: 100%;
  height: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.event-card {
  border-radius: 10px;
  padding: 20px 20px;
  height: 100%;
  min-height: 180px;
  max-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}

.event-card-background {
  background: url('/new-design/landing/mask-group5.svg') no-repeat bottom right, url('/new-design/landing/mask-group6.svg') no-repeat bottom right;
  width: 100%;
  height: 100%;
}

.event-card-blue {
  background: linear-gradient(98.94deg, rgba(255, 255, 255, 0.8) 0%, rgba(1, 119, 204, 0.8) 100%);
}

.event-card-orange {
  background: linear-gradient(98.94deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 121, 0, 0.8) 100%);
}

.event-card-block-orange {
  background: #ff7900;
  border-radius: 5px;
  padding: 10px 15px 10px 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.event-card-block-blue {
  background: #0177cc;
  border-radius: 5px;
  padding: 10px 15px 10px 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.event-card-title {
  padding: 10px 0 10px 0;
  color: #3d3e40;
  text-align: left;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  position: relative;
}

.event-card-text {
  color: #3d3e40;
  text-align: left;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  min-height: 30%;
}

.event-card-button {
  padding-top: 10px;
  text-align: left;
}

.participate-event-link,
.participate-event-link:after {
  font-weight: bold;
  font-size: 16px;
  color: #0177CC !important;
  fill: #0177CC !important;
  stroke: #0177CC !important;
}

.level-system-grid-container {
  position: relative;
}

.frame-16071 {
  position: relative;
  top: -60px;
  left: 35%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .chess-heroes-text {
    font-size: 30px;
  }

  .banner-boy {
    height: 200px;
  }

  .chess-heroes-content {
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .skill-card {
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }

  .chess-teaches-bg {
    display: none;
  }

  .frame-16071 {
    position: relative;
    top: -60px;
    left: 0;
  }

  .level-system-card {
    border: none;
  }

  .level-system-title {
    text-align: center !important;
  }

  .journey-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .step-item-arrow-black-2,
  .step-item-arrow {
    height: 60px;
    transform: rotate(90deg);
    background-size: 60px 60px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .step-item {
    gap: 1px;
  }

  .programs-row {
    gap: 20px;
  }

  .pillar-img {
    max-width: 80px;
  }

  .pillar-img-2 {
    top: -40px;
    left: -40px;
  }

  .pillars-row {
    padding-left: 40px;
    padding-right: 40px;
    gap: 20px;
  }

  .hero-content-row {
    justify-content: center;
  }

  .hero-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }





  .hero-title {

    width: 100%;
    right: 0;
    padding: 0 15px;
    z-index: 2;
    margin-bottom: 0;
    color: #fafafa;
    text-align: center;
  }



  .hero-text {
    color: #3d3e40;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    gap: 20px;
    flex-direction: column;
  }

  .hero-buttons .btn {
    display: block;
    width: max-content;
    font-size: 14px;
    padding: 5px 15px;
  }

  .hero-buttons .btn-outline-primary,
  .hero-buttons .btn-outline-secondary {
    padding: 3px 13px;
    color: #000000;
  }

  .section-title {
    padding-left: 60px;
    padding-right: 60px;
    text-align: center;
    font-size: 20px;
  }
}



.frame-16193 {
  left: -150px;
  top: 395.5px;
}

.frame-16194 {
  left: -110px;
  top: 366.5px;
}

.frame-16195 {
  left: -70px;
  top: 337.5px;
}

.frame-16196 {
  left: -30px;
  top: 308.5px;
}

.frame-16197 {
  left: 10px;
  top: 279.5px;
}

.frame-16198 {
  left: 50px;
  top: 250.5px;
}

.frame-16199 {
  left: 90px;
  top: 221.5px;
}

.frame-16200 {
  left: 130px;
  top: 192.5px;
}

.frame-16201 {
  left: 170px;
  top: 163.5px;
}

.frame-16202 {
  left: 210px;
  top: 134.5px;
}

.frame-16203 {
  left: 250px;
  top: 105.5px;
}

.frame-16204 {
  left: 290px;
  top: 76.5px;
}

@media (max-width: 768px) {
  .frame-16193 {
    left: 0px;
    top: 395.5px;
  }

  .frame-16194 {
    left: 15px;
    top: 366.5px;
  }

  .frame-16195 {
    left: 30px;
    top: 337.5px;
  }

  .frame-16196 {
    left: 45px;
    top: 308.5px;
  }

  .frame-16197 {
    left: 60px;
    top: 279.5px;
  }

  .frame-16198 {
    left: 75px;
    top: 250.5px;
  }

  .frame-16199 {
    left: 90px;
    top: 221.5px;
  }

  .frame-16200 {
    left: 105px;
    top: 192.5px;
  }

  .frame-16201 {
    left: 120px;
    top: 163.5px;
  }

  .frame-16202 {
    left: 135px;
    top: 134.5px;
  }

  .frame-16203 {
    left: 150px;
    top: 105.5px;
  }

  .frame-16204 {
    left: 165px;
    top: 76.5px;
  }
}

.btn-outline-primary {
  color: #000000;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

.challenge-section {
  background: url('/new-design/landing/dailysectionback.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}

.challenge-section-play {
  background: none;
}

.challenge-section .section-title {
  color: #ffffff;
  white-space: pre-line;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.challenge-section .challenge-item {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  background: #FFFCF4;
  min-width: 160px;
  border: 2px solid #1B9DFB;
  box-shadow: 0px 0px 10px 0px #ACE4FC;
  min-height: 105px;
}

.chalenge-item-disabled {
  background: #CACACA !important;
  box-shadow: none !important;
  border: 2px solid #000000 !important;
}

.chalenge-item-active {
  background: #1B9DFB !important;
}

.chalenge-item-active .challenge-title {
  color: #ffffff !important;
}

.challenge-section .challenge-item .challenge-title {
  color: #3D475C;
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.section-title-orange {
  color: #F76E1A !important;
  margin-top: 50px;
  margin-bottom: 0px;
}

.challenge-section .challenge-row {
  gap: 15px;
}

.challenge-section .challenge-buttons {
  padding: 10px;
}

.chalenge-sticker {
  position: absolute;
  top: 33%;
  right: -55px;
  background: #ff7900;
  border-radius: 5px;
  padding: 2px 15px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #ffffff;
  transform: rotate(90deg);
}

.results-text {
  color: #3D3E40;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: pre-line;
}

.results-section {
  margin-bottom: 80px;
}

.join-reason-section .section-title {
  margin-bottom: 10px;
}

.reason-item-1 {
  background: url('/new-design/landing/andvanteges-icon-1.svg') no-repeat;
}

.reason-item-2 {
  background: url('/new-design/landing/andvanteges-icon-8.svg') no-repeat;
}

.reason-item-3 {
  background: url('/new-design/landing/andvanteges-icon-9.svg') no-repeat;
}

.reason-item-4 {
  background: url('/new-design/landing/andvanteges-icon-6.svg') no-repeat;
}

.reason-item-5 {
  background: url('/new-design/landing/andvanteges-icon-4.svg') no-repeat;
}

.reason-item-6 {
  background: url('/new-design/landing/andvanteges-icon-2.svg') no-repeat;
}

.reason-item-7 {
  background: url('/new-design/landing/andvanteges-icon-7.svg') no-repeat;
}

.reason-item-8 {
  background: url('/new-design/landing/andvanteges-icon-5.svg') no-repeat;
}

.reason-item-9 {
  background: url('/new-design/landing/andvanteges-icon-3.svg') no-repeat;
}

.reason-item {
  background-position: left top;
  text-align: left;
  padding-left: 50px;
  padding-right: 60px;
  padding-top: 24px;
}

.reason-item-title {
  color: #FF7900;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.reason-item-content {
  color: #3D3E40;
  font-weight: bold;
  font-size: 16px;
  max-width: 300px;
}

@media (max-width: 991px) {
  .join-reason-section .section-title {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .reason-item {
    background-position: center top !important;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 120px;
  }

  .hero-img2 {
    object-position: -275px !important;
  }
}


/* Advantages Section */
.private-classes-advantages-section {
  padding: 40px 0 60px;
  background: url('/new-design/landing/private-advantages-background.svg') repeat-y center center;
  background-size: 100% 100%;
}

.section-text {
  color: #3D3E40;
  font-size: 16px;
  font-weight: bold;
  white-space: pre-line;
}

.private-classes-journey-section .step-text {
  font-size: 16px;
  font-weight: bold;
  white-space: pre-line;
}

.private-classes-journey-section .background-container {
  background: rgba(1, 119, 204, 0.2) !important;
  padding: 40px 0 40px;
}

.private-classes-why-work .section-text {
  font-weight: normal;
  white-space: pre-line;
}

.contacts-card {
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  border-radius: var(--van-size-radius-desktop, 10px);
  border-style: solid;
  border-color: #3d3e40;
  border-width: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: max-content;
  height: max-content;
}

.contacts-card dl {
  display: flex;
  gap: 30px;
}

.contacts-card dt {
  min-width: 100px;
  text-align: left;
}

.contacts-card dd {
  text-align: left;
}

.hero-img-mobile {
  display: none;
}

@media (max-width: 767px) {


  .private-classes-journey-section .step-icon {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .private-classes-why-work .section-text {
    text-align: center;
  }

  .private-classes-why-work .row {
    flex-direction: column;
    gap: 20px;
  }

  .contacts-section {
    margin-top: 40px;
  }

  .contacts-section .row {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .contacts-section .contacts-card {
    width: 100%;
  }
}

.journey-start-section {
  margin: 70px 0;
}

.journey-start-section .section-text {
  font-weight: normal;
}

.join-tour-reason-section .reason-item-1 {
  background: url('/new-design/landing/tour-icon-1.svg') no-repeat;
}

.join-tour-reason-section .reason-item-2 {
  background: url('/new-design/landing/tour-icon-2.svg') no-repeat;
}

.join-tour-reason-section .reason-item-3 {
  background: url('/new-design/landing/tour-icon-3.svg') no-repeat;
}

.join-tour-reason-section .reason-item-4 {
  background: url('/new-design/landing/tour-icon-4.svg') no-repeat;
}

.join-tour-reason-section .reason-item-5 {
  background: url('/new-design/landing/tour-icon-5.svg') no-repeat;
}

.join-tour-reason-section .reason-item-6 {
  background: url('/new-design/landing/tour-icon-6.svg') no-repeat;
}

.tournament-banner {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding: 17px 3.78% 23px 0;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #D2D9EB 0%, #D5C6DD 100%);
  color: #3D3E40;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tournament-banner__main-part {
  display: flex;
  align-items: center;
  gap: 4.36%;
}

.limited-spots {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 0 12px;
  border: 3px solid #fff;
  border-radius: 30px;
  width: max-content;
  margin-bottom: 8px;
}

.registration-countdown {
  flex-shrink: 0;
  border: 3px solid #fff;
  border-radius: 8px;
  padding: 27px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.registration-countdown p {
  margin: 0;
}

.registration-countdown__timer {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.registration-countdown__date {
  font-weight: 700;
}

.tournament-banner .btn {
  line-height: 1.3;
}

.tournament-banner__img {
  width: 14%;
}

.tournament-banner__content {
  width: 100%;
}

.tournament-banner__title {
  font-size: 60px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 17px;
}

.tournament-banner__subtitle {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: unset;
}

.tournament-banner__description-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tournament-banner__description-line:not(:last-child) {
  margin-bottom: 30px;
}

.tournament-banner__description-line:last-child {
  align-items: flex-end;
}

.tournament-banner__rules {
  text-align: right;
  font-size: 14px;
}

.tournament-banner__list {
  margin-left: 3%;
  margin-bottom: 10px;
  display: grid;
  gap: 10px;
}

.tournament-banner__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.banner-scroll {
  margin-left: 5%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
}

.tournament-banner_scroll {
  padding: 14px 14px 23px;
  gap: unset;
}

.tournament-banner_scroll .tournament-banner__img {
  width: 29%;
}

.tournament-banner_scroll .tournament-banner__title {
  margin-bottom: 28px;
}

.tournament-banner_scroll .tournament-banner__subtitle {
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  .limited-spots {
    font-size: 16px;
  }

  .limited-spots img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 991px) {
  .tournament-banner-section {
    max-width: unset;
    padding: unset;
  }

  .tournament-banner {
    font-size: 14px;
    margin: 0;
    border-radius: 0;
  }

  .tournament-banner_timer {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tournament-banner__secondary-part {
    padding-left: 3.78%;
  }

  .registration-countdown {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 11px;
    justify-content: center;
  }

  .registration-countdown__timer {
    font-size: 24px;
  }

  .registration-countdown img {
    width: 48px;
    height: 48px;
  }

  .tournament-banner__title {
    font-size: 30px;
  }

  .tournament-banner__subtitle {
    font-size: 20px;
  }

  .tournament-banner__rules {
    font-size: 12px;
  }

  .tournament-banner__list {
    margin-left: 2%;
  }

  .banner-scroll {
    margin-left: 3%;
    gap: 10px;
    font-size: 14px;
  }
}

.tournament-banner-text-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}

.tournament-banner-text-title {
  font-size: 30px;
  font-weight: bold;
}

.tournament-banner-text-description {
  font-size: 16px;
  font-weight: bold;
}

.tournament-banner .discount {
  font-size: 100px;
  font-weight: bold;
  color: #ffffff;
}

.tournament-banner .discount .discount-percent {
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
}

@media (max-width: 767px) {
  .limited-spots {
    width: unset;
    line-height: 1.2;
    text-align: center;
    padding: 6px;
  }

  .tournament-banner-container {
    padding-left: 0;
    padding-right: 0;
  }

  .tournament-banner .banner-img-block {
    order: 2;
  }

  .tournament-banner .discount {
    order: 3;
  }

  .tournament-banner .buy-now-block {
    order: 4;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .tournament-banner .discount {
    font-size: 80px;
  }

  .tournament-banner .discount .discount-percent {
    font-size: 30px;
  }

  .banner-img-block img {
    max-width: 180%;
  }

  .tournament-banner-text-block {
    text-align: center;
  }

  .tournament-banner-text-title {
    margin-top: 20px;
  }

  .join-tour-reason-section {
    margin-top: 20px !important;
    padding-top: 20px !important;
  }
}

.input-group {
  width: auto;
}

.tournaments__table .grid-table {
  table-layout: auto;
}

.tournaments__table .grid-table a.blue {
  color: #0177CC;
  font-weight: bold;
}

@media (max-width: 767px) {
  .tournaments__filters {
    justify-content: center;
  }
}

.programs1-section {
  background: rgba(255, 121, 0, 0.2);
  padding: 40px 0 10px;
}

.line-background.line-background-2 {
  margin: 0;
  padding: 0;
  background-position: center top;
  background-size: auto 70%;
  height: 20px;
  width: 100%;
  position: relative;
  top: -7px;
}

.programs1-section-background {
  background: url('/new-design/landing/advantage_background.svg') repeat-y center right, url('/new-design/landing/advantage_background2.svg') no-repeat center left;
  background-size: auto 100%, auto 50%;
}

.programs-selector-section {
  padding: 40px 0;
}

.programs-selector-section .list-group-item {
  border: 1px solid transparent;
  margin-bottom: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  max-height: 45px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

}

.programs-selector-section .list-group-item img {
  margin-right: 10px;
  margin-left: 10px;
}

.programs-selector-section .list-group-item.active {
  background-color: transparent;
  border: 2px solid #000000;
  color: #3d3e40;
}

.programs-selector-title {
  font-size: 28px;
  font-weight: bold;
  color: #3d3e40;
  text-align: center;
}

.programs-selector-text {
  font-size: 16px;
  font-weight: bold;
  color: #3d3e40;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;

}

.programs-selector-list {
  margin: 0 auto;
  width: max-content;
}

.programs-selector-list li {
  margin-bottom: 20px;
}

.programs-selector-section .program-info-block {
  border: 2px solid #3d3e40;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}

.journey-start-section.journey-start-section-2 {
  background: url('/new-design/landing/journey-section-2-back.svg') no-repeat center center;
  background-size: auto;
  padding-bottom: 100px;
}

.programs-selector-list-block-slider {
  display: none;
}

.program-selector-item a {
  border: 2px solid #000000;
  color: #3d3e40;
  margin: auto !important;
}

@media (max-width: 767px) {
  .programs-selector-list-block {
    display: none;
  }

  .programs-selector-list-block-slider {
    display: block;
  }

  .scroll-wrapper.few-items {
    justify-content: unset;
  }

  .programs-selector-section {
    padding: 0;
  }

  .line-background.line-background-2 {

    background-size: 80% 80%;
  }

  .tab-pane.fade:not(.show) {
    display: none;
  }

  .program-info-block-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .programs-selector-section {
    margin-bottom: 50px;
  }
}

#gameInfo {
  font-weight: 600;
  padding: 10px;
}

.main-header {
  background-color: var(--orange);
}

.main-header .navbar-nav .nav-link {
  color: #ffffff;
}

.btn {
  border-radius: 15px;
}

.btn-primary {
  background-color: var(--blue);
  border-color: var(--blue);
}

a.btn-primary {
  text-decoration: none !important;
}

.btn-sign-in {
  background-color: var(--blue);
  border-color: var(--blue);
}

span.title-grey {
  opacity: 0.6;
}

span.title-blue {
  color: var(--blue);
}

.hero-buttons .btn-outline-primary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-text {
  font-size: 16px;
}

.hero-background {

  background-image: url('/new-design/landing/kv_i_11.webp'), url('/new-design/landing/kv_back.svg');
  background-position: right bottom, center bottom;
  /* Positions for each image */
  background-repeat: no-repeat, no-repeat;
  /* Repeat settings for each image */
  border-radius: 0 0 80px 80px;
  background-size: auto, cover;
}

.hero-background.private-classes-hero {

  background-image: url('/new-design/landing/child_back_person1.png'), url('/new-design/landing/kv_back.svg');
  background-position: 85% 10%, center bottom;
  /* Positions for each image */
  background-repeat: no-repeat, no-repeat;
  /* Repeat settings for each image */
  border-radius: 0 0 80px 80px;
  background-size: auto, cover;
}

.hero-buttons {
  justify-content: center;
}

.kv-macbook {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv-macbook img {
  width: 100%;
  max-width: 700px;
}

.advantages-section {
  padding: 60px 0 60px 0;
  background: none;
}

.advantages-section .section-title,
.programs-section .section-title {
  text-align: left;
  margin-left: 10%;
  margin-bottom: 70px;
}

.section-title {
  margin-bottom: 70px;
}

.stats-row {
  gap: 20px;
}

.stats-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
  border: 1px solid #3D3E40;
  width: auto;

}

.stats-item .stats-number {
  color: var(--blue);
  font-size: 46px;
  font-family: var(--h4-heading-font-family);
}

.stats-item .stats-text {
  font-weight: bold;
  font-size: 20px;
  text-align: left;


}

.stats-item .stats-text .w1 {
  width: 175px;
}

.stats-item.orange {
  color: #ffffff !important;
  background-color: var(--orange) !important;
  border: 1px solid var(--orange) !important;
}

.stats-item.orange .stats-number {
  color: #ffffff !important;
}

.stats-item.orange .stats-text {
  color: #ffffff !important;
}

.stats-item.blue {
  color: #ffffff !important;
  background-color: var(--blue) !important;
  border: 1px solid var(--blue) !important;
}

.stats-item.blue .stats-number {
  color: #ffffff !important;
}

.stats-item.blue .stats-text {
  color: #ffffff !important;
}

.stats-item.grey {
  background-color: #ECECEC !important;
  border: 1px solid #ECECEC !important;
}

.stats-item.margin-1 {
  margin-left: 20%;
}

.stats-item.margin-2 {
  margin-left: -20%;
}

.pillar-card {
  background: rgba(61, 62, 64, 0.1);
  padding: 26px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.pillar-card .pillar-title {
  font-size: 26px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  text-align: left;
  margin-bottom: 30px;
}

.pillar-card .pillar-text {
  font-size: 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.pillar-left {
  background-color: var(--orange);
  border-radius: 15px;
  height: 540px;
  max-width: 360px;

  position: relative;
}

.pillar-left-image {
  scale: 1.2;
  position: absolute;
  bottom: 45px;
  left: -60px;

}

.pillar-left-image2 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20%;


}

.pillar-card-c1 {
  padding-left: 40px;
}

.pillar-card-c2 {
  padding-left: 40px;
}

.pillar-card-c3 {
  padding-left: 40px;
  padding-top: 40px;
}

.programs-section .programs-row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.programs-row {
  gap: 50px;
}

.programs-section .programs-row .program-card-container {
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  display: flex;
  gap: 70px;
}

.programs-section .programs-row .program-card,
.programs-section .programs-row .program-card-no-border {
  width: 40%;
}

.programs-section .programs-row .program-card-no-border {
  padding: 0;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
}

.programs-section .programs-row .program-card {
  border: none;
  max-width: unset;
  max-height: unset;
  height: unset;
}

.programs-section .programs-row .program-title {
  font-size: 26px;
  font-weight: bold;
  font-family: var(--font-family);
  margin: 0;
  text-align: left;
}

.programs-section .programs-row .program-text {
  font-size: 16px;
  font-family: var(--font-family);
  text-align: left;
  margin: 0;
}

.journey-section .step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ECECEC;
  border-radius: 20px;
  padding: 30px;
  max-height: 200px;
}

.journey-section .step-item .step-title {
  font-size: 26px;
  text-align: left;
  white-space: nowrap;
}

.journey-section .step-item .step-text {
  font-size: 16px;
  text-align: left;

}

.step-item-arrow {
  height: 51px
}

.step-item-arrow.arrow-down {
  background-image: url('/new-design/landing/adventure_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: right center;
  height: 150px;
  width: 37%;
}

.step-item-arrow.arrow-right {
  background-image: url('/new-design/landing/adventure_arrow_right.svg');
  background-repeat: no-repeat;
  background-position: center center;

}

.step-item-arrow.arrow-left {
  background-image: url('/new-design/landing/adventure_arrow_right.svg');
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
}

.step-item.orange {
  background-color: var(--orange);
  color: #ffffff;
}

.step-item.orange .step-title {
  color: #ffffff;
}

.step-item.orange .step-text {
  color: #ffffff;
}

.step-item.blue {
  background-color: var(--blue);
  color: #ffffff;
}

.step-item.blue .step-title {
  color: #ffffff;
}

.step-item.blue .step-text {
  color: #ffffff;
}

.assessment-card {
  padding: 0;
}

.chess-methodology-section .assessment-title {
  font-size: 36px;
  line-height: normal;
  text-align: left;
  margin-bottom: 40px;
}

.chess-methodology-section .assessment-text {
  text-align: left;
  width: 50%;
}

.child-card-row {
  background-color: #ECECEC;
  border-radius: 30px;
  overflow: hidden;
  align-items: center;

}
.child-card-row .content-text {
  position: relative;
  z-index: 2;
}
.child-section {
  margin-top: 15rem;

}

.child-section .child-image-container {
  position: relative;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  min-height: 375px;
}

.child-section .container {

  position: relative;
}

.child-section .child-image {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}

.child-section .title {
  font-size: 26px;
  font-weight: bold;

}

.child-section .text {
  font-size: 16px;
  padding: 40px 0;
}

.chess-teaches-section {
  background: none;
}

.chess-teaches-section .step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 50px
}

.chess-teaches-section .step-item .step-text-container {
  text-align: left;
  width: 40%;
}

.step-item .step-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px;
  padding-top: 0;
  line-height: normal;
}

.step-item .step-text {
  font-size: 16px;
  padding: 10px;
  line-height: normal;
}

.skill-card-title {
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
}

span.title-orange {
  color: var(--orange);
}

.real-skills-section {
  background: none;
}

.top-performers-section .methodology-text {
  font-weight: normal;
}

.top-performers-section .performer-card {
  width: 100%;
  height: 100%;
  border: none;

}

.top-performers-section .performer-card,
.top-performers-section .performer-card img {
  border-radius: 15px;
  border: none;
  max-height: 285px;

}

.scroll-next {
  background-image: url('/new-design/landing/arrow_right_blue.svg');
}

.scroll-prev {
  background-image: url('/new-design/landing/arrow_right_blue.svg');
  transform: translateY(-50%) rotate(180deg);
}

.celebrating-students-section .program-card {

  border: none;
  width: 100%;
  height: 100%;
}

.celebrating-students-section .program-card img {
  max-height: 285px;
}

.events-card-row {
  background-color: #ECECEC;
  border-radius: 30px;
  overflow: hidden;
  align-items: center;

}

.events-section {
  margin-top: 15rem;
  margin-bottom: 10rem;
}

.events-section .events-image-container {
  position: relative;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  min-height: 375px;
}

.events-section .container {

  position: relative;
}

.events-section .events-image {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}

.events-section .title {
  font-size: 26px;
  font-weight: bold;

}

.events-section .text {
  font-size: 16px;
  padding: 40px 0;
  width: 60%;
}

.events-section a {
  font-weight: bold;
  text-decoration: underline;
}

.hero-background2 {
  background-image: url('/new-design/landing/kv_i_11.webp');
  background-color: var(--orange);
  height: 320px;
  position: absolute;
  background-position: right 140px, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 60%, auto;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  border-radius: 0 0 80px 80px;
}

.chess-teaches-section.private-classes .step-item {
  background-color: rgba(61, 62, 64, 0.1);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  padding-right: 40px;
}
.chess-teaches-section.private-classes .steps-stretch {
  align-items: stretch;
}
.chess-teaches-section.private-classes .step-item.blue {
  background-color: var(--blue);
  color: #ffffff;
}

.chess-teaches-section.private-classes .step-item .step-icon {
  margin: 3rem;
  width: 55px;
  height: 55px;
}

.chess-teaches-section.private-classes .step-item .step-title {
  text-align: left;
  margin: 0;
  padding: 0;
}

.child-section.private-classes {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.child-section.private-classes .child-image-container {
  position: relative;
}

.child-section.private-classes .child-image-container img {
  position: absolute;
  bottom: 0;
}

.child-section.private-classes .child-card-row {
  overflow: visible;
}

.hero-background.tournaments-section {

  background-image: url('/new-design/landing/tournaments-kid.webp'), url('/new-design/landing/tournaments_kv_back.svg');
  background-position: right bottom, center bottom;
  /* Positions for each image */
  background-repeat: no-repeat, no-repeat;
  /* Repeat settings for each image */
  border-radius: 0 0 80px 80px;
  background-size: auto, cover;
}

.hero-background.tournaments-section .hero-title {
  text-align: left;
}

.hero-background.tournaments-section .hero-buttons {
  justify-content: flex-start;
}

.chess-teaches-section.tournaments-section .step-item {
  padding-bottom: 20px;

}

.chess-teaches-section.tournaments-section .step-item .step-text-container {
  text-align: left;
  width: 60%;
}

.chess-teaches-section.tournaments-section .step-item .step-title {
  padding: 0;
}

.events-section.tournaments-section .skill-card-title {
  font-size: 36px;
}

.events-section.tournaments-section .events-card-row {
  padding: 4rem;
  align-items: flex-start;
  justify-content: space-between !important;
}

.events-section.tournaments-section .tournaments-img-container {
  border-radius: 30px;
  height: 285px;
}

.events-section.tournaments-section {
  margin-top: 0;
}

.events-section.tournaments-section .text {
  width: 100%;
}

.hero-background.group-classes-section {

  background-image: none, url('/new-design/landing/group_classes_kv.svg');
  background-position: right bottom, center bottom;
  /* Positions for each image */
  background-repeat: no-repeat, no-repeat;
  /* Repeat settings for each image */
  border-radius: 0 0 80px 80px;
  background-size: auto, cover;
}

.group-classes-section .pillar-left {

  height: 500px;

}

.group-classes-section .pillar-left-image {
  scale: 1.51;
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-25%);
}

.group-classes-section .pillar-left-image2 {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 20%;
}

.group-classes-section .pillar-right {
  justify-content: center;
  gap: 30px;
}

.child-section.group-classes-section {
  margin-bottom: 10rem;
}

.landing-card-section {
  background-color: #ECECEC;
  border-radius: 30px;
  padding: 50px;
  margin-bottom: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.landing-card-section__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.landing-card-section__info h2 {
  margin-bottom: 0;
}
.landing-card-section__image {
  border-radius: 20px;
}

.our-events-section {
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .btn {
    font-size: 14px !important;
  }
  .hero-background.group-classes-section .btn-outline-primary {
    border-color: #ffffff;
    color: #ffffff;
  }
  .hero-background.group-classes-section .hero-text {
    color: #ffffff;
  }

  .hero-background.group-classes-section .kv-macbook {
    margin-right: 0;
  }

  .child-section.private-classes .child-image-container img {
    position: relative;
  }

  .hero-background.tournaments-section .hero-title {
    text-align: center;
  }

  .chess-teaches-section.tournaments-section .step-item .step-title {
    text-align: center;
  }

  .hero-background.tournaments-section {

    background-image: none, url('/new-design/landing/tournaments_kv_back.svg');
    background-position: right bottom, center bottom;
    /* Positions for each image */
    background-repeat: no-repeat, no-repeat;
    /* Repeat settings for each image */
    border-radius: 0 0 80px 80px;
    background-size: auto, cover;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .hero-background {
    background: none;
  }

  .main-header .navbar-nav .nav-link {
    color: var(--text-color);
  }



  .kv-content {
    order: 2;
  }

  .kv-macbook {
    margin-top: 80px;
    width: 70%;
    margin-right: 20%;
  }

  .hero-content {
    padding: 30px 30px 30px 30px;
    position: relative;

    margin-top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .hero-content .hero-text {
    font-size: 14px;
    font-weight: bold;
  }

  .hero-buttons,
  .hero-buttons .btn {
    width: 100%;
  }

  .hero-buttons .btn-outline-primary {

    border-color: var(--orange);
    color: var(--orange);
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {

    background-color: #ffffff;

  }

  .hero-title {
    padding-top: 20px;
    font-size: 18px;
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-text {
    font-size: 16px;
  }

  .stats-row {
    gap: 0;
  }

  .stats-item .stats-number {
    font-size: 34px;
  }

  .stats-item .stats-text {
    font-size: 14px;
  }

  .stats-item.st1 {
    margin-left: 30%;
    width: 50%
  }

  .stats-item.st2 {
    margin-left: -20%;
    width: 60%
  }

  .stats-item.st3 {
    margin-left: 0;
    width: 48%;
    order: 1;
    margin-right: 4px;
  }

  .stats-item.st4 {
    margin-left: 0;
    order: 3;
  }

  .stats-item.st5 {
    margin-left: 0;
    width: 48%;
    order: 2;
  }

  .stats-item.st6 {
    margin-left: -20%;
    width: 60%
  }

  .stats-item.st7 {
    margin-left: 20%;
    width: 60%
  }

  .advantages-section {
    padding-bottom: 0px;
  }

  .pillar-right {
    align-items: center;
    justify-content: center;
  }

  .pillar-card-c1,
  .pillar-card-c2,
  .pillar-card-c3 {
    padding: 20px;
  }

  .pillar-left-cnt {
    padding: 20px;
  }

  .pillar-left {
    height: 540px;
    max-width: 100%;
  }

  .pillar-left-image {
    scale: 1;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .programs-section .programs-row .program-card-container {
    gap: 10px;
    flex-direction: column;
    padding: 20px;
  }

  .programs-section .programs-row .program-card-container .program-card {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .programs-section .programs-row {
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 0;
  }

  .programs-section .programs-row .program-card-no-border {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-self: center;
  }

  .programs-section .programs-row .program-card-no-border .btn-primary {
    width: 100%;
  }

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

  .step-item-arrow.arrow-down {
    background-image: url('/new-design/landing/adventure_arrow_down.svg');
    background-repeat: no-repeat;
    background-position: center center;
    height: 110px;
    width: 37%;
    transform: rotate(120deg);
  }

  .step-item-arrow.arrow-right {
    height: 110px;
    width: 37%;
    transform: rotate(90deg);
    background-position: center center;
  }

  .step-item-arrow.arrow-left {
    height: 110px;
    width: 37%;
    transform: rotate(90deg);
    background-position: center center;
  }

  .chess-methodology-section .assessment-title {
    font-size: 20px;
    text-align: center;
  }

  .chess-methodology-section .assessment-text {
    text-align: center;
    width: 100%;
  }

  .chess-methodology-section {
    padding-top: 0;
  }

  .assessment-card {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .child-section {
    margin-top: 0;
    padding: 10px;
  }

  .child-section .title {
    margin-top: 20px;
    font-size: 18px;

  }

  .child-section .button,
  .child-section .button a {
    width: 100%;
  }

  .child-section .content-text {
    text-align: center;
    padding: 20px;
  }

  .child-section .child-card-row {
    height: 530px;
    align-items: flex-start;
  }

  .child-section .child-image {
    position: absolute;
    bottom: 30px;
    left: 60px;

    scale: 1.4;
  }

  .child-section .container {
    overflow: hidden;
    border-radius: 30px;
  }

  .journey-section {
    padding: 40px 10px 60px;
    position: relative;
  }

  .chess-teaches-section .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .chess-teaches-section .step-item .step-text-container {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .step-icon {
    margin: 0;
    

  }
  .journey-section .step-item .step-text {
    padding-left: 30px;
  }
  .journey-section .step-item .step-title {
    margin-bottom: 0;
  }
  .chess-teaches-section .step-item .step-text {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .step-item .step-title {
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .real-skills-section {
    padding: 0
  }

  .chess-teaches-section {
    padding-bottom: 0;
  }

  .skill-card-title {
    font-size: 20px;
    text-align: center;
  }

  .real-skills-row {
    gap: 20px;
    text-align: center;
  }

  .events-card-row {
    height: 484px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .events-section .events-image {
    scale: 1;
  }

  .events-section .title {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
  }

  .events-section .text {
    text-align: center;
    width: 100%;
  }

  .events-section .button,
  .events-section .button a {
    width: 100%;
    text-align: center;
  }

  .events-section {
    margin-top: 0;
    padding: 10px;
  }

  .hero-background.private-classes-hero {
    background-image: none, url('/new-design/landing/kv_back.svg');

  }

  .hero-background.private-classes-hero .btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
  }

  .chess-teaches-section.private-classes {
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .chess-teaches-section.private-classes .step-item {
    padding: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .chess-teaches-section.private-classes .step-item .step-title {
    text-align: center;
  }

  .real-skills-section.private-classes {
    margin-top: 5rem;
    margin-bottom: 7rem !important;
  }

  .child-section.private-classes {
    height: auto;
  }

  .child-section.private-classes .child-image-container {
    min-height: auto;
  }

  .child-section.private-classes .child-card-row {
    height: auto;
  }

  .child-section.private-classes .col-md-3 {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  .landing-card-section {
    flex-direction: column;
    padding: 20px;
  }
  .landing-card-section__info {
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .landing-card-section__image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-left: 30%;
    width: 70%;
  }
}

@media (max-width: 575px) {
  .landing-card-section {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    padding: 0;
  }
  .landing-card-section__info {
    padding: 20px 20px 0;
  }
  .landing-card-section__image {
    border-radius: 20px 20px 0 0;
  }
}
