:root {
  --light-border: rgb(169, 169, 169);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 5rem;

  color: var(--black-color);
  /* overflow-x: hidden; */
}

nav figure {
  margin: 0;
  padding-block: 0;
  display: flex;
  align-items: center;
}

nav figure img {
  height: 3rem;
  width: auto;
}

nav .right-side-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

nav ul li {
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: var(--black-color);
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav .right-side-nav button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

nav .right-side-nav button:hover {
  background-color: #007a8a;
  /* Fallback or darker shade */
}

nav .btn-hamburger {
  display: none;
}

.right-side-nav .btn-contact a {
  text-decoration: none;
  color: var(--white-color);
}

/*HERO SECTION*/
#home_hero_section {
  padding: 5rem;
  /* width: 100%; */
}

.hero-heading {
  width: 70%;
  /* border: 2px solid red; */
}

#home_hero_section .home-heading-wrapper {
  display: flex;
  gap: 5rem;
  align-items: center;
  /* gap: 2rem; */
}

.hero-heading p {
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-heading span {
  font-size: 8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: end;
  /* border: 1px solid red; */
  /* padding-left: 22rem; */
}

.hero-heading span p {
  display: inline-block;
}

.home-hero-article {
  width: calc(30% - 5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-hero-article article {
  padding-top: 8rem;
}

.home-hero-article p {
  display: flex;
  gap: .4rem;
}

.home-hero-article p a {
  text-decoration: none;
  color: var(--black-color);
  font-weight: bold;
}

.home-hero-article p span {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-inline: .5rem;
  padding-block: .2rem;
}

#home_hero_section figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#accelerators {
  padding: 5rem;

}

#accelerators h2 {
  padding-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

#accelerators h2 span {
  color: var(--primary-color);
  font-weight: 600;
}

.accel-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: fit-content;
}

.accelerator-content {
  width: calc((100% - 1rem) / 2);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 2rem;
  height: fit-content;
  border-radius: 20px 0 0 20px;
  height: 400px;
}

#accelerators figure {
  width: calc((100% - 1rem) / 2);
  height: 100%;
  /* width: auto; */
}

#accelerators figure img {
  width: 100%;
  height: (calc(100% - 3rem));
  object-fit: cover;
  border-radius: 0 20px 20px 0;
  /* height: 100%; */
  height: 400px;
  width: 100%;
}

/*cards*/

.cards-EEEE {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
}

.cards-EEEE .empower {
  display: flex;
  position: relative;
  gap: 2rem;
  width: calc((100% - 3rem) / 2);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;

  cursor: pointer;
}

.cards-EEEE .empower .circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(to right, #6bbaffa0, #697ec999);
  z-index: -1;
  left: -200px;
  top: -100px;


}

.cards-EEEE .empower .circle-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 20px solid #7b8dd099;
  z-index: -1;
  background-color: transparent;
  left: -170px;
  top: -90px;
}

.cards-EEEE .empower:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cards-EEEE .empower .text {
  display: flex;
  /* align-items: center; */
  gap: 1.5rem;
  padding: 1rem;
  flex-direction: column;
  width: calc(60% - 0.5rem);
  justify-content: flex-start;
}

.cards-EEEE .empower .text p {
  color: var(--content-color);
}

.cards-EEEE .empower .text h2 {
  text-align: left;
  color: var(--content-color);
  text-transform: uppercase;
}

.cards-EEEE .empower .text h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.cards-EEEE .empower figure {
  width: calc(40% - 0.5rem);
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.cards-EEEE .empower figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* services we offer */
/* Services Container */
#services_container {
  padding: 5rem;
}

#services_container h2 {
  padding-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

#services_container h2 span {
  color: var(--primary-color);
  font-weight: 600;
}

#services_container .services-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
}

.services-card-wrapper .service-card-one {
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: calc((100% - 4rem) / 3);
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
  box-sizing: border-box;
}

.service-card-one:hover {
  transform: translateY(-10px);
}

.service-card-one .service-image {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.service-image iframe {
  width: 300px;
  height: 300px;
  max-width: 100%;
  border: none;
}

.service-card-content {
  text-align: left;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.service-card-footer {
  margin-top: 2rem;
  text-align: left !important;
}

.service-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background-color: #093bcc;
}

/* ====== View All / View Less Toggle CSS ====== */

/* Cards initially hidden */
#services_container .services-card-wrapper .service-card-one {
  display: none;
  /* hide all initially */
}

/* Cards to show when active */
#services_container .services-card-wrapper .service-card-one.show-card {
  display: flex;
  /* flex style */
}

/* View All / View Less button styling */
#services_container .c-s-b button {
  font-size: 1rem;
  border: 1px solid var(--primary-color);
  padding: .5rem 1rem;
  color: var(--primary-color);
  border-radius: .3rem;
  cursor: pointer;
  margin-top: 2rem;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* RIGHT COURSES FOR YOU */

/* #right_courses */



#right_courses {
  padding: 5rem;

}

#right_courses h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

#right_courses h2 {
  padding-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.right-courses-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
}

.right-courses-content {
  padding-inline: .5rem;
}

.right-courses-main {
  /* background: #fff; */
  border: 1px solid #ddd;
  border-radius: 20px;
  width: calc((100% - 10rem) / 3);
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  gap: 2rem;
}

.right-courses-image img {
  width: 150px;
  margin: 1.5rem auto 1rem;
  display: block;
}

.right-courses-title {
  /* font-size: 1.3rem; */
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.right-courses-content {
  font-size: 0.95rem;
  color: var(--content-color);
  line-height: 1.5;
  margin: 0.5rem 1rem;
}

.right-course-footer {
  margin-top: auto;
}

.course-button {
  display: block;
  background-color: #0b52f2;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  text-decoration: none;
  /* border-top: 1px solid #ddd; */
  border-radius: 0 0 20px 20px;
  transition: background-color 0.3s ease;
}

.course-button:hover {
  background-color: #093bcc;
}

/* Digital Adventure */
/* Digital Adventure Section */
#digital_adventure {
  padding: 5rem;
}

#digital_adventure h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

#digital_adventure h2 {
  padding-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.digital-adventure-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

/* Cards initially hidden */
.digital-adventure-wrapper .digital-adventure-one {
  display: none;
  /* hide all initially */
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 3rem) / 2);
}

.digital-adventure-wrapper .digital-adventure-one.show-card {
  display: flex;
  /* show active cards */
}

.digital-adventure-img img {
  width: 100%;
  max-width: 100%;
  height: 250px;
  /* fix height to avoid layout break */
  object-fit: cover;
  /* ensures large images don't distort layout */
  margin-bottom: 1rem;
}

.digital-adventure-one .digital-adventure-content h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.digital-adventure-one .digital-adventure-content p {
  font-size: 0.95rem;
  color: var(--content-color);
  line-height: 1.5;
}

/* View All / View Less button styling */
#digital_adventure .c-s-b button {
  font-size: 1rem;
  border: 1px solid var(--primary-color);
  padding: .5rem 1rem;
  color: var(--primary-color);
  border-radius: .3rem;
  cursor: pointer;
  margin-top: 2rem;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* sidebar css */
#sidebar {
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  max-width: 230px;
  width: 230px;
  background-color: var(--white-color);
  /* display: flex; */
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  transition: all ease-in-out .3s;
  display: none;
  z-index: 999;
}

#sidebar #close_sidebar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  /* background-color: red; */
  color: white;
}

#sidebar figure img {
  height: 40px;
  width: auto;
}

#sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1rem;
}

#sidebar ul a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all ease-in-out .3s;
}

#sidebar ul a:hover {
  color: var(--black-color);
  margin-left: .5rem;
}

#sidebar button:hover {
  background-color: var(--black-color);
}


/* CONTACTUS */

#cotact_main_container {
  padding-block: 5rem;
}

.Contact-main {


  width: auto;
  height: fit-content;
  background-color: rgb(93, 90, 90);
  background: url('../images/contactus.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding-block: 3rem;


}

.contact-content {
  max-width: 800px;
  padding: 1rem;
}

.contact-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-content button {
  padding: 12px 24px;
  font-size: 1rem;
  background: transparent;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;

}

.contact-content button a {
  text-decoration: none;
  color: var(--white-color);
}

.contact-content button:hover {
  background: white;
  color: black;
}

.contact-content button:hover a {
  color: black;
}

/* FOOTER */
footer {
  background-color: var(--secondary-color);
  width: 100%;
  height: auto;
  padding-top: 80px;
}

.footer-container {
  width: 100%;
  /* max-width: 1320px; */
  /* margin: 0 auto; */
  padding: 0 12px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem;
  padding-top: 1rem;
  gap: 1rem !important;
}

.footer-wrapper .footer-widget {
  width: calc((100% - 3rem) / 4);
  margin: 0;
}

/* .footer-wrapper .footer-widget:nth-child(1){
    

} */
.footer-wrapper {

  padding-inline: 2rem;
}

.footer-wrapper .footer-widget .logo {
  margin-bottom: 30px;
  vertical-align: middle;
  height: 5rem;
  width: auto;
}

.footer-wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 24px;
}

.footer-wrapper .footer-widget .social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.footer-wrapper .footer-widget .social-links li {
  list-style: none;
}

.footer-wrapper .footer-widget .social-links li a {
  font-size: 1.5rem;
  color: var(--gray-color);
  transition: color 0.3s ease;
}

.footer-wrapper .footer-widget .social-links li a:hover {

  color: var(--primary-color);
}

.footer-wrapper .footer-widget h6 {
  color: var(--title-color);
  margin: .6rem 0 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-wrapper .footer-widget .links li a {
  font-size: 1rem;
  text-transform: capitalize;
  line-height: 2rem;
  text-decoration: none;
  color: var(--content-color);
  transition: all 0.3s ease-out;
}

.footer-wrapper .footer-widget .links li a:hover {
  color: var(--primary-color);
}

.copyright {
  padding: 1rem 0;
  border-top: 1px solid var(--content-color);
}

.copyright p {
  font-size: .8rem;
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
}


/* Hero section container */
#home_hero_container {
  /* overflow-x: hidden;  <-- हटाया */
  overflow-x: visible;
  /* बदला गया */
  position: relative;
}

/* Scroll container */
#home_hero_container .home-slider-container {
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  overflow-x: auto;
  /* बदला गया (scroll → auto) */
  width: 100%;
  /* बदला गया (fit-content → 100%) */
}

#home_hero_container .home-slider-container .card {
  flex-basis: 100%;
  scroll-snap-align: start;
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  flex: 0 0 100vw;
  /* बदला गया (100dvw → 100vw) */
  width: 100vw;
  /* बदला गया */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#home_hero_container .home-slider-container .card .resp-card {
  padding: 1rem;
  flex-direction: column !important;
  gap: 1rem;
  display: none;
}

#home_hero_container .home-slider-container::-webkit-scrollbar {
  display: none;
}

#home_hero_container .home-slider-container .card figure {
  width: 100%;
}

#home_hero_container .home-slider-container .card img {
  width: 100%;
}

#home_hero_container .home-slider-container .card .card-message {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-15%, -50%);
  background-color: white;
  padding: 1rem;
  color: #444444;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 350px;
  border-radius: .5rem;
}

#home_hero_container .home-slider-container .card .card-message h1,
#home_hero_container .home-slider-container .card .resp-card h1 {
  color: #444444;
  font-size: 1.5rem;
  font-weight: normal;
}

#home_hero_container .home-slider-container .card .card-message p,
#home_hero_container .home-slider-container .card .resp-card p {
  color: #444444;
  padding-left: .3rem;
  font-size: .95rem;
}

#home_hero_container .home-slider-container .card .card-message a,
#home_hero_container .home-slider-container .card .resp-card a {
  text-decoration: none;
}

#home_hero_container .btn-prev,
#home_hero_container .btn-next {
  padding: 1rem;
  position: absolute;
  background-color: white;
  border: 1px solid rgb(161, 159, 159);
  transform: translate(-5%, -50%);
  transition: all ease-out .3s;
  color: var(--black-color);
  height: 50px;
  width: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

#home_hero_container .btn-prev:hover,
#home_hero_container .btn-next:hover {
  border: 1px solid white;
}

#home_hero_container .btn-prev {
  top: 50%;
  left: 5%;
}

#home_hero_container .btn-next {
  top: 50%;
  right: 5%;
}



/* whats right css */
#whats_right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem;
}

#whats_right header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

#whats_right header p {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

#whats_right header h1 {
  font-weight: 600;
  font-size: 2rem;
}

#whats_right .whats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

#whats_right .whats-container .card {
  width: calc((100% - 4rem) / 3);
  border: 1px solid rgb(188, 187, 187);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: .5rem;

  border-radius: .5rem;
  height: fit-content;
}

#whats_right>.whats-container .card figure {
  width: 100%;
  height: 200px;
  overflow: hidden;


}


#whats_right>.whats-container .card figure img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}


#whats_right>.whats-container .card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #444444;
}

#whats_right>.whats-container .card p {
  font-size: .95rem;
  font-weight: 400;
  color: #444444;
}

#whats_right .whats-container .card .t-cont {

  overflow: hidden;
  display: flex;
  gap: .5rem;
  align-items: center;
}

#whats_right>.whats-container .card button {
  width: 100%;
  text-align: center;

}

#whats_right>.whats-container .active-card {
  display: none;
}

#whats_right .c-s-b button {
  font-size: 1rem;
  border: 1px solid var(--primary-color) !important;
  padding: .5rem;
  color: var(--primary-color);
  border-radius: .3rem;
  cursor: pointer;

}

.star-btn {
  background-color: #D2EAFF;
  width: fit-content;
  padding: .3rem;
  border-radius: .3rem;
  /* color: var(--white-color); */

}

.star-btn i {
  color: orangered;
}

.bestseller {
  background-color: #FFFAB3;
  width: fit-content;
  padding: .3rem;
  border-radius: .3rem;
}

.lerners {
  background-color: #BCFDDB;
  width: fit-content;
  padding: .3rem;
  border-radius: .3rem;

}

#accelerator {
  padding: 5rem;
}


#accelerator header h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

#accelerator header h1 span {
  color: var(--primary-color);
}



#why_choose_us {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 5rem;
}

#why_choose_us .card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 4rem) / 3);
  gap: 1rem;
  padding: 1rem;
  border-radius: .3rem;
  background-color: #e8e8e8;
  cursor: pointer;
  transition: all ease-out .3s;
}

#why_choose_us .card:nth-child(1) {
  background-color: transparent !important;
}

#why_choose_us .card h1 {
  font-size: 3rem;
  font-weight: 600;

}

#why_choose_us .card h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
}

#why_choose_us .card h3 {
  font-size: 1.2rem;
  font-weight: 600;

}

#why_choose_us .card p {
  font-size: 1rem;
}

#why_choose_us .card:not(:nth-child(1)):hover {
  background-color: var(--primary-color);
}

#why_choose_us .card:not(:nth-child(1)):hover h2,
#why_choose_us .card:not(:nth-child(1)):hover h3,
#why_choose_us .card:not(:nth-child(1)):hover p {
  color: var(--white-color);
}

#why_choose_us .card:not(:nth-child(1)):hover h3 {
  color: var(--white-color);
}

#testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem;
  position: relative;
  overflow: hidden;
  /* important for slider */
}

#testimonials header h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

#testimonials .testimonails-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* scroll allow */
  scroll-snap-type: x mandatory;
  /* snap effect */
  scroll-behavior: smooth;
  /* smooth slide */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

#testimonials .testimonails-wrapper::-webkit-scrollbar {
  display: none;
  /* scrollbar hide */
}

#testimonials .testimonails-wrapper .card {
  flex: 0 0 calc((100% - 4rem) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: .3rem;
  box-shadow: 3px 3px 10px rgb(202, 201, 201), -3px -3px 10px rgb(202, 201, 201);
  gap: 1rem;
}

#testimonials .testimonails-wrapper .card header {
  display: flex;
  gap: 1rem;
  height: fit-content;
}

#testimonials .testimonails-wrapper .card header img {
  border: 1px solid var(--light-border);
  object-fit: cover;
  overflow: hidden;
  flex-grow: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

#testimonials .testimonails-wrapper .card header div {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

#testimonials .testimonails-wrapper .card header div h4 {
  font-size: 1rem;
  font-weight: 600;
}

#testimonials .testimonails-wrapper .card p {
  font-size: 1rem;
  font-weight: 100;
  color: rgb(103, 102, 102);
}

/* Navigation buttons */
#testimonials .btn-prev,
#testimonials .btn-next {
  padding: 1rem;
  position: absolute;
  background-color: white;
  border: 1px solid rgb(161, 159, 159);
  transform: translate(-5%, -50%);
  transition: all ease-out .3s;
  color: var(--black-color);
  height: 50px;
  width: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

#testimonials .btn-prev:hover,
#testimonials .btn-next:hover {
  border: 1px solid white;
}

#testimonials .btn-prev {
  top: 50%;
  left: 2%;
}

#testimonials .btn-next {
  top: 50%;
  right: 2%;
}



#home_hero_container,
#whats_right,
#accelerator,
#services_container,
#why_choose_us,
#right_courses,
#digital_adventure,
#testimonials,
#cotact_main_container,
#footer {}



@media only screen and (max-width : 1270px) {
  #home_hero_section .home-heading-wrapper {
    gap: 5rem;

  }

  .hero-heading p {
    font-size: 7rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 7rem;
  }

  .hero-heading span p {
    display: inline-block;
  }

  .home-hero-article {
    width: calc(30% - 5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media only screen and (max-width : 1100px) {
  #home_hero_section .home-heading-wrapper {
    gap: 4rem;

  }

  .hero-heading p {
    font-size: 6rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 6rem;
  }

  .home-hero-article {
    width: calc(30% - 4rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }


  #testimonials .testimonails-wrapper .card {
    flex: 0 0 calc((100%) / 2.5);
  }
}

@media only screen and (max-width : 1000px) {
  #home_hero_section .home-heading-wrapper {
    gap: 4rem;
    flex-direction: column;
    align-items: end;

  }

  #home_hero_section .home-heading-wrapper .hero-heading {
    width: 100%;
  }

  .hero-heading p {
    font-size: 6rem;
  }

  .hero-heading span {
    font-size: 6rem;
  }

  .home-hero-article {
    width: calc(70%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .home-hero-article article {
    padding-top: 0rem;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 4.5rem;
  }

  .accel-wrapper {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 20px;
  }

  .accelerator-content {
    width: calc((100%));
    height: fit-content;
  }

  #accelerators figure {
    width: 100%;
  }

  #accelerators figure img {
    width: 100%;
  }

  .cards-EEEE {
    /* padding: 0 4.5rem 0 4.5rem; */
    padding-top: 2rem;
  }

  .contact-content h1 {
    font-size: 3.8rem;
  }


  #whats_right .whats-container .card {
    width: calc((100% - 2rem) / 2);
  }

  #whats_right {
    padding: 4.5rem;
  }

  #accelerator {
    padding: 4.5rem;
  }

  .cards-EEEE .empower {
    width: 100%;

  }
}

@media only screen and (max-width : 900px) {
  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .cards-EEEE .empower {
    width: calc(100%);
  }

  .services-card-wrapper .service-card-one {
    width: calc((100%));
  }

  .right-courses-main {
    width: calc((100%));
  }

  .contact-content h1 {
    font-size: 3.5rem;
  }

  .footer-wrapper {
    /* flex-direction: column; */
    align-items: center;
  }

  .footer-wrapper .footer-widget h6 {
    margin: .6rem 0 1rem;
  }

  .footer-wrapper .footer-widget {
    width: calc((100% - 1rem) / 2);
  }


  #why_choose_us .card {

    width: calc((100% - 2rem) / 2);
  }

  #testimonials .testimonails-wrapper .card {
    flex: 0 0 calc((100%) / 2);
  }


}

@media only screen and (max-width : 800px) {
  .home-hero-article {
    width: calc(80%);
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 4rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .contact-content h1 {
    font-size: 3.2rem;
  }

  .contact-content p {
    font-size: 1rem;
  }

  #whats_right .whats-container .card {
    width: calc((100%));
  }

  #whats_right {
    padding: 4rem;
  }

  #accelerator {
    padding: 4rem;
  }


}

@media only screen and (max-width : 768px) {
  #home_hero_container .home-slider-container .card .card-message {
    display: none;
  }

  #home_hero_container .home-slider-container .card .resp-card {
    display: flex;
  }

  #testimonials .testimonails-wrapper .card {
    flex: 0 0 calc((100%));
  }
}

@media only screen and (max-width : 700px) {
  .hero-heading p {
    font-size: 5rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 5rem;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 3.5rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .digital-adventure-one {
    width: calc((100%));
  }

  .contact-content h1 {
    font-size: 3rem;
  }

  .contact-content p {
    font-size: .9rem;
  }

  #whats_right {
    padding: 3.5rem;
  }

  #accelerator {
    padding: 3.5rem;
  }
}

@media only screen and (max-width : 676px) {
  nav ul {
    display: none;

  }

  nav .btn-contact {
    display: none;
  }

  nav .btn-hamburger {
    display: block;
  }

  .home-hero-article {
    width: calc(100%) !important;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure {

    padding: 3rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .footer-wrapper .footer-widget {
    width: calc((100%));
  }

  #whats_right {
    padding: 3rem;
  }

  #accelerator {
    padding: 3rem;
  }


  #why_choose_us .card {

    width: 100%;
  }
}

@media only screen and (max-width : 600px) {
  .hero-heading p {
    font-size: 3.8rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 4rem;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 2.5rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .contact-content h1 {
    font-size: 2.8rem;
  }

  .contact-content p {
    font-size: .85rem;
  }

  #whats_right {
    padding: 2.5rem;
  }

  #accelerator {
    padding: 2.5rem;
  }
}

@media only screen and (max-width : 500px) {
  .hero-heading p {
    font-size: 3.2rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 3.5rem;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 2rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .contact-content h1 {
    font-size: 2.5rem;
  }

  .contact-content p {
    font-size: .8rem;
  }

  #whats_right {
    padding: 2rem;
  }

  #accelerator {
    padding: 2rem;
  }
}

@media only screen and (max-width : 400px) {
  .hero-heading p {
    font-size: 3rem;
    font-weight: 600;
  }

  .hero-heading span {
    font-size: 3rem;
  }

  #home_hero_section,
  #accelerators,
  #services_container,
  #right_courses,
  #digital_adventure,
  #why_choose_us {
    padding: 1.5rem;
  }

  .cards-EEEE {
    flex-direction: column;
    padding-top: 2rem;
  }

  .contact-content h1 {
    font-size: 2.2rem;
  }

  #whats_right {
    padding: 1.5rem;
  }

  #accelerator {
    padding: 1.5rem;
  }


}