/* universal styling */

* {
  padding: 0;
  margin: 0;
  font-family: "roboto";
}

body {
  overflow-y: none;
}

/* header Styling starts */
.anchor {
  text-decoration: none;
  /* color: white; */
}

.location,
.location .anchor {
  background-color: #fe723a;
  color: white;
}

.location {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  width: max-content;
}

.location a {
  text-decoration: none;
}

.before-nav {
  display: flex;
  height: 55px;
  align-items: center;
}

.number-email {
  background-color: #fbf1e3;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 50px;
  color: black;
  column-gap: 70px;
  width: 65%;
}

.number-email a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
}

.number-email a:hover {
  color: #fe725a;
}

.nav {
  padding-left: 50px;
  padding-right: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .nav-logo img {
  width: 117px;
}

.nav .nav-menu ul {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  list-style-type: none;
  padding-left: 0;
  /* Optional: removes default indentation */
}

.nav .nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: black;
}

.nav .nav-menu a:hover {
  color: #fe723a;
}

.nav .nav-menu a:active {
  color: #fe723a;
}

.nav .demo-class a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.nav .demo-class a:hover {
  background-color: #e75115;
}

.nav .hamburger {
  display: none;
}

.nav .mobile-menu {
  display: none;
}

/* header styling ends */

/* hero-section styling starts */

.hero-section {
  height: 100vh;
  width: 100%;
  background-color: #fbf1e3;
  position: relative;
}

.hero-section .hero-img {
  width: 600px;
  position: absolute;
  left: 5;
  bottom: 0;
}

/* hero-section styling ends */

/* section 2 styling starts */

.section-2 {
  background-color: #fcf7ee;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* text column styling starts*/

.section-2-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-2-text h3 {
  color: #fe723a;
}

.section-2-text h2 {
  color: #1b212f;
  font-size: 35px;
  font-weight: 800;
}

.section-2-text .description {
  color: #868583;
  font-size: 15px;
  line-height: 1.8;
}

/* icons */

.section-2-text .icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 20px; /* space between columns */
  margin-bottom: 20px;
}

.section-2-text .icons .card {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
  column-span: 1;
}

.section-2-text .icons .card .icon {
  height: 72px;
  width: 72px;
  background-color: #fe723a;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* icon2 styling */
.section-2-text .icons .card .icon2 {
  background-color: #f8ad12;
}
/* icon3 styling */
.section-2-text .icons .card .icon3 {
  background-color: #88b520;
}
/* icon4 styling */
.section-2-text .icons .card .icon4 {
  background-color: #f96ea0;
}
/* icon5 styling */
.section-2-text .icons .card .icon5 {
  background-color: #7bbfff;
}
/* icon6 styling */
.section-2-text .icons .card .icon6 {
  background-color: #cb98e8;
}

/* card's text styling */
.section-2-text .icons .card .txt {
  font-weight: 800;
  color: #fe723a;
}

/* txt2 styling */
.section-2-text .icons .card .txt2 {
  color: #f8ad12;
}
/* txt3 styling */
.section-2-text .icons .card .txt3 {
  color: #88b520;
}
/* txt4 styling */
.section-2-text .icons .card .txt4 {
  color: #f96ea0;
}
/* txt5 styling */
.section-2-text .icons .card .txt5 {
  color: #7bbfff;
}
/* txt6 styling */
.section-2-text .icons .card .txt6 {
  color: #cb98e8;
}

/* icons ends */

/* button styling (more about us) */

.section-2 .section-2-text .more-about-us a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.section-2 .section-2-text .more-about-us a:hover {
  border: 2px dashed black;
}

/* text column styling ends*/

/* images column styling starts */

.section-2-img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}

/* row1 */
.section-2-img .row1 {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.section-2-img .row1 .img1 {
  width: 35%;
  border: 2px dashed #040303;
  border-radius: 30px;
}

.section-2-img .row1 .img2 {
  width: 65%;
  border: 2px dashed #fe723a;
  border-radius: 30px;
}
/* row1 ends */

/* row2 */
.section-2-img .row2 {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.section-2-img .row2 .img1 {
  width: 65%;
  border: 2px dashed #7a7a7a;
  border-radius: 30px;
}

.section-2-img .row2 .img2 {
  width: 35%;
  border: 2px dashed #88b520;
  border-radius: 50%;
}
/* row2 ends */

/* section 2 styling ends */

/* slider styling starts */

.slider-container {
  padding: 50px;
  display: flex;
  column-gap: 30px;
}

.slider-container .text-arrows {
  width: 30%;
}

.slider-container .text-arrows h2 {
  font-size: 37px;
  color: #e75115;
}

.slider-container .text-arrows p {
  font-size: 16px;
  color: #7a7a7a;
  text-align: justify;
  line-height: 1.6;
}

.slider-container .text-arrows .buttons {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.slider-container .text-arrows .nav-button {
  
  color: #e75115;
  cursor: pointer;
}

.slider-container .text-arrows .nav-button:hover {
  color: #ffe6dd;
}

.slider-container .slider {
  display: flex;
  align-items: center;
  column-gap: 20px;
  width: 70%;
  
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* white-space: nowrap; */
  
}

.slider-container .slider .card {
  background-color: #fbf1e3;
  width: 250px;
  height: 300px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 30px 15px 30px 15px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  
}

.slider-container .slider .card .logo i {
  background-color: #ff723a;
  color: white;
  /* display: flex; */
  font-size: 30px;
  padding: 20px;
  border-radius: 50%;
}

.slider-container .slider .card2 .logo i {
  background-color: #f14d5d;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
}

.slider-container .slider .card3 .logo i {
  background-color: #8e66ff;
  
}

.slider-container .slider .card4 .logo i {
  background-color: #00a50c;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
}

.slider-container .slider .card h3 {
  font-size: 25px;
  color: #00000f;
}

.slider-container .slider .card p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.6;
}





/* slider styling ends */

/* section 4 styling starts */

.section-4 {
  display: flex;
  align-items: center;
  padding: 50px;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/play-learn1.webp); */
  background-image: url(../images/play-learn1.webp);
  background-size: cover;
  background-position: center;
}

/* .section-4 .section-4-overlay {
    background-color: #7bbfff;
    padding: 50px;
    opacity: 50%;
} */

.section-4 .col1 {
  width: 45%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.section-4 .col1 h3 {
  font-size: 18px;
  color: #ea7040;
}

.section-4 .col1 h2 {
  font-size: 50px;
  color: white;
}

.section-4 .col1 .description {
  color: white;
  font-size: 16px;
  line-height: 1.8;
}

.section-4 .col1 .get-started a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.section-4 .col1 .get-started a:hover {
  border: 2px dashed black;
}

/* section 4 styling ends */

/* section 5 styling starts */

.section-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  row-gap: 10px;
  background-color: #ffffff;
}

.section-5 h3 {
  color: #ff723a;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 800;
}

.section-5 h2 {
  font-size: 50px;
  color: #1b212f;
  font-weight: 800;
}

.section-5 .filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.section-5 .filters .filter {
  flex-shrink: 0; /* Prevent shrinking */
}

.section-5 .filters .filter a {
  text-decoration: none;
  background-color: #fff1eb;
  color: #ff723a;
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
}

.section-5 .filters .filter a:hover {
  color: white;
  background-color: #ff723a;
}

/* Active state */
.section-5 .filters .filter a:active {
  color: white;
  background-color: #ff723a;
}

/* cards's styling */
.section-5 .cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2 equal columns */
  gap: 30px; /* space between columns */
}

.section-5 .cards .card {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* horizontal, vertical, blur, color */
  display: flex;
  flex-direction: column;
  
}

.section-5 .cards .card .card-img img {
  width: 320px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  
}

.section-5 .cards .card .card-text {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  
}

.section-5 .cards .card .card-text .price {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 20px;
  margin-top: -35px
}
  

.section-5 .cards .card .card-text .price a {
  color: white;
  text-decoration: none;
  background-color: #e75115;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 5;
}

.section-5 .cards .card .card-text .categories a {
  text-decoration: none;
  background-color: #feedee;
  color: #f14d5d;
  padding: 10px;
  border-radius: 5px;
}

.section-5 .cards .card .card-text .categories a:hover{
  background-color: #e75115;
  color: white;
}

.section-5 .cards .card .card-text .categories .programming {
  background-color: #ffece0;
  color: #ff9f66;
}

.section-5 .cards .card .card-text .title {
  text-decoration: none;
}

.section-5 .cards .card .card-text h3 {
  font-size: 28px;
  color: #00000f;
  text-decoration: none;
  margin-top: 20px;
}

.section-5 .cards .card .card-text h3:hover {
  color: #e75115;
}

.section-5 .cards .card .card-text .periods-levels {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #1b212f;
  margin-top: 20px;
}

.section-5 .cards .card .card-text .description {
  font-size: 16px;
  color: #707070;
  width: 300px;
  line-height: 1.4;
  margin-top: 20px;
}

.section-5 .cards .card .card-text .ceo-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-5 .cards .card .card-text .ceo-info .ceo {
  display: flex;
  column-gap: 8px;
}

.section-5 .cards .card .card-text .ceo-info .ceo .ceo-img img {
  width: 40px;
  border-radius: 50%;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role a {
  text-decoration: none;
  color: #1b212f;
  font-size: 16px;
  line-height: 1.4;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role a:hover {
  color: #e75115;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role .role {
  color: #707070;
  font-size: 14px;
  margin-top: 3px;
}

.section-5 .cards .card .card-text .ceo-info .total-students {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding-left: 20px;
  border-left:1px solid rgb(218, 216, 216);
  font-size: 16px;
}

.section-5 .cards .card .card-text .ceo-info .total-students .numb {
  color: #e75115;

}

/* section 5 styling ends */

/* section 6 styling starts */

.section-6 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-6 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-6 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-6 .cards {
  display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 30px; /* space between columns */
}

.section-6 .cards .card {
  width: 375px;
  padding: 45px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  row-gap: 20px;
}

.section-6 .cards .card .logo {
  font-size: 55px;
}

.section-6 .cards .card h2 {
  font-size: 35px;
}

.section-6 .cards .card  p {
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 10px;
}

.section-6 .cards .card .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
} 

.section-6 .cards .card .button a:hover {
  border: 2px dashed black;
}

/* section 6 styling ends */

/* section 7 styling starts */

.section-7 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-7 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-7 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-7 .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
}

.section-7 .cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  row-gap: 10px;
  background-color: white;
  width: 212px;
  padding-top: 35px;
  padding-bottom: 35px;
  border-radius: 10px;
}

.section-7 .cards .card .heading {
  text-decoration: none;
  color: #1b212f;
  font-size: 24px;
  line-height: 1.0;
  font-weight: 600;
}

.section-7  .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
}

.section-7  .button a:hover {
  border: 2px dashed black;
}

/* section 7 styling ends */

/* section 8 styling starts */

.section-8 {
  margin-top: 50px;
  background-color: #fbf1e3;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-8 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-8 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-8 .cards {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.section-8 .cards .container {
  display: flex;
  justify-content: flex-end;

  width: 1110px;
  /* background-color: black; */
}

.section-8 .cards .container2 {
  display: flex;
  justify-content: flex-start;

  width: 1110px;
  /* background-color: black; */
}

.section-8 .cards .container .card {
  
  display: flex;
  justify-content: flex-start;
  padding-left: 75px;
  align-items: center;
  background-color: #f4a21a;
  width: 90%;
  height: 236px;
  position: relative;
  box-sizing: border-box;
  border-radius: 20px;
  border: 2px dashed black;
  text-align: left;
}

.section-8 .cards .container .card2 {
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  background-color: #88b520;
}

.section-8 .cards .container .card3 {
  background-color: #376179;
}



.section-8 .cards .container .card .card-text{
  width: 650px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-8 .cards .container .card .card-text .heading {
  font-size: 40px;
  color: #fbf1e3;
  font-weight: 900;
  text-decoration: none;
}

.section-8 .cards .container .card .card-text .heading img {
  width: 40px;
  margin-bottom: -7px;
}

.section-8 .cards .container .card .card-text .description {
  font-size: 14px;
  color: #fbf1e3;
  line-height: 1.8;
}

.section-8 .cards .container .card .card-image {
  position: absolute;
  right: 75px;
  bottom: 0;
}

.section-8 .cards .container .card2 .card-image{
  position: absolute;
  left: 75px;
  bottom: 0;
}

/* section 8 styling ends */

/* section 9 styling starts */

.section-9 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}

.section-9 h2 {
  font-size: 40px;
  color: #1b212f;
  text-transform: capitalize;
}

.section-9 .cards {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
}

.section-9 .cards .card {
  display: flex;
  column-gap: 50px;
  justify-content: center;
  align-items: center;
}

.section-9 .cards .card2 {
  flex-direction: row-reverse;
}

.section-9 .cards .card .card-img img {
  width: 430px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.section-9 .cards .card .card-text {
  width: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}

.section-9 .cards .card .card-text h3 {
  font-size: 33px;
  font-weight: 800;
  color: #1b212f;
}

.section-9 .cards .card .card-text p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.6;
}

/* section 9 styling ends */

/* section 10 styling starts */

.section-10 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.section-10 h3 {
  font-size: 20px;
  text-decoration: underline;
  font-weight: 700;
  color: #e75115;
}

.section-10 h2 {
  font-size: 45px;
  color: #1b212f;
}

.section-10 .cards {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap:30px;
  /* justify-content: ; */
}

.section-10 .cards .card {
  width: 324px;
  
}

.section-10 .cards .card-text {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 10px;
}

.section-10 .cards .card .card-img img {
  width: 324px;
  height: 324px;
  border-radius: 5px;
}

.section-10 .cards .card .card-text .name {
  font-size: 24px;
  color: #000009;
}

.section-10 .cards .card .card-text .role {
  font-size: 14px;
  color: #707070;
}

.section-10 .cards .card .card-text .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

.section-10 .cards .card .card-text .social-icons .icon {
  height: 40px;
  width: 40px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}


.section-10 .cards .card .card-text .social-icons .icon a {
  color: #e75115;
}

.section-10 .cards .card .card-text .social-icons .icon a:hover {
  color: white;
}


.section-10 .cards .card .card-text .social-icons .icon:hover 
{
  background-color: #e75115;
}

/* section 10 styling ends */

/* section 11 styling starts */

.section-11 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
}

.section-11 h3  {
  font-size: 20px;
  text-decoration: underline;
  color: #e75115;
}

.section-11 h2 {
  font-size: 45px;
  color: #1b212f;
}

.section-11 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.section-11 .cards .card {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 300px;
  padding: 25px 30px 25px 30px;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
}

.section-11 .person-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.section-11 .person-info .person-img img {
  width: 70px;
  object-fit: cover;
}

.section-11 .person-info .person-det {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.section-11 .person-info .person-det .person-name {
  font-size: 24px;
  color: #00000f;
}

.section-11 .person-info .person-det .relation {
  font-size: 16px;
  color: #e75115;
}

.section-11 .cards .card .feedback {
  color: #707070;
  font-size: 16px;
  line-height: 1.6;
}

.section-11 .cards .card .icon i {
  font-size: 35px;
  color: #ea7040;
}

/* section 11 styling ends */

/* section 12 styling starts */

.section-12 {
  padding: 50px;
  background-color: #fdf8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}

.section-12 a {
  text-decoration: none;
}

.section-12 h3 {
  font-size: 20px;
  color: #e75115;
  text-decoration: underline;
  text-align: center;
}

.section-12 h2 {
  color: #1b212f;
  font-size: 45px;
  text-align: center;
}

.section-12 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}

.section-12 .cards .card {
  width: 320px;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  
}

.section-12 .cards .card .card-img img {
  width: 320px;
  border-radius: 15px;
}

.section-12 .cards .card .card-img img:hover {
  transform: scale(1.05); transition: transform 0.3s;
}

.section-12 .cards .card .card-text {
  padding: 20px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.section-12 .cards .card .card-text .school-skills a {
  font-size: 18px;
  color: #e75115;
}

.section-12 .cards .card .card-text .title a {
  font-size: 24px;
  color: #1b212f;
  font-weight: 600;
  line-height: 1.6;
}

.section-12 .cards .card .card-text .title a:hover {
  color: #e75115;
}

.section-12 .cards .card .card-text .uploading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #707070;
  padding-top: 15px;
  border-top: 1px solid #d8d7d7;
  font-size: 16px;
}

.section-12 .cards .card .card-text .uploading .uploader a {
  color: black;
}

.section-12 .cards .card .card-text .uploading .uploader a:hover {
  color: #e75115;
}

.section-12  .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
}

.section-12  .button a:hover {
  border: 2px dashed black;
}
/* section 12 styling ends */

/* about page styling starts */

.about-page {
  padding: 50px;
  display: flex;
  justify-content: center;
  
  background-color: #fbf1e3;
}

.about-page h2 {
  font-size: 50px;
  align-items: center;
  color: #1b212f;  
}

/* about page styling ends */

/* price page styling starts */

.pricing-table {
  padding: 50px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.pricing-table h3 {
  text-align: center;
  color: #e75115;
  font-size: 18px;
  text-decoration: underline;
}

.pricing-table h2 {
  text-align: center;
  font-size: 44px;
  color: #1b212f;
}

.pricing-table .pricing-container .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin: 10px 0px 50px 0px;
}

.pricing-table .pricing-container .buttons .button {
  padding: 15px 30px 15px 30px;
  background-color: #fff1eb;
  border-radius: 27px;
  color: #e75115;
  cursor: pointer;
}

.pricing-table .pricing-container .buttons #monthlyBtn {
  background-color: #ff723a;
  color: white;
}



.pricing-table .pricing-container .buttons .button:focus {
  color: white;
  background-color: #e75115;
}

.pricing-table .pricing-container .cards {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.pricing-table .pricing-container .cards .card {
  width: 244px;
  padding: 50px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
  background-color: #8e66ff;
  border-radius: 5px;
}



.pricing-table .pricing-container .cards .card h2{
  color: white;
}

.pricing-table .pricing-container .cards .card p {
  font-size: 20px;
  text-align: center;
}

.pricing-table .pricing-container .cards .card .icon {
  font-size: 50px;
}

.pricing-table .pricing-container .cards .card .price {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 20px 0px 20px 0px;
  border-top: 2px solid #ffffff26;
}

.pricing-table .pricing-container .cards .card .price .original {
  font-size: 30px;
  text-decoration: line-through;
  color: #ffffff26;
}

.pricing-table .pricing-container .cards .card .price .discounted {
  font-size: 40px;
}

.pricing-table .pricing-container .cards .card .month {
  font-size: 16px;
}

.pricing-table .pricing-container .cards .card .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  margin: 20px 0px 20px 0px;
}

.pricing-table .pricing-container .cards .card .list .row {
  display: flex;
  column-gap: 20px;
}


/* .pricing-table .pricing-container .cards .card .buy-now {
  width: 244px;
  border: 10px solid black;
} */

.pricing-table .pricing-container .cards .card .buy-now  {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px 10px 0px;
  border-radius: 27px;
  text-decoration: none;
  color: white;
  width: 100%;
  border: 2px solid white;
}

.pricing-table .pricing-container .cards .card .buy-now:hover {
  background-color: white;
  color: #8e66ff;
}

.pricing-table .pricing-container .cards .card2 {
  background-color: #ff723a;
}

.pricing-table .pricing-container .cards .card2 .buy-now:hover {
  color: #ff723a;
}

.pricing-table .pricing-container .cards .card3 {
  background-color: #f14d5d;
}

.pricing-table .pricing-container .cards .card3 .buy-now:hover {
  color: #f14d5d;
}

.pricing-table .pricing-container .yearly-cards {
  display: none;
}


/* price page styling ends */

/* newsletter styling starts */

.newsletter {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  background-color: #fff8f5;
  margin-top: 2px;
}

.newsletter h2 {
  font-size: 50px;
  color: #1b212f;
  text-align: center;
}

.news-letter .text-box form {
  display: flex;
  flex-direction: column;
}

.newsletter .text-box .row{
  display: flex;
  justify-content: space-between;
  padding: 5px;
  border-radius: 29px;
  width: 558px;
  border: none;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  box-sizing: border-box;
}

.newsletter .text-box .eml {
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 29px;
  
}

.newsletter .text-box .eml:focus {
  outline: none;
}

.newsletter .text-box button {
  background-color: #e75115;
  color: white;
  padding: 18px;
  font-weight: 600;
  border: none;
  border-radius: 27px;
  /* margin-left: -147px; */
  white-space: nowrap;
  cursor: pointer;
}

.newsletter .text-box button:hover {
  background-color: #ea7040;
}

.newsletter .mobile-search {
  display: none;
}

/* newsletter styling ends */

/* course-component-1 styling starts */

.course-component-1 {
  padding: 75px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.course-component-1 h2 {
  color: #1b212f;
  font-size: 40px;
}

.course-component-1 .ceo {
  font-size: 18px;
  color: #707070;
}

.course-component-1 .ceo a {
  text-decoration: none;
  color: #ea7040;
}

.course-component-1  .course-img img {
  object-fit: cover;
  width: 100%;
}

.course-component-1 .buttons {
  display: flex;
  align-items: center;
  column-gap: 20px;
  height: fit-content;
  margin-top: 10px;
}

.course-component-1 .buttons .btn a {
  text-decoration: none;
  color: #1b212f;
  border: 1px solid #d0d4dd;
  padding: 15px;
  border-radius: 5px;
  white-space: nowrap;
  
}

.course-component-1 .buttons .btn a:hover {
  color: white;
  background-color: #e75115;
  border: 1px solid #e75115;
}

.course-component-1 .buttons .share {
  text-decoration: none;
  color: #1b212f;
  border: 1px solid #d0d4dd;
  padding: 15px 20px 15px 20px;
  border-radius: 25px;
  width: fit-content;
}

.course-component-1 .buttons .share:hover {
  color: white;
  background-color: #e75115;
  border: 1px solid #e75115;
}

.course-component-1 .buttons .price {
  font-weight: 400;
  display: flex;
  column-gap: 10px;
  font-size: 17px;
  white-space: nowrap;
}

.course-component-1 .buttons .price .original {
  color: #707070;
  text-decoration: line-through;
  white-space: nowrap;
}

/* course-component-1 styling ends */


/* course-component-2 styling starts */

.course-component-2 {
  padding: 50px 75px 50px 75px;
  display: flex;
  gap: 20px;
  
}

.course-component-2 .col1 h2 {
  font-size: 28px;
  color: #1b212f;
}

.course-component-2 .col1 {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 70%;
}

.course-component-2 .col1 p {
  font-size: 16px;
  color: #707070;
  line-height: 1.6;
}

.course-component-2 .col1 h3 {
  font-size: 22px;
  color: #1b212f;
}

.course-component-2 .col1 ul li {
  color: #707070;
  line-height: 1.8;
}

.course-component-2 .col1 .rating .row {
  display: flex;
  align-items: center;
  column-gap: 50px;
}

.course-component-2 .col1 .rating .row .stars-stuff {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.course-component-2 .col1 .rating .row .stars-stuff .stars {
  color: #cccccc;
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.course-component-2 .col1 .rating .row .stars-stuff .numbers {
  display: flex;
  column-gap: 10px;
  color: #fecd5c;
}

.course-component-2 .col1 .rating .row .stars-stuff .numbers .button a {
  text-decoration: none;
  color: #fecd5c;
}

.course-component-2 .col1 .rating .row .enrolled {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #e75115;
  font-size: 18px;
}

.course-component-2 .col1 .rating .row .enrolled .total-numb {
  color: #e75115;
}

.course-component-2 .col1 .date-language {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-top: 20px;
}

.course-component-2 .col1 .date-language .container {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 16px;
  color: #1b212f;
}

.course-component-2 .col1 .date-language .container h4 {
  font-weight: 500;
}

.course-component-2 .col1 .meet-teacher {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 50px;
}

.course-component-2 .col1 .meet-teacher h3 {
  font-size: 30px;
  color: #1b212f;
}

.course-component-2 .col1 .meet-teacher .card {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.course-component-2 .col1 .meet-teacher .card .card-img img {
  width: 65px;
  border-radius: 50%;
}

.course-component-2 .col1 .meet-teacher .card .card-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.course-component-2 .col1 .meet-teacher .card .card-text .name a {
  text-decoration: none;
  font-size: 20px;
  color: #1b212f;
}

.course-component-2 .col1 .meet-teacher .card .card-text .role {
  color: #e75115;
  font-size: 16px;
}

.course-component-2 .col1 .related-skills {
  margin-top: 50px;
}

.course-component-2 .col1 .related-skills h3 {
  font-size: 30px;
  color: #1b212f;
}

.course-component-2 .col1 .related-skills .links {
  height: max-content;
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  
  padding: 20px 0px 20px 0px;

}

.course-component-2 .col1 .related-skills .links .link a {
  border: 1px solid rgb(231, 231, 231);
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #1b212f;
  flex-shrink: 0;
  white-space: nowrap;
}

.course-component-2 .col1 .related-skills .links .link a:hover {
  color: white;
  background-color: #e75115;
  border: #e75115;
}

.course-component-2 .col2 {
  width: 30%;
  padding: 30px 20px 30px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  row-gap: 25px;
}

.course-component-2 .col2 h3 {
  font-size: 25px;
  color: #1b212f;
}

.course-component-2 .col2 .list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.course-component-2 .col2 .list .row {
  display: flex;
  column-gap: 20px;
}

.course-component-2 .col2 .list .row .icon {
  color: #ffc00b;
}

.course-component-2 .col2 .list .row .text {
  font-size: 16px;
  color: #1b212f;
}
/* course-component-2 styling ends */

/* footer styling starts */

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 50px 20px 50px;
}

.footer .col1 a img {
  width: 200px;
}

.footer .col1 .sub-text {
  color: #707070;

}

.footer h3 {
  font-size: 20px;
  color: #e75115;
  margin-bottom: 10px;
}

.footer a {
  text-decoration: none;
  color: #707070;
}

.footer ul {
  
}


.footer ul li {
  list-style-type:none;
  line-height: 2.0;
}

.footer .col4  .row {
  display: flex;
  align-items: center;
  column-gap: 10px;
  line-height: 2.0;
}

.footer .col4  .row .icon {
  color: #e75115;
}

.footer .col4 .social {
  margin-top: 10px;
}

.footer .col4 .social a {
  height: 33px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e75115;
  color: white;
  border-radius: 50%;
}

.footer .col4 .social a:hover {
  transform: scale(1.05); transition: transform 0.3s;
}

footer .copyright {
  padding: 20px  0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbf1e3;
}

footer .copyright a {
  text-decoration: none;
  color: #e75115;
}

/* footer styling ends */

/* jump to top button styling starts */

.jump-btn a {
  background-color: #e75115;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
}

/* jump to top button styling ends */

@media (max-width: 1024px) {
  /* header styling starts */

  header {
    overflow-x: hidden;
  }

  .before-nav {
    flex-direction: column;
    width: 100vw;
    height: auto;
  }

  .number-email {
    width: 100%;
    justify-content: center;
  }

  .location {
    width: 100%;
  }

  .nav .demo-class {
    margin-right: 50px;
  }

  /* hamburger styling starts */
  .nav .hamburger {
    display: block;
    font-size: 30px;
    position: absolute;
    right: 50px;
    top: 135px;
  }

  .nav .nav-menu {
    display: none;
  }

  .nav .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    background-color: #fff;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 50;
  }

  .nav .mobile-menu ul a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
  }

  .nav .mobile-menu ul li {
    padding: 10px;
  }

  /* hamburger styling ends */

  /* header styling ends */

  /* hero section styling starts */
  .hero-section .hero-img {
    width: 500px;
  }
  /* hero section styling ends */

  /* section 2 styling starts */

  .section-2 {
    flex-direction: column;
  }

  .section-2-text {
    width: 100%;
  }

  .section-2-img {
    width: 100%;
    margin-top: 50px;
  }

  /* section 2 styling ends */

  /* slider styling starts */

  .slider-container {
    flex-direction: column;
  }

  .slider-container .text-arrows {
    width: 100%;
    
    
  }

  .slider-container .text-arrows .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slider-container .text-arrows .text p {
    width: 70%;
    text-align: center;
    
  }

  .slider-container .slider {
    width: 100%;
  }

  /* slider styling ends */

  /* section 4 styling starts */

  .section-4 .col1 {
    width: 80%;
  }

  .section-4 .col1 h2 {
    font-size: 40px;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 20px; /* space between columns */
  }
  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 330px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 33px;
  }

  /* section 6 styling ends */

  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(4, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container {
    width: 100%;
  }

  .section-8 .cards .container .card .card-text {
    width: 400px;
  }

  .section-8 .cards .container .card, .card2 {
    width: 100%;

  }

  .section-8 .cards .container .card .card-image {
    position: static;
    
  }

  .section-8 .cards .container .card .card-image img {
    width: 150px;
    margin-right: 50px;
  }

  /* section 8 styling ends */

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 360px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  }

  .section-9 .cards .card .card-text {
    width: 422px;
  }

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 .cards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */

  .section-12 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  /* section 12 styling ends */


  /* pricing table styling starts */

  .pricing-table .pricing-container .cards {
    display: grid;
    justify-content: center;
    grid-template-columns:  repeat(2, auto);
    gap: 20px;
    
  }
  
  .pricing-table .pricing-container .yearly-cards{
    display: none;

  }

  /* pricing table styling ends */

}

@media (max-width: 768px) {
  /* header styling starts */
  .before-nav {
    display: none !important;
  }

  .nav .hamburger {
    top: 25px;
    right: 50px;
  }

  .nav .demo-class {
    margin-right: 100px;
  }

  /* header styling ends */

  /* section 4 styling starts */

  .section-4 .section-4-overlay {
    display: flex;
    justify-content: center;
  }

  .section-4 .col1 {
    align-items: center;
    /* width: 100%; */
    text-align: center;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 h2 {
    font-size: 36px;
  }
  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-6 .cards .card {
    width: 350px;
    padding-left: 30px;
    padding-right: 30px;
  }

  /* section 6 styling starts */

  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container .card .card-text {
    text-align: center;
  }

  .section-8 .cards .container .card .card-image {
    display: none;
  }

  .section-8 .cards .container .card  {
    padding: 50;
  }

  /* section 8 styling ends */

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 330px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  }

  .section-9 .cards .card .card-text {
    width: 350px;
  }

  .section-9 h2 {
    font-size: 35px;
  }

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 {
    justify-content: center;
    align-items: center;
  }

  .section-10 h2 {
    text-align: center;
    font-size: 27px;
  }

  .section-10 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-11 h3 {
    text-align: center;
  }

  .section-11 h2 {
    font-size: 35px;
    text-align: center;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */

  .section-12 h2 {
    font-size: 40px;
  }

  .section-12 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-2 {
    flex-direction: column;
  }

  .course-component-2 .col1 {
    width: 100%;
  }

  .course-component-2 .col2 {
    width: 100%;
  }

  /* courses page styling ends */

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  
  /* footer styling ends */
  
}

@media (max-width: 640px) {
  .section-2 {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-2-text h2 {
    font-size: 26px;
  }

  .section-2 .description {
    font-size: 15px;
  }

  .section-2 .section-2-text .icons .card {
    flex-direction: column;
    row-gap: 20px;
  }

  .section-2 .section-2-text .icons .icon {
    height: 40px;
    width: 40px;
    font-size: x-large;
  }

  .section-2-text .more-about-us {
    font-size: 15px;
  }

  /* section 4 styling starts */

  .section-4 {
    padding-right: 0;
    padding-left: 0;
  }

  .section-4 .col1 {
    width: 90%;
  }

  .section-4 .col1 h3 {
    font-size: 16px;
  }

  .section-4 .col1 h2 {
    font-size: 28px;
  }

  .section-4 .col1 .description {
    font-size: 15px;
  }

  .section-4 .col1 .get-started a {
    font-size: 15px;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-5 h3 {
    text-align: center;
  }

  .section-5 {
    align-items: center; /* <- Allow child to take full width */
  }

  .section-5 .filters {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: nowrap;
    width: 100%; /* critical for scroll */
    scrollbar-width: none;
  }

  .section-5 .filters .filter {
    flex-shrink: 0;
  }

  .section-5 .filters .filter a {
    font-size: 14px;
    min-width: 120px;
    text-align: center;
  }

  /* cards styling */

  
  .section-5 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 equal columns */
    gap: 20px; /* space between columns */
  }
  /* section 5 styling ends */


  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* section 7 styling ends */

  /* section 9 styling starts */

  .section-9 h2 {
    font-size: 28px;
    text-align: center;
  }

  .section-9 .cards .card {
    flex-direction: column;
    row-gap: 50px;
  }

  

  .section-9 .cards .card .card-text {
    width: 100%;
  }

  .section-9 .cards .card .card-text h3 {
    font-size: 24px;
  }

  .section-9 .cards .card .card-text p {
    font-size: 14px;
  }

  /* section 9 styling ends */

  /* section 11 styling starts */

  .section-11 h2 {
    font-size: 30px;
  }

  /* section 11 styling ends */

  /* courses page styling starts */

  .course-component-1 {
    padding: 50px;
  }

  .course-component-2 {
    padding: 50px;
  }

  /* courses page styling ends */

  /* about page styling starts */


  .about-page h2 {
    font-size: 40px;
  }

  /* about page styling ends */

  

  /* newsletter styling starts */

  .newsletter h2 {
    font-size: 35px;
  }

  .newsletter .text-box form .row {
    width: 420px;
    padding: 3px;
  }


  .newsletter .text-box form .row button {
    padding: 15px;
  }

  /* newsletter styling ends */

  /* pricing table styling starts */

  .pricing-table h2 {
    font-size: 35px;
  }

  .pricing-table .pricing-container .cards {
    display: grid;
    grid-template-columns:  repeat(1, auto);
    gap: 20px
  }
  
  .pricing-table .pricing-container .yearly-cards{
    display: none;

  }

  /* pricing table styling ends */

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* footer styling ends */
    
}

@media (max-width: 550px) {
  .hero-section .hero-img {
    width: 400px;
  }

  .section-8 .cards .container .card  {
    width: 100vw;
  }

  .section-8 .cards .container .card .card-text .heading {
    font-size: 27px;
  }

  .section-8 .cards .container .card .card-text .description {
    font-size: 14px;
  }

  /* section 12 styling starts */

  .section-12 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-12 h2 {
    font-size: 35px;
  }


  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-1 .buttons {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3,1fr);
    row-gap:40px;
  }

  /* courses page styling ends */

  /* newsletter styling starts */

  .newsletter .text-box form .row {
    width: 300px;
  }

  .newsletter .text-box .desktop-search {
    display: none;
  }

  .newsletter .mobile-search {
    display: block;
  }

  /* newsletter styling ends */
}

@media (max-width: 469px) {
  .nav {
    padding: 5px;
  }

  .nav .hamburger {
    right: 50px;
  }

  /* slider styling starts */

  .slider-container .text-arrows .text p {
    width: 90%;
  }

  /* slider styling ends */

  /* section 6 styling starts */

  .section-6 h2 {
    font-size: 26px;
  }

  .section-6 .cards .card {
    width: 330px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 33px;
  }

  /* section 6 styling ends */

  /* section 7 styling starts */

  .section-7 h2 {
    font-size: 26px;
  }

  .section-7 .cards {
    grid-template-columns: repeat(1, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container .card .card-text{
    height: 200px;
    row-gap: 0;
  }

  .section-8 .cards .container .card{
    height: 200px;
  }

  /* section 8 styling ends */

  /* section 11 styling starts */



  .section-11 h3 {
    font-size: 15px;
  }

  .section-11 h2 {
    font-size: 25px;
  }

  /* section 11 styling ends */

  .about-page h2 {
    font-size: 35px;
  }

  .pricing-table h2 {
    font-size: 25px;
  }

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(1, 1fr);
  }
  
  /* footer styling ends */
}

@media (max-width: 400px) {
  .hero-section .hero-img {
    width: 350px;
  }

  /* slider styling starts */

  .slider-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-container .text-arrows .text p {
    width: 100%;
  }

  /* slider styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 26px;
  }

  /* section 6 styling ends */

  /* section 11 styling starts */

  .section-11 {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */
  .section-12 h3 {
    font-size: 15px;
  }

  .section-12 h2 {
    font-size: 30px;
  }
  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-1 {
    padding: 50px 25px 50px 25px;
  }

  .course-component-1 h2 {
    font-size: 30px;
  }

  
  .course-component-1 .buttons {
    grid-template-columns: repeat(2,1fr);
  }

  .course-component-2 {
    padding: 50px 25px 50px 25px;
  }

  .course-component-2 .col1 h2 {
    font-size: 25px;
  }

  .course-component-2 .col1 .rating .row {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 10px;
  }

  .course-component-2 .col1 .date-language {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 10px;
  }

  /* courses page styling ends */
}

@media (max-width: 369px) {
  .nav .demo-class {
    font-size: 10px;
    padding: 10px;
  }

  .nav .nav-logo img {
    width: 80px;
  }

  

  .section-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 260px;
  height: 250px;
  
  }

  

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 {
    padding: 20px;
    
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-11 .cards .card {
    width: 280px;
  }

  /* section 11 styling ends */
}

@media (max-width: 320px) {
  .hero-section .hero-img {
    width: 300px;
  }

  /* section 5 styling starts */

  .section-5 .cards .card .card-img img {
  width: 290px;
  
  }

  .section-5 .cards .card .card-text .description {
  width: 280px;
  }

  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* section 6 styling ends */

  /* section 10 styling starts */

  .section-10 .cards .card {
    width: 280px;
  }

  .section-10 .cards .card .card-img img {
    width: 280px;
  }

  /* section 10 styling ends */

  /* section 12 styling starts */
  
  .section-12 {
    padding-left: 0;
    padding-right: 0;
  }
  /* section 12 styling ends */

  /* pricing table styling starts */

  .pricing-table .pricing-container .cards .card {
    padding: 50px 20px 50px 20px;
  }
  /* pricing table styling ends */
}