@charset "UTF-8";
:root {
  --color-main: #202844;
  --color-main-l: #111d48;
  --color-secondary: #646f79;
  --color-active: #de1318;
  --color-active-d: #d12a2e;
  --color-bgr-a: #cc2b2c;
  --color-bgr-light: #e0eafa;
  --color-bgr-e-light: #eef4fa;
  --color-light-se-light: #f5f8fb;
  --color-bgr-med: #bdcde6;
  --text-reg: 14px;
  --bs-accordion-border-color: rgba(0, 0, 0, 0);
  --bs-accordion-border-width: 0;
}
@media (min-width: 768px) {
  :root {
    --text-reg: 16px;
  }
}
body {
  font-family: "Duru Sans";
  color: var(--color-main);
  font-size: var(--text-reg);
  font-weight: 400;
  line-height: 1.75;
}
ul.start-0 {
  padding-left: 10px;
}
ul.marker-sm li::marker {
  font-size: 12px;
  line-height: inherit;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
header {
  background: var(--color-main);
  height: 90px;
  position: relative;
}
header .nav-container {
  padding-top: 12px;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
  animation-name: fadeInDown;
  animation-duration: 0.9s;
  box-shadow: 0 8px 7px -2px rgba(255, 255, 255, 0.1);
}
h2.section-title {
  position: relative;
  color: var(--color-main);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  text-transform: capitalize;
  font-size: 50px;
  font-weight: 800;
  font-family: "Duru Sans";
}
h2.section-title::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: var(--color-active-d);
}
@media only screen and (min-width: 320px) and (max-width: 400px) {
  h2.section-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 401px) and (max-width: 767px) {
  h2.section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2.section-title {
    font-size: 40px;
  }
}
.logo {
  display: block;
  padding-top: 20px;
}
.logo img {
  width: 133px;
  height: auto;
  aspect-ratio: 300/135;
}
#top_nav {
  background-color: var(--color-main);
  margin-top: 20px;
  z-index: 10;
  box-shadow: 0 8px 7px -2px rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .nav-wrapper {
    position: relative;
  }
  #top_nav {
    width: 100%;
    min-width: 320px;
    position: absolute;
    margin-top: 25px;
    top: 0;
    right: 0;
  }
}
nav button {
  margin-left: auto;
}
nav .navbar-toggler {
  color: #fff !important;
  border: 0 solid transparent !important;
  box-shadow: none !important;
  top: 0;
  right: 0;
}
nav .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 45px;
  height: 42px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 6px solid #fff;
  border-bottom: 6px solid #fff;
  opacity: 0.9;
  transition: 0.15s;
}
nav .navbar-toggler .navbar-toggler-icon i {
  display: block;
  width: 100%;
  height: 6px;
  background-color: #fff;
}
nav .navbar-toggler .navbar-toggler-icon:hover {
  opacity: 1;
}
nav .nav-item {
  padding: 8px 20px;
  border-bottom: 1px solid rgb(23, 31, 83);
  transition: 0.2s;
}
nav .nav-item a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: 0.2s;
}
nav .nav-item a:hover {
  color: var(--color-active);
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  nav .navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 39px;
    height: 37px;
    padding-top: 11px;
    padding-bottom: 11px;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    opacity: 0.9;
    transition: 0.15s;
  }
  nav .navbar-toggler .navbar-toggler-icon i {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #fff;
  }
}
.banner-container {
  z-index: 0;
}
.banner-container img {
  aspect-ratio: 192/51;
}
@media only screen and (max-width: 600px) {
  .banner-container img {
    aspect-ratio: 480/350;
  }
}
.banner-button {
  display: block;
  position: absolute;
  left: 5.7%;
  bottom: 7%;
  padding: 0.5em 0.7em;
  background-color: var(--color-active-d);
  color: #fff;
  text-decoration: none;
  border-radius: 8px 8px 8px 8px;
  transition: 0.15s;
}
.banner-button:hover {
  background-color: var(--color-active);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .banner-button {
    bottom: 5%;
    padding: 0.25em 0.6em;
  }
}
@media only screen and (max-width: 479px) {
  .banner-button {
    bottom: 8%;
    left: 9.7%;
  }
}
.s-text {
  color: var(--color-main);
  font-size: var(--text-reg);
}
.sec-bgr {
  background-image: url(../img/nasil.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 15px 35px;
  display: flex;
  flex-direction: column;
}
.sec-bgr p {
  color: #000;
}
.sec-text ul li {
  padding-bottom: var(--text-reg);
}
.sec-text .video-center {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 800px) {
  .sec-bgr .video-center {
    width: 100%;
  }
}
.sec-btn {
  background-color: var(--color-main);
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.sec-button {
  display: block;
  font-size: 14px;
  line-height: 2;
  padding: 0.7em 1em;
  background-color: var(--color-active-d);
  color: #fff;
  text-decoration: none;
  border-radius: 8px 8px 8px 8px;
  transition: 0.15s;
}
.sec-button:hover {
  background-color: var(--color-active);
  color: #fff;
}
.img-map {
  aspect-ratio: 120/47;
  width: 100%;
  height: auto;
}
.mx-10p {
  margin-left: 10%;
  margin-right: 10%;
}
.mx-15p {
  margin-left: 15%;
  margin-right: 15%;
}
.circle-items-wrapper {
  margin: 60px 100px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 9%;
  gap: 9%;
}
.circle-items-wrapper > img {
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .circle-items-wrapper {
    margin-left: 40px;
    margin-right: 40px;
    display: grid;
    grid-gap: 5%;
    gap: 5%;
  }
}
@media only screen and (max-width: 1000px) {
  .circle-items-wrapper {
    margin: 60px 0;
    grid-gap: 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 799px) {
  .circle-items-wrapper {
    margin: 60px 20px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    gap: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .circle-items-wrapper {
    margin-left: 30px;
    margin-right: 30px;
    gap: 30px;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .circle-items-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    gap: 40px;
    grid-gap: 40px;
  }
}
.video-wrapper {
  margin: 40px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  grid-gap: 50px;
  margin-bottom: 50px;
}
img.ban-2 {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .video-wrapper {
    gap: 30px;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
}
.sec-mluk .sec-mluk-inner {
  max-width: 869px;
  margin-left: auto;
  margin-right: auto;
}
.sec-mluk img {
  width: 100%;
  height: auto;
  aspect-ratio: 869/461;
}
@media only screen and (max-width: 767px) {
  .sec-mluk-inner {
    max-width: 100%;
  }
}
.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  grid-gap: 30px;
}
.schedule-wrapper .schedule-item {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  background-color: var(--color-bgr-light);
  border-radius: 8px;
  padding: 1em;
}
.schedule-wrapper .schedule-item p {
  white-space: pre-line;
}
.schedule-wrapper .schedule-item .s-btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  background-color: var(--color-active-d);
  border-radius: 30px;
  font-size: 15px;
  padding: 10px 20px;
  color: #fff;
  transition: 0.25s ease;
  text-decoration: none;
  flex-grow: 0;
}
.schedule-wrapper .schedule-item .s-btn:hover {
  background-color: var(--color-active);
}
@media only screen and (min-width: 768px) {
  .schedule-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lazyframe[data-customvendor="formfacade"] {
  background-color: #ffffff !important;
}
footer {
 background-color: var(--color-main);
 margin-top: 50px;
}
footer .footer-container {
 padding: 100px 0;
 display: grid;
 grid-template-columns: 1fr 1fr 1fr 1fr;
 gap: 30px;
 align-items: start;
}
footer .footer-container > div {
 display: flex;
 flex-direction: column;
}
footer .footer-container > div .footer-title {
 color: #fff;
 font-size: 24px;
 font-weight: 600;
 text-transform: capitalize;
 margin-bottom: 30px;
}
footer .footer-container .c-code {
 width: 130px !important; 
 height: 150 !important;
 object-fit: contain;
}
footer .footer-container .pay-methods {
 width: 250px !important; 
 height: auto !important;
 margin-top: 15px;
}
footer .footer-container ul.social {
 margin: 0;
 padding: 0;
 list-style: none;
 justify-content: flex-start;
}
footer .footer-container ul.social li {
 display: inline-block;
 padding-right: 10px;
 margin-bottom: 10px;
}
footer .footer-container ul.social li a {
 background: var(--color-bgr-light);
 color: var(--color-main) !important;
 border-radius: 83%;
 width: 51px;
 display: flex;
 align-items: center;
 justify-content: center;
 height: 50px;
 transition: 0.3s ease;
}
footer .footer-container ul.social li a svg {
 width: 20px;
 height: 20px;
}
footer .footer-container ul.social li a:hover {
 background: var(--color-active-d);
 color: #fff;
}
footer .footer-container ul.social li a:hover svg {
 color: #fff;
}
footer .footer-container ul.address {
 color: #fff;
 list-style: none;
 margin-left: 0;
 padding-left: 0;
 margin-top: 35px;
 padding-left: 0px;
}
footer .footer-container ul.address li {
 margin-bottom: 14px;
 font-size: calc(var(--text-reg) - 1px);
}
footer .footer-container ul.address svg {
 margin-right: 8px;
 margin-bottom: 2px;
 margin-left: -30px;
 color: var(--color-bgr-light);
 width: 18px;
 height: 18px;
}
footer .footer-container ul.address a {
 color: #fff;
 text-decoration: none;
 transition: 0.25s;
}
footer .footer-container ul.address a:hover {
 color: #ee363b;
}
footer .footer-container .footer-links a {
 color: #fff;
 text-decoration: none;
 transition: 0.25s;
 margin-bottom: 10px;
 display: block;
 font-size: calc(var(--text-reg) - 1px);
 line-height: 1.6;
}
footer .footer-container .footer-links a:hover {
 color: #ee363b;
}

@media (min-width: 1200px) {
 footer .footer-container {
   grid-template-columns: 1.2fr 1fr 1fr 1fr;
   gap: 40px;
 }
}

@media (max-width: 1199px) and (min-width: 768px) {
 footer .footer-container {
   grid-template-columns: 1fr 1fr;
   gap: 30px;
 }
 
 footer .footer-container > div:first-child {
   grid-column: 1 / -1;
   margin-bottom: 20px;
 }
}

@media (max-width: 767px) {
 footer .footer-container {
   padding: 50px 20px;
   grid-template-columns: 1fr;
   gap: 40px;
 }
 footer .footer-container > div {
   margin-bottom: 0;
 }
 footer .footer-container ul.social {
   justify-content: center;
 }
}
.mentors-container {
  --color-primary: #313e5b;
  --color-secondary: #437eeb;
  --header-size: 14px;
  --title-size: 12px;
  --title-line-height: 1.3;
  --inner-gap: 12px;
  --img-bottom-m: 12px;
  --text-bottom-m: 20px;
  --grid-gap: 5px;
  --grid-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .mentors-container {
    --header-size: 16px;
    --title-size: 16px;
    --title-line-height: 1.4;
    --inner-gap: 20px;
    --img-bottom-m: 15px;
    --text-bottom-m: 30px;
    --grid-columns: 1fr 1fr 1fr 1fr;
  }
}
.btn-load-m {
  display: none;
  margin-top: 40px;
  background-color: var(--color-main) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0) !important;
}
.btn-load-m:hover {
  color: #fff !important;
  background-color: var(--color-main) !important;
}
.mentors-container {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  grid-gap: var(--grid-gap);
}
.mentors-container .mentor-card {
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 15px;
  padding: var(--inner-gap);
  display: none;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.mentors-container .mentor-card.active {
  display: flex;
}
.mentors-container .mentor-card::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  background: var(--color-secondary);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.mentors-container .mentor-card .img-container img {
  filter: grayscale(100%);
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  margin-bottom: var(--img-bottom-m);
  transition: 0.15s;
}
.mentors-container .mentor-card .header {
  font-size: var(--header-size);
  font-weight: 700;
  text-align: center;
}
.mentors-container .mentor-card .title {
  font-size: var(--title-size);
  line-height: var(--title-line-height);
  text-align: center;
  margin-bottom: var(--text-bottom-m);
}
.mentors-container .mentor-card:hover::before {
  width: 100%;
  height: 4px;
  left: 0;
}
.mentors-container .mentor-card:hover .img-container img {
  filter: none;
}
.mentors-container .li-icon {
  color: var(--color-secondary);
  height: 25px;
  margin-right: 5px;
  margin-top: auto;
}
.mentors-container .li-icon svg {
  width: 25px;
  height: 25px;
  overflow: visible !important;
}
[data-slider="slider-pk2"] {
  --slider-color-bg: #fff;
  --slider-color-primary: #272f4e;
  --slider-color-text: #12182f;
  --slider-color-secondary: #e1e1e4;
  --slider-color-info: #cd2b2c;
}
.work-steps .work-steps__step {
  width: 265px;
  min-height: 385px;
  border-radius: 20px;
  box-shadow: 0 0 18px -8px rgba(0, 0, 0, 0.15);
  margin-top: 61px;
  color: #fff;
}
.work-steps .work-steps__step .img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.work-steps .work-steps__step + .work-steps__step {
  margin-left: 15px;
}
.work-steps .work-steps__step .step-img {
  margin-top: -61px;
  height: 140px;
  width: auto;
  object-fit: contain;
}
.work-steps .work-steps__step .step-img.t1 {
  aspect-ratio: 161/161;
}
.work-steps .work-steps__step .step-img.t2 {
  aspect-ratio: 227/149;
}
.work-steps .work-steps__step .step-img.t3 {
  aspect-ratio: 276/159;
}
.work-steps .work-steps__step .step-img.t4 {
  aspect-ratio: 192/186;
}
.work-steps .work-steps__step .step-img.t5 {
  aspect-ratio: 254/147;
}
.work-steps .work-steps__step .step-img.t6 {
  aspect-ratio: 225/181;
}
.work-steps .work-steps__step .step-title {
  font-size: 20px;
  letter-spacing: 0.67px;
  padding: 20px 20px 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 75px;
  width: 100%;
}
.work-steps .work-steps__step .step-text {
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
.work-steps .work-steps__step .step-text div {
  flex-grow: 1;
  width: 100%;
}
.work-steps .work-steps__step .step-text > span {
  display: block;
  margin-top: 25px;
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: auto;
}
.work-steps ul {
  padding-left: 0;
}
.work-steps ul.ul-disc {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 10px;
}
.work-steps ul.ul-disc > li {
  margin-bottom: 12px;
}
.work-steps ul.ul-circle {
  list-style-type: circle !important;
  list-style-position: inside;
}
.work-steps ul.ul-circle li {
  margin-top: 8px;
  margin-left: 28px;
}
.work-steps ul.ul-circle li span {
  font-weight: 400 !important;
}
.work-steps .ul-check-after {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.work-steps .ul-check-after li {
  margin-left: 28px;
  margin-bottom: 0;
}
.work-steps .ul-check-after li.nosign {
  margin-bottom: 1px;
}
.work-steps .ul-check-after li::after {
  content: "✓";
  font-size: 18px;
  display: inline-block;
  margin-left: 6px;
}
.work-steps .ul-check-after li.nosign::after {
  content: "";
}
.work-steps .work-steps__step .step-num {
  position: absolute;
  right: -7px;
  bottom: -12px;
}
.work-steps .work-steps__step .step-num.step-num-text {
  right: 0;
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.12);
}
.work-steps .work-steps__step .step-num.step-num-text.transp-minus {
  color: rgba(255, 255, 255, 0.08);
}
.work-steps .work-steps__step .step-num img {
  height: 120px;
  width: auto;
  opacity: 0.7;
  aspect-ratio: 95/131;
}
.work-steps .work-steps__step.step-arrow {
  box-shadow: none;
}
.work-steps .work-steps__step.step-arrow img {
  aspect-ratio: 271/421;
}
.work-steps .work-steps__step.step-1 {
  background-color: #cc2b2c;
}
.work-steps .work-steps__step.step-2 {
  background-color: #202946;
}
.work-steps .work-steps__step.step-3 {
  background-color: #f07f3c;
}
.work-steps .work-steps__step.step-4 {
  background-color: #05a8b3;
}
.work-steps .work-steps__step.step-5 {
  background-color: #e61c52;
}
.work-steps .work-steps__step.step-6 {
  background-color: #f0b431;
}
.work-steps.slider-light .work-steps__step {
  width: 270px;
  min-height: 610px;
  margin-top: 25px;
  position: relative;
}
.work-steps.slider-light .work-steps__step {
  color: var(--slider-color-text);
  box-shadow: 0 0 18px -8px rgba(0, 0, 0, 0.35) !important;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 15px;
}
.work-steps .work-steps__step.step-n {
  background-color: var(--slider-color-bg);
}
.work-steps .work-steps__step .step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 50px);
  margin: -25px 25px 5px;
  height: 50px;
  border-radius: 7px;
  background-color: var(--slider-color-primary);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0 18px -8px rgba(0, 0, 0, 0.15);
}
.work-steps.slider-light .work-steps__step .step-text {
  flex-grow: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.work-steps .work-steps__step .discount {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 65px;
  height: 65px;
  padding: 0px !important;
  background-color: transparent !important;
  transform: rotate(10deg);
}
.work-steps ol {
  list-style: inside !important;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.work-steps ol li {
  list-style-type: none;
  color: var(--slider-color-secondary);
  list-style-position: inside;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.work-steps ol li .box {
  background-color: #f8f8f9;
  border-radius: 7px;
  display: flex;
  flex-direction: row;
  padding: 8px;
}
.work-steps ol li .box .num {
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  justify-content: center;
  text-align: center;
  width: auto;
  font-weight: 900;
  font-size: 18px;
  border-right: 1px solid var(--slider-color-secondary);
}
.work-steps ol li .box .num small {
  font-weight: 600 !important;
}
.work-steps ol li .info {
  font-size: 14px;
  padding-left: 8px;
  display: flex;
  align-items: center;
}
.work-steps ol li .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slider-color-secondary);
  text-align: center;
  font-size: 34px;
  padding: 0 0 7px;
  line-height: 0.7;
  font-weight: 900;
}
.work-steps ol li.active {
  color: var(--slider-color-text);
}
.work-steps ol li.active .box {
  background-color: #eef4fa;
  color: var(--slider-color-text);
}
.work-steps ol li.active .box .num {
  border-right: 1px solid var(--slider-color-text);
}
.work-steps ol li .plus.active {
  color: var(--slider-color-info);
}
.work-steps .step-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.work-steps .step-bottom .price {
  color: var(--slider-color-info);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}
.work-steps .step-bottom .old-price {
  color: #82828d;
  font-size: 18px;
  text-decoration: line-through;
  margin-top: 15px;
  line-height: 28px;
  min-height: 28px;
}
.work-steps .step-bottom .price-info {
  font-size: 12px;
  max-width: 55%;
  margin-top: 7px;
  line-height: 1.2;
  text-align: center;
}
.work-steps .step-button {
  margin: 15px;
  background-color: var(--slider-color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 12px;
  width: calc(100% - 30px);
  box-sizing: border-box;
  border-radius: 3px;
  margin-top: auto;
  text-decoration: none;
}
li.nostyle {
  list-style-type: none;
}
/* Slide min height change - note for future */
@media (min-width: 768px) {
  .work-steps .work-steps__step {
    width: 350px;
    height: 430px;
    min-height: 430px; 
    margin-top: 90px;
  }
  .work-steps.slider-light .work-steps__step {
    width: 260px;
    min-height: 520px;
    margin-top: 25px;
  }
  .work-steps .work-steps__step + .work-steps__step {
    margin-left: 22px;
  }
  .work-steps .work-steps__step .step-img {
    margin-top: -90px;
    height: 180px;
  }
  .work-steps .work-steps__step .step-title {
    font-size: 20px;
    letter-spacing: 0.67px;
    padding: 20px 20px 0;
  }
  .work-steps .work-steps__step .step-text {
    font-size: 16px;
    padding: 20px 20px 0;
  }
  .work-steps .work-steps__step .step-text > span {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .work-steps ul.ul-disc > li {
    margin-bottom: 20px;
  }
  .work-steps .ul-check-after li {
    margin-bottom: 0;
  }
  .work-steps .ul-check-after li.nosign {
    margin-bottom: 3px;
  }
  .work-steps .ul-check-after li::after {
    font-size: 22px;
  }
  .work-steps .work-steps__step .step-num {
    bottom: -16px;
    right: -5px;
  }
  .work-steps .work-steps__step .step-num.step-num-text {
    bottom: -12px;
    right: 5px;
    font-size: 130px;
  }
  .work-steps .work-steps__step .step-num img {
    height: 140px;
  }
  .work-steps ol li {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .work-steps.slider-light .work-steps__step {
    width: 300px;
  }
}
.butonHover:hover {
  color: #000 !important;
  transition: 0.3s !important;
}
.butonHover {
  color: #fff !important;
  transition: 0.3s !important;
}
.butonHover a {
  pointer-events: all !important;
  text-decoration: none !important;
  color: inherit !important;
}
#whatsappIcon {
  position: fixed;
  bottom: 35px;
  right: 45px;
  z-index: 999;
}
#whatsappIcon img {
  width: 70px;
  height: 70px;
}
.academyLink {
  width: 100%;
  line-height: 0.75;
}
.academyLink-section {
  width: 100%;
  max-height: 75px;
  min-height: 64px;
  border-radius: 15px;
  flex-direction: column;
  box-shadow: 0 0 18px -8px rgba(0 0 0 0.15);
  align-items: center;
  display: flex;
  color: #fff;
  margin-bottom: 25px;
  justify-content: center;
}
.academyLink-section.btn {
  transition: all 0.2s ease-in-out;
}
.academyLink-section.btn:hover {
  transform: scale(0.9);
  color: #fff;
}
.academyLink-section.academyLink-title {
  width: 100%;
  text-align: center;
  margin-top: 4px;
  padding-left: 0;
  font-size: 120%;
}
.banner-container picture img {
  aspect-ratio: initial !important;
}
.darker-block-light {
  background-color: #d0def8a6;
  color: #0a0c19e6;
}
.bg-corp-red {
  background-color: #cc2b2c;
}
.bg-corp-blue {
  background-color: #202946;
}
.bg-corp-orange {
  background-color: #f07f3c;
}
.bg-corp-lightblue {
  background-color: #05a8b3;
}
.bg-corp-pink {
  background-color: #e62e51;
}
.bg-corp-yellow {
  background-color: #f0b431;
}
.acadBtn {
  width: 100%;
  line-height: 0.75;
}
.acadBtn-section {
  width: 100%;
  max-height: 75px;
  border-radius: 15px;
  box-shadow: 0 0 18px -8px rgba(0 0 0 0.15);
  align-items: center;
  display: flex;
  color: #fff;
  margin-left: 5px;
}
.acadBtn-section.btn {
  transition: all 0.2s ease-in-out;
}
.acadBtn-section.btn:hover {
  cursor: pointer;
  transform: scale(0.95);
  color: #fff;
}
.acadBtn-section.bg-corp-red {
  background-color: #cc2b2c;
}
.acadBtn-section.bg-corp-blue {
  background-color: #202946;
}
.acadBtn-section.bg-corp-orange {
  background-color: #f07f3c;
}
.acadBtn-section.bg-corp-lightblue {
  background-color: #05a8b3;
}
.acadBtn-section.bg-corp-pink {
  background-color: #e62e51;
}
.acadBtn-section.bg-corp-yellow {
  background-color: #f0b431;
}
.acadBtn-section .acadBtn-title {
  width: 100%;
  text-align: left;
  margin-right: -12%;
  padding-left: 7px;
  font-size: 100%;
}
.acadBtn span {
  width: 35%;
  height: 100%;
  font-size: 410%;
  font-weight: 680;
  color: rgba(255, 255, 255, 0.151);
  text-align: right;
  align-items: right;
  margin-top: -3%;
  margin-bottom: -6.4%;
  font-family: Arial;
  margin-right: 2.55%;
}
.acadBtn-subsect {
  width: 80%;
  margin-left: 18%;
  align-items: center;
  border-color: #000;
  box-shadow: 0 0 18px -8px rgba(0 0 0 0.15);
  margin-top: 8px;
  background-color: #fff;
  border-radius: 8px;
  min-height: 56px;
  color: #111;
}
.acadBtn-subsect.btn {
  transition: all 0.2s ease-in-out;
}
.acadBtn-subsect:hover {
  transform: scale(0.9);
}
.academyLink {
  width: 100%;
  line-height: 0.75;
}
.academyLink-section {
  width: 100%;
  max-height: 75px;
  min-height: 64px;
  border-radius: 15px;
  flex-direction: column;
  box-shadow: 0 0 18px -8px rgba(0 0 0 0.15);
  align-items: center;
  display: flex;
  color: #fff;
  margin-bottom: 25px;
  justify-content: center;
}
.academyLink-section.btn {
  transition: all 0.2s ease-in-out;
}
.academyLink-section.btn:hover {
  transform: scale(0.9);
  color: #fff;
}
.academyLink-section.sect-1 {
  background-color: #cc2b2c;
}
.academyLink-section.sect-2 {
  background-color: #202946;
}
.academyLink-section.sect-3 {
  background-color: #f07f3c;
}
.academyLink-section.sect-4 {
  background-color: #05a8b3;
}
.academyLink-section.sect-5 {
  background-color: #e62e51;
}
.academyLink-section.sect-6 {
  background-color: #f0b431;
}
.academyLink-section.academyLink-title {
  width: 100%;
  text-align: center;
  margin-top: 4px;
  padding-left: 0;
  font-size: 120%;
}
.instructor {
  justify-content: center;
}
.instructor img {
  align-items: center;
  border-radius: 160px;
}
.step-3 {
    display: none !important;
}
#slider-pk1 .owl-stage {
    display: flex !important;
    justify-content: center !important;
}
@media (max-width: 767px) {
  #slider-pk1 .owl-stage {
      justify-content: flex-start !important;
  }
}
.faq-block p {
  color: #202844;
}
/* ========== TESTIMONIALS SECTION ========== */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0 50px 0;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 15px;
    user-select: none;
    cursor: grab;
    will-change: transform;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(222, 19, 24, 0.15);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #e0eafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.testimonial-text-wrapper {
    flex-grow: 1;
    width: 100%;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #646f79;
    margin-bottom: 12px;
    text-align: left;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.testimonial-text.expanded {
    display: block;
}

.read-more-btn {
   background: var(--color-active);
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px; 
    border-radius: 20px;
    transition: all 0.3s ease;
    user-select: none;
    pointer-events: auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.read-more-btn:hover {
     background: var(--color-active-d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(222, 19, 24, 0.3);
}
.read-more-btn:focus {
    outline: 2px solid var(--color-active);
    outline-offset: 2px;
}

.testimonial-footer {
    width: 100%;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 12px;
    font-weight: 500;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
}

.testimonials-dots {
   display: flex;
    justify-content: center;
    gap: 12px; 
    margin-top: 35px; 
}

.testimonials-dots span {
    width: 30px; 
    height: 30px; 
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.testimonials-dots span:hover {
    background: var(--color-active);
    transform: scale(1.2);
}
.testimonials-dots span.active {
    background: var(--color-active);
    width: 30px;
    border-radius: 15px;
}
@media (max-width: 767px) {
    .testimonials-dots {
        justify-content: flex-start; 
        gap: 8px;
        overflow-x: auto; 
        overflow-y: hidden;
        padding: 10px 0;
        scrollbar-width: none;
    }

    .testimonials-dots::-webkit-scrollbar {
        display: none;
    }

    .testimonials-dots span {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50%;
        flex-shrink: 0;
        min-width: auto;
        min-height: auto;
    }

}
/* Tablet View */
@media (max-width: 991px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

/* Mobile View */
@media (max-width: 767px) {
   .section-title {  
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonials-wrapper { 
        padding: 15px 0 50px 0;
    }
    .testimonials-container {
        gap: 20px;
        padding: 0 10px;
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        padding: 25px 20px;
    }

    .testimonial-avatar {
        width: 85px;
        height: 85px;
        margin-bottom: 16px;
    }

    .testimonial-text {
       font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-name {
        font-size: 17px;
    }

    .testimonial-title {
        font-size: 13px;
        min-height: 38px;
    }
    .testimonial-linkedin {  
        min-width: 44px;
        min-height: 44px;
        width: 22px;
        height: 22px;
    }

    .testimonial-linkedin svg {  
        width: 13px;
        height: 13px;
    }

    .testimonial-arrow { 
        display: flex;
    }

    .testimonials-dots span {  
        width: 32px;
        height: 32px;
    }

    .testimonials-dots span.active { 
        width: 48px;
    }
    .testimonial-stars {
        font-size: 16px;
    }

    .read-more-btn {
       font-size: 13px;
        padding: 9px 16px;
        border-radius: 18px;
    }
}
.testimonial-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.testimonial-modal-content {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 45px; 
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch; 
}

.testimonial-modal-overlay.active .testimonial-modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-active);
    color: white;
    border: none;
    width: 44px;
    height: 44px; 
    border-radius: 50%;
    font-size: 24px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: bold;
    line-height: 1;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--color-active-d);
    transform: rotate(90deg);
}

.modal-testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid #e0eafa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.modal-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #646f79;
    margin-bottom: 30px;
    text-align: left;
}

.modal-testimonial-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e0eafa;
}

.modal-testimonial-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 8px;
}

.modal-testimonial-title {
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .testimonial-modal-content {
        padding: 35px 25px;
        max-height: 90vh;
    }
    .modal-close-btn { 
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .modal-testimonial-avatar {
        width: 100px;
        height: 100px;
    }

    .modal-testimonial-text {
        font-size: 15px;
    }

    .modal-testimonial-name {
        font-size: 20px;
    }

    .modal-testimonial-title {
        font-size: 14px;
    }
}

.testimonials-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
}

.testimonials-container:active {
    cursor: grabbing;
}
.testimonials-container.dragging {
    transition: none;
}
.testimonial-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-text,
.testimonial-name,
.testimonial-title {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}


.read-more-btn {
    user-select: none;
    pointer-events: auto;
    cursor: pointer;
}
.testimonial-header-with-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;  
    height: 15px; 
    background: #0077b5;
    border-radius: 4px; 
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 38px; 
    min-height: 38px; 
}

.testimonial-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.testimonial-linkedin svg {
    fill: white;
    width: 16px;
    height: 16px;
}

@media (max-width: 767px) {
    .testimonial-linkedin {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-linkedin svg {
        width: 14px;
        height: 14px;
    }
}
/* Mobile Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    color: var(--color-active);
    border: none;
    font-size: 55px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: none;
    padding: 0;
    margin: 0;
}

.testimonial-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    color: var(--color-active-d);
}

.testimonial-arrow-left {
    left: -5px;
}

.testimonial-arrow-right {
    right: 11px;
}

@media (max-width: 767px) {
    .testimonial-arrow {
        display: flex;  
        align-items: center;        
        justify-content: center;  
        width: 55px;            
        height: 55px;
    }
}
/* ========== VERY SMALL MOBILE ========== */
@media (max-width: 375px) {
    .testimonial-card {
        padding: 22px 18px;
    }

    .testimonial-arrow {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}