/* Font Imports */

@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=DM+Sans:wght@500;700&display=swap");
/* font */
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat&family=Nunito&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Piedra&display=swap");

:root {
  --primary: #be6361;     /* --primary: #2874A6 ; */
  --secondary: #fff2dd;   /* --secondary: #2874A6;*/
  --third: #333333;
}

/* html resets */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* navigation bar styling start*/

nav {
   background-color: #FF8482;
 /* background-color: #2874A6;*/
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.nav-wrapper {
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: right;
  width: 85vw;
  margin: auto;
}

.logo img {
  width: 200px;
  height: 50px;
  object-fit: cover;
  border-radius: 35px 0px;
  cursor: pointer;
}

.nav-links-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: right;
  /*height: 52px; */
  height: 40px;
  width: 40vw;
  background: linear-gradient(89.97deg, #fdc068 1.14%, #fff2dd 98.23%); 
/* background: linear-gradient(89.97deg, #AED6F1 1.14%, #fff2dd 98.23%); */
  border-radius: 0px 50px;
}

.nav-links {
  width: 70%;
  /*font-family: DM Sans; */
   font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0px;
  text-align: right;
  color: #333333;  /* font color in menue bar */
}

.nav-links ul {
  display: flex;
  justify-content: space-evenly;
  align-items: right;
  list-style: none;
  transition: all 0.5s ease-in-out;
}

.nav-links li {
  transition: all 0.5s ease-in-out;
}

.nav-links ul li:hover {
  cursor: pointer;
}

.nav-links span {
  transform: rotate(90deg);
  display: inline-block;
}

.nav-links ul li {
  display: inline-block;
}

.nav-links ul li::after {
  content: "";
  width: 0px;
  height: 3px;
  display: block;
  background: #C6B6A7;  /* Change color under text in menu bar */
/*  background: #5DADE2; */
  transition: 300ms;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.nav-link {
  border: 2px solid var(--third);
/*  padding: 8px; */
  padding: 12px;
  border-radius: 16px 0px;
}
.nav-cta {
  width: 70px;
 /* height: 35px; */
  height: 40px; 
  text-align: center;
  border: 1px solid black;
  background-color: #ff8482;
  font-size:12px;
/* background-color: #5DADE2; */  /* Book free demo background color*/ 
 /* border-radius: 0px 20px;*/
  border-radius: 14px 0px;
  cursor: pointer;
  padding-top: 3px;
}

.nav-cta h3 {
 /* font-family: "DM Sans", sans-serif;*/
   font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size:12px;
  color: white;  /* font color of Book Free Demo color*/
  margin-top: 1px;
  cursor: pointer;
}

.burger-menu {
  display: none;
}

.drop {
  cursor: pointer;
}

.temp {
  height: 5vh;
  width: 7vw;
  position: absolute;
}

.drop-down {
  position: absolute;
  top: 5vh;
  flex-direction: column;
  display: none;
  justify-content: space-evenly;
  background: var(--secondary);
  border-radius: 10px;
  /* min-height: 10vh; */ /* increase space between cousesin drop down menu-courses list */ 
  min-height: 20vh;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
  /* border-radius: 6px; */
  border: 2px solid #131313;
  transition: all 0.2s ease-in-out;
}

.drop-down a {
  color: #333333;  /* color font in courses*/ 
/*  color: white; */
/*  font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 5px;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.drop-down a:hover {
  min-width: 40%;
  background-color: #ff8482;  /* background of courses drop down menu */ /* when hover over courses highlight the course */
/* background-color: white;  */  /* then the color change to secondary color  */
  color: var(--secondary);
  border-radius: 5px;
  padding: 1vh 1vw;
  animation: drop-down-animation 0.5s ease-in forwards 1s;
}

.drop:hover .nav-links span {
  transform: rotate(270deg);
}

.drop:hover .drop-down {
  display: flex;
}

.drop-down:hover {
  display: flex;
}

@keyframes drop-down-animation {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media all and (max-width: 1300px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .heading h2 {
    font-size: 40px;
  }

  .logo {
    padding-left: 10vw;
  }

  .burger-menu {
    display: block;
    padding-right: 10vw;
  }

  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .nav-links-wrapper {
    flex-direction: column;
  }

  .nav-links ul {
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
  }

  .nav-links {
    height: 60%;
  }

  .nav-links-wrapper {
    height: 85vh;
    position: absolute;
    top: 10vh;
    right: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
  }

  .nav-links-active {
    transform: translateX(0);
  }

  .nav-divider {
    transform: rotate(90deg);
  }

  @keyframes navFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .drop-down a {
   /* display: none;*/
  }
}

/*edit small screen menu*/
@media all and (max-width: 1300px) and (min-width: 1000px){ 
  
  /*edit for mobile menu 24-11   @media all and (max-width: 1300px) and (min-width: 800px){ } */
    .drop-down {
	  position: static;  
    height: auto; /*try to put width also 90% of screen*/
	width: 320px; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 250px; 
}  /* this for editing menu in small screen I need to adjust margin to start from the top of the window */
}
@media all and (max-width: 990px) and (min-width: 800px){ 
  
  /*edit for mobile menu 24-11   @media all and (max-width: 1300px) and (min-width: 800px){ } */
    .drop-down {
	  position: static;  
    height: auto; /*try to put width also 90% of screen*/
	width: 320px; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 250px; 
}  /* this for editing menu in small screen I need to adjust margin to start from the top of the window */
} 
@media all and (max-width: 790px) and (min-width: 250px){
    .drop-down {
	  position: static;  
    height: 83vh; /*try to put width also 90% of screen*/
	width: 90vw; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 200px; 
}	
}
/* navigation bar styling end */

/* start slideshow section*/


.landing-slider {
 	

  width: 99vw; /*try to fit in all screen */

  height: 100vh;
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #ff8482;
  padding-top:2%;
  /*  background-color: none; */
  /*  height: 1300px; */
  /*height: auto;*/
  
}
.slide {
  flex-shrink: 0;
  width: 99vw; /*try to fit in all screen */
  height: 99vh;
  
  /*  width: 99vw;
   height: 100%; */
     /*height:auto;*/
 /* font-size: 124px;*/
  
}

/* End slideshow section*/
/* Landing section styling */

.landing-section {
/*  margin-top: 87px; /* add margin to appear text that hides under the navigation bar - edit for slider section*/ 
  width: 99vw; /*try to fit in all screen */
  height: 99vh;
  display: flex;
  justify-content: space-around;
  padding-top:10%;
  align-items: left;
  background-color: #ff8482;
 /* padding-top:5%/* landing section first part Background*/ 
 /* background-color: #5DADE2; */
  /* height: auto; */
}

.landing-section-illustration img {
  position: relative;
  z-index: 999;
}

.landing-section .sub {
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;;
  font-weight: 700;
  font-size: 15px;
  padding-top:10%;
  color: black;
   /*color: white; */  /*change color after adding slider */
}

.landing-section h1 {
 font-family: "Poppins", sans-serif;
  font-weight: 980;
  font-size: 2.7vw;
  max-width:60%;
 
  color: black;
  
  /*color: white; */  /*change color after adding slider */
   /* font-family: "Alfa slab one", cursive; */
 /*  font-weight: 400; */ 
}

.landing-section input {
  background-color: white;
  width: 300px;
  height: 48px;
  font-size: 1.4vw;
  border-style: none;
}

.landing-section input::placeholder {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: grey;
  font-size: 1vw;
  padding-left: 10px;
}

.landing-section button {
  height: 48px;
  width: 100px;
  margin-left: 30px;
  cursor: pointer;
  background-color: white;
  border: 3px solid black;
/* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 35px 0px;
}

.landing-section img {
  min-width: 500px;
  min-height: 500px;
  /*margin-top: 20px;*/
  max-width: 50%; /* change to control slider section */
}

@media all and (max-width: 1450px) and (min-width: 1000px) {
  .landing-text h1 {
    font-size: 4.9vw;
    max-width: 40%; /* add to control slider section */ 
    
  }
  .landing-section img {
    width: 35%;
    height: auto;
  }
  .landing-section {
       margin-top: 5%; /*add to test smaller screen */
  }
}

.landing-text {
  margin-left: 10px;
  max-width: 60%; /*add to control slider section*/ 
}

.circle-1 img {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(280px);
}

.scroll-icon {
  height: 70px;
  width: 70px;
  position: absolute;
  bottom: 0;
  top: 80vh;
  left: 50vw;
  animation: scroll-animate 0.5s linear 0.3s infinite alternate;
}

@keyframes scroll-animate {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}


/*small edit for small screen */
@media all and (max-width: 1300px) and (min-width: 250px){
.landing-slider {
 	
  width: auto;
/*  height: 1300px; */
  height: auto;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: none;
  
}
.slide {
  width: auto;
  flex-shrink: 0;
 /* height: 100%;*/
  height:auto;
 /* font-size: 124px;*/
}

/* landing slider style*/ 

.landing-section {
 
  width: auto; 
  height: auto;
  display: flex;
  justify-content: space-around;
  padding:5%;
  align-items: left ;
  background-color: #ff8482;   /* landing section first part Background*/ 
 /* background-color: #5DADE2; */
}

}

@media all and (max-width: 1300px) and (min-width: 800px){
	.landing-section {
   margin-top: 0px; /* add margin to appear text that hides under the navigation bar */ 
	}
.landing-section img {
  width: 300px;
  height:auto;
  margin-top:5%;
  /*max-width: 50%;*/ /* change to control slider section */
	}

}
@media all and (max-width: 700px) and (min-width: 250px){
.landing-section {
   margin-top: 70px; /* add margin to appear text that hides under the navigation bar */ 
	}
    
.landing-section img {
  
  
 
/*  max-width: 50%; /* change to control slider section */
  
   height: auto;
    width: 100vw;
    margin-top:5%;
	}
.landing-section input {
    margin-left: -25%;
}     
	
	.landing-text {
  margin-left: 40px;
  max-width: 90%; /*add to control slider section*/ 
}

}

@media all and (max-width: 380px) and (min-width: 250px){
    .landing-section input {
    margin-left: -70%;
}
}
/* landing-section style end */

/* Interactions section style start */
/* end slideshow section*/ 

.interactions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
 /* padding:-30px;
  margin:0;*/
/*  height: 80vh; */
  height: 99vh;
  background-color: #fff2dd;  /* background color of interactionsection. The second part #2874A6*/ 
/* background-color: #2874A6; */
}

.interactions .sub {
   color: var(--primary);   /* color of first sentence in the section, Live Interaction*/ 
 /* color: white;  */ 
/*  font-family: "DM Sans", sans-serif; 
 padding-top:-30px;
 margin:0;*/
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 20px; */
  font-size: 20px;
}

.interactions h2 {
/*  font-family: "Alfa slab one", cursive; 
 padding-top:-2%;*/
 font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-weight:800;
  font-size: 32px;
/* padding-top:20px;*/
}

.interactions p {
/*  font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333333; /* paragraph color in this section*/ 
 /* color: white; */
}

.interactions-cta {
  height: 50px;
  width: 170px;
  background-color: #FF8482; 
/*  background-color: #5DADE2; */  /* Book Demo button background in interaction section*/ 
  border: 2px solid black;
  text-align: center;
  padding-top: 10px;
  border-radius: 35px 0px;
}

.interactions-cta a {
  text-decoration: none;
/*  font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;  /* Book Demo button font color in interaction section*/ 
}

/* Interactions style end */

/* features style :start */

.features {
  background-color: #ffffff;  /*White background color for We help you have fun while learning section */ 
 /* height: 70vh;*/
  height: 99vh;
  padding:20px;
}
.features .sub {
  color: var(--primary);  /* Learning is fun font color in features section*/ 
 /* font-family: "DM Sans", sans-serif; */
 padding-top:-20px;
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 20px; */
  font-size: 20px;
  text-align: center;
  
}

.features h2 {
/*  font-family: "Alfa slab one", cursive; */
font-family: "Poppins", sans-serif;
/*  font-weight: 400; */
font-weight: 800;
  font-size: 32px;
  text-align: center;
}

.features .text {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  text-align: center;
}

.features-boxes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 70vw;
  margin: auto;
}
.feats p {
  /*font-family: "Alfa slab one", cursive; */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: grey;
  opacity: 0.3;
  margin-top: -10px;
  margin-left: 100px;
}

.feats {
  width: 170px;
  height: 170px;
  border: 0.5px solid #e5e5e5;
  border-radius: 3px;
}

.feats img {
  margin-left: 10px;
  margin-top: 7px;
}

/* .features-text {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 70vw;
  margin: auto;
  text-align: center;
} */

.feat-text {
  width: 200px;
  text-align: center;
  transform: translateX(-15px);
}

.feat-text h3 {
  color: #333333;
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.feat-text p {
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #999999;
}

.features-cta {
  margin-bottom: 10vw;
  height: 48px;
  width: 170px;
  border-radius: 30px 0px;
  border: 1px solid black;
  background-color: var(--primary);
  text-align: center;
  padding-top:10px;
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features-cta a {
  text-decoration: none;
  color: white;
}
/* features style :end */

.circle-2 img {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 230vh;
}

.circle-3 img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  height: 300px;
  width: 400px;
}
.circle-4 img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-circle-1 img {
  position: absolute;
  left: 5vw;
  bottom: 0;
  top: 610vh;
}

.c-circle-2 img {
  position: absolute;
  left: 10vw;
  bottom: 0;
  top: 600vh;
  height: 100px;
  width: 100px;
}

.c-circle-3 img {
  position: absolute;
  left: 2vw;
  bottom: 0;
  top: 590vh;
}

/* Growth style :start */

.growth {
  background-color: var(--secondary);
 /* height: 80vh;*/
  height: 99vh; 
  margin-top: 10vh;
}

.growth .sub {
  color: var(--primary); 
/* color: white; */
  text-align: center;
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding:20px;
}

.growth-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.growth-text {
  margin-bottom: 100px;
  margin-left: 200px;
}

.growth-wrapper h4 {
  color: var(--primary);  /* "Because" word font color in growth section*/ 
/*  color: white; */
  text-align: left;
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 20px;*/ 
  font-size: 20px; /* to unify all sub*/
}

.growth-wrapper h2 {
/*  font-family: "Alfa slab one", cursive; */
  font-family: "Poppins", sans-serif;
 /* font-weight: 400; */
 font-weight: 800;
  font-size: 32px;
}

.course-feats {
  display: flex;
  align-items: center;
}
.course-feats p {
  color: #333333;  /* paragraph font color in growth section*/ 
 /* color: white; */
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.course-feats img {
  margin-right: 10px;
}

.growth-cta {
  height: 48px;
  width: 170px;
  border: 2px solid #333333;
/*  background-color: var(--secondary);  */ /* background of Get started color */ 
   background-color: var(--primary); /* change to be compatible with previouse Book Buttons*/
/*  background-color: #5DADE2; */
  text-align: center;
  padding-top: 0px;
  cursor: pointer;
  border-radius: 30px 0px;
}

.growth-cta a {
  text-decoration: none;
/*  color: var(--primary);*/  /* font color of Get started  */ 
  color: white;
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* Growth style :end */

/* workshops style :start */

.workshops {
/*  height: 75vh; */
  height: 99vh;
  position: relative;
  margin:0;
  padding:0;
}

.workshops img {
  height: 368px;
  width: 570px;
  border-radius: 15px;
}

.work-slider {
  /*width: 70vw;*/
  margin: auto;
  width: 67vw;
  padding: 0px;
  background-color:  #ff8482;
}

.work-slider p {
  color: var(--third);
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  /*margin-left: 80px;*/
  margin: auto;
  text-align: center; 
}

.workshops .sub {
  color: var(--primary);
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding-top: 0;
  margin-left: 270px;
}

.work-wrapper h2 {
 /* font-family: "Alfa slab one", cursive; */
  font-family: "Poppins", sans-serif;
 /* font-weight: 400;*/
 font-weight:800;
  font-size: 32px;
  margin-left: 270px;
  padding-top:0;
}

.work-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.work-button {
  margin-right: 380px;
  height: 60px;
  width: 253px;
  background-color: var(--primary);
  padding-top: 10px;
  text-align: center;
  z-index: 3;
  border-radius: 0px 40px;
}

.work-button a {
  text-decoration: none;
  color: white;
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

/* workshops style :end */

/* highlights style :start */

.highlights {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
 /* height: 70vh; */
  height: 80vh;
  background-color: var(--secondary);
 top:-30px;
 right:30%;
}

.highlights-illustration {
  margin-top:-30px;
}

.highlights-text .sub {
  color: var(--primary);
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding-top:-30px;
  top:-30px;
  right:30%;
}

.highlights-text h2 {
/*  font-family: "Alfa slab one", cursive; */
  font-family: "Poppins", sans-serif; 
/*  font-weight: 400; */
  font-weight:800;
  font-size: 32px;
  padding-top:-30px;
}

.highlights-whole-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top:-30px;
}

.highlights-wrapper {
  margin-right: 30px;
}

.highlights-wrap {
  display: flex;
  align-items: center;
  padding-top:-30px;
}

.highlights-wrap p {
  color: var(--third);
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-left: 10px;
  padding-top:-30px;
}
/* highlights style :end */

/* faq style :start */

.faq-section {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin:0;
  padding:0;
}
.faq-section .sub {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /*  font-size: 20px; */
  font-size: 20px;
  color: var(--primary);
  text-align: center;
  margin-bottom:10px;
}
.faq-section h2 {
/*  font-family: "Alfa slab one", cursive; */
 /* font-weight: 400; */
  font-family: "Poppins", sans-serif;
  font-weight:800;
  font-size: 32px;
  color: var(--third);
  text-align: center;
  margin-bottom:20px;
}
.faq h1 {
  text-align: center;
  margin: 0 0;
  font-size: 18px;
}

.faqwrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.faq {
  width: 80vw;
  max-width: 1000px;
  margin-left: 50px;
}
.faq-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.faq-item-header {
  padding: 0 3rem 2rem 1rem;
  /* <!-- padding: 0.5rem 3rem 0.5rem 1rem; -->*/
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 20px;
}
.faq-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.faq-item-header.active::after {
  content: "\2212";
}
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.il img {
  margin-left: 60px;
  height: 80%;
  width: 70%;
}

@media (max-width: 767px) {
  .faq-section {
    font-size: 14px;
  }
}

/* faq style :end */

/* courses style :start */

.courses {
  background-color: var(--secondary);
  height: 99vh;
  /*height: 70vh; */
 /* min-height: 119vh; /* to add 4 the fourth course*/
}

.courses .sub-1 {
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  /*  font-size: 20px; */
  font-size: 20px;
  color: var(--primary);      /* Courses" word font color */ 
 /* color: white; */
  margin-left: 200px;
  padding-top: 2%;
}

.courses h2 {
 /* font-family: "Alfa slab one", cursive; */
 /* font-weight: 400; */
  font-family: "Poppins", sans-serif;
  font-weight:800;
  font-size: 32px;
  margin-left: 200px;
}

.courses-wrapper {
  display: flex;
  justify-content: space-evenly; /* how boxes arrange in line */
  align-items: center;
  flex-wrap: wrap;
  width: 90vw;
  margin: auto;
}

.course-title-wrap {
  width: 90vw;
  margin: auto;
}

.course-cta {
  height: 48px;
  width: 170px;
  border: 2px solid #333333;
  border-radius: 30px 0px;
 /* background-color: var(--secondary);*/   /* Button Background color*/ 
  background-color: var(--primary);
/*  background-color: #5DADE2; */
  text-align: center;
  padding-top: 10px;
  cursor: pointer;
  margin-right: 120px;
}

.course-cta a {
  text-decoration: none;
 /* color: var(--primary);  */  /* Button font color*/ 
  color: white; 
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
/*  font-size: 16px;  */  /* Button font size*/ 
  font-size: 18px;
}

.course-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.course {
/*  background: #ffffff;
  box-shadow: 6px 6px 14px 0 rgba(185, 179, 179, 0.486),
    -8px -8px 18px 0 rgb(255, 255, 255);
  border-radius: 40px;
  padding: 4px 30px 20px;
  min-height: 380px;
  width: 320px;
  margin-left: 100px;
  overflow: hidden;  */
  
    background: #ffffff;
  border-radius: 40px;
  box-shadow: 4px 4px 9px #d9d9d9, -5px -5px 11px #ffffff;
  margin: 1rem;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height:: 338px;
  transition: 0.5s ease-in-out;
  width: 320px;
    background: #ffffff;
  border-radius: 40px;
  box-shadow: 4px 4px 9px #d9d9d9, -5px -5px 11px #ffffff;
  margin: 1rem;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height:: 338px;
  transition: 0.5s ease-in-out;
  width: 320px;
  
}

.course img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  transform: translate(-30px, -10px);
}

.course .sub {
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  text-align: center;
}

.course h3 {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--third);
  width: inherit;
}

.course p {
 /* font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--third);
  text-align: center;
}

.course-btn {
  height: 36px;
  width: 138px;
  background-color: #ff8482;
  padding-top: 7px;
  text-align: center;
  border-radius: 10px;
  margin-left: 55px;
  box-shadow: 6px 6px 10px #ee6969;
}

.course-btn a {
  text-decoration: none;
  color: #333333;
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
 
 @media all and (max-width: 1300px) and (min-width: 330px){
     .course {
         margin-left: 100px;
     }
 }
/* courses style :end */

/* testimonals style :start */

.testimonials {
 /* height: 80vh; */
 height: 94vh;
 overflow:hidden;
 position:relative;
}

.testimonials .sub {
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 20px; */
 font-size: 20px;
  color: var(--primary); /* color of "Opinions" word in this section*/ 
  text-align: center;
  padding-top: 2%;
}

.testimonials h2 {
/*  font-family: "Alfa slab one", cursive; */
/*  font-weight: 400;*/
  font-family: "Poppins", sans-serif;
  font-weight:800;
  font-size: 32px;
  text-align: center;
}

.testimonials-wrapper {
  width: 70vw;
  height:100%;
  
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
 animation:scrollLeftToRight 20s linear infinite;
}

.profile-wrapper {
  display: flex;
  align-items: center;
  padding-top: 30px;
  flex-wrap: nowrap;
}

.profile-wrapper h3 {   /* customer name*/ 
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--third);  /* customer name color*/ 
}

.profile-wrapper .sub { /* customer course name - sub header*/ 
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: grey;     /* customer course color - sub header*/ 
  /*color: #000000;  */
  text-align: left;
}

.profile-info {
  margin-left: 20px;
}

.profile-wrapper img {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  margin-left: 40px;
}

.testimonial {
  width: 470px;
  height: 400px;
  border-radius: 15px;
  background-color: var(--secondary);     /* background color of user opinion -movment */  
/*  background-color: #AED6F1 ; */
  margin-right: 10px;
  flex: 0 0 auto;
}

.testimonial p {
 /* font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: grey;
  text-align: left;
  width: 80%;
  margin: auto;
  line-height: 30px;
  margin-top: 10px;
}
@keyframes scrollLeftToRight{
    0%{
        transform: translateX(-50%);
    }
    100%{
        transform: transalteX(0);
    }
}
.testimonial-wrapper{
    width: 200%
}

/* testiminials style :end */

/* newsletter style :start */

.newsletter {
 /* height: 70vh; */
 margin:1%;
 padding:2%;
 height:99vh;
  background-color: var(--secondary);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  
}

.newsletter .sub {
/*  font-family: "DM Sans", sans-serif; */
font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 20px; */
  font-size: 20px;
  color: var(--primary);
  justify-content:center;
  align-items:flex-start;
  margin-bottom:20px;
  
}

.newsletter h2 {
 /* font-family: "Alfa slab one", cursive; */
  font-family: "Poppins", sans-serif;
 /* font-weight: 400;*/
  font-weight:800;
  font-size: 32px;
  margin-top:0;
}

.newsletter-wrapper {
  width: 60vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter input,
textarea {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 470px;
}

.newsletter input[type="submit"] {
  height: 48px;
  width: 170px;
  border-radius: 30px 0px;
  border: 1px solid black;
  background-color: var(--primary);  /* button background */
/*  background-color: #5DADE2; */
  text-align: center;
  color: white;
  cursor: pointer;
}

.newsletter input[type="email"] {
  height: 46px;
}
/* newsletter style :end */

/* details style :start */

.details {
  height: 40vh;
}

.details .sub {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /*  font-size: 20px; */
  font-size: 20px;
  color: var(--primary);
  padding-top: 2%;
  text-align: center;
}

.details h2 {
/*  font-family: "Alfa slab one", cursive; */
/*  font-weight: 400;*/
  font-family: "Poppins", sans-serif;
  font-weight:800;
  font-size: 32px;
  text-align: center;
}

.details-card {
  display: flex;
  align-items: center;
  background-color: var(--secondary);
  border-radius: 10px;
  height: 80px;
  width: 280px;
}

.details-card img {
  margin-left: 30px;
  margin-right: 20px;
}

.details-card h3 {
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: black;
}

.details-card h4 {
 /* font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: grey;  /* card information text color */ 
 /* color: white;  */ 
}

.details-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 80vw;
  margin: auto;
}
/* details style :end */

/* footer style :start */

.footer {
  height: 40vh;
  background-color: var(--primary);
}

.footer-logo img {
  width: 250px;
  height: 50px;
  object-fit: cover;
  border-radius: 3px 35px;
  margin-top: 5vh;
}

.footer-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80vw;
  margin: auto;
}
.footer-main-wrapper h2 {
/*  font-family: "Alfa slab one", cursive; */
 /* font-weight: 400;*/
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: white;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.footer-wrapper h3 {
 /* font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
}

.footer-wrapper p {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  opacity: 70%;
  line-height: 40px;
}

.footer-wrapper a {
  text-decoration: none;
}

.address {
  margin-right: 100px;
}

.policies {
  margin-right: 100px;
  margin-bottom: 80px;
}

.navigation {
  margin-top: 36px;
}

.copyright-footer {
  height: 5vh;
  background-color: #a85756;   /* © Robokalam, 2021. All rights reserved. Color*/ 
}

.copyright-footer p {
/*  font-family: "DM Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  opacity: 70%;
  text-align: center;
  padding-top: 10px;
}

.social-wrapper {
  min-width: 10vw;
  margin-top: 1vh;
  display: flex;
  align-items: center;
}

.social {
  height: 50px;
  width: 50px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.7vw;
  border: 2px solid #ff8482;
}

.social:hover {
  background-color: #ff8482;
  cursor: pointer;
  border: 2px solid var(--secondary);
  transform: scale(1.2);
}

.social:hover svg {
  fill: #fff;
}

/* .instagram svg {
  display: flex;
  justify-content: center;
  align-items: center;
} */
/* footer style :end */

/* media queries */

@media all and (max-width: 380px) {
  .features-cta {
    transform: translateX(-20px);
  }
}

@media all and (max-width: 550px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* nav style :end */
  .landing-section {
    height: auto;
    padding-top: 20px;
  }
  .landing-section h1 {
    font-size: 24px;
  }
  /* .landing-text {
    transform: translateY(-100px);
  } */
  .landing-text .sub {
    font-size: 16px;
  }

  .landing-section form button {
    transform: translate(-31px, 10px);
  }
  .landing-section-illustration img {
    /* transform: translateY(-100px); */
    height: auto;
    width: 100vw;
  }
  .scroll-icon {
    display: none;
  }
  .interactions {
    height: auto;
    padding-bottom: 5vh;
  }
  .interactions-illustration img {
    height: auto;
    width: 100vw;
  }
  .interactions-text {
    width: 90%;
    margin: auto;
  }
  .interactions-text h2 {
    font-size: 36px;
  }
  .interactions-text .sub {
    font-size: 16px;
  }
  .interactions-text p {
    font-size: 18px;
  }

  .features {
    height: auto;
  }

  .features-whole-wrapper {
    margin-top: 15px;
  }

  .features h2 {
    font-size: 36px;
  }

  .features .text {
    font-size: 20px;
  }

  .features-text {
    width: 100%;
  }

  .features-boxes {
    width: 100vw;
    margin: 0px auto;
  }

  .features-cta {
    margin: 0px auto;
  }

  .growth {
    height: auto;
  }

  .growth .sub {
    font-size: 20px;
  }

  .growth-text {
    width: 100%;
    margin-left: 25px;
    margin-top: 25px;
  }
  .course-feats p {
    font-size: 16px;
  }
  .growth-text h2 {
    font-size: 34px;
  }
  .growth-illustration img {
    height: auto;
    width: 400px;
  }

  .workshops {
    height: auto;
  }

  .workshops .sub {
    padding-top: 2%;
    font-size: 16px;
    margin-left: 160px;
  }
  .workshops h2 {
    font-size: 30px;
    width: 100%;
  }

  .work-wrapper h2 {
    margin-left: 40px;
    margin-top: 20px;
  }
  .work-button {
    transform: translateX(40px);
    margin-right: 0px;
    width: 160px;
    height: 40px;
  }
  .work-button a {
    font-size: 16px;
  }
  .work-slider {
    width: 80%;
  }
  .highlights-illustration img {
    height: auto;
    width: 400px;
  }
  .highlights-text {
    width: 90%;
    margin: auto;
  }
  .highlights {
    height: auto;
    padding-bottom: 5vh;
  }

  .faq-section {
    height: auto;
  }
  .faq-item {
    width: 100%;
    transform: translate(-20px, -150px);
  }

  .faq-section h2 {
    font-size: 36px;
  }

  .faq-section .sub {
    padding-top: 50px;
  }

  .courses {
    padding-top: 3vh;
    height: auto;
    padding-bottom: 5vh;
  }

  .courses-wrapper {
    transform: translateX(-45px);
    width: 100%;
  }

  .course {
    margin-top: 2vh;
  }

  .course-btn {
    margin: auto;
  }

  .course h3 {
    margin-left: 30px;
  }

  .course-title-wrap {
    width: 130%;
    margin-left: 0px;
    transform: translateX(-120px);
  }
  .course-title-wrap h2 {
    font-size: 36px;
    width: 100%;
  }
  .course-cta {
    transform: translateX(200px);
  }

  .testimonials {
    height: auto;
  }
  .testimonials h2 {
    font-size: 36px;
  }
  .newsletter {
    padding-top: 30px;
    height: auto;
  }
  .newsletter-text {
    width: 100%;
    margin: auto;
  }
  .newsletter-text h2 {
    font-size: 40px;
  }
  .newsletter-text form input[type="email"],
  textarea {
    width: 300px;
  }

  .newsletter-illustration img {
    height: auto;
    width: 400px;
  }

  .details h2 {
    font-size: 36px;
  }
  .details {
    height: auto;
    padding-bottom: 5vh;
  }

  .details-card {
    margin-top: 20px;
  }

  .footer {
    height: auto;
    padding-top: 50px;
  }

  .policies {
    margin-top: 50px;
  }

  .navigation {
    transform: translateY(-50px);
  }

  /*.nav-links {
    position: absolute;
    right: 0;
    height: 152vh;
    top: 17vh;
    background-color: var(--primary);
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
  }
  .nav-cta {
    display: none;
  }
  .work-slider {
    width: 500px;
  }
  nav {
    width: 100%;
    min-height: 15vh;
  }
  body {
    position: absolute;
    overflow-x: hidden;
  }
  .landing-section {
    height: 190vh;
    padding-top: 20vh;
  }

  .interactions {
    height: 150vh;
  }

  .interactions-text {
    position: absolute;
    z-index: 10;
    top: 200vh;
  }

  .interactions img {
    margin-top: 500px;
  }

  .features {
    margin-top: 10vh;
  }

  .growth {
    margin-top: 85vh;
  }

  .workshops {
    margin-top: 80vh;
  }
  .logo {
    padding-top: 40px;
    transform: translateX(-40px);
  }
  .nav-cta {
    margin-left: 400px;
    transform: translateY(-60px);
  }
  nav ul {
    display: none;
  }
  .highlights {
    margin-top: 50vh;
  }
  .faq-section {
    margin-top: 80vh;
  }
  .testimonials {
    margin-top: 140vh;
  }
  .newsletter {
    margin-top: 10vh;
  }
  .details {
    margin-top: 50vh;
  }

  .details-card {
    margin-top: 20px;
  }
  .footer {
    margin-top: 55vh;
    height: 120vh;
  }
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-1 {
    display: none;
  }
  .course-wrap h2 {
    margin-left: 0px;
  }
  .courses-wrapper {
    margin-left: 150px;
  }
  .course {
    margin-top: 20px;
  } */
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-1,
  .circle-2 {
    display: none;
  }
}

@media all and (max-width: 425px) {
  .course {
    width: 100%;
  }
}

@media all and (max-width: 768px) and (min-width: 550px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-section {
    padding-top: 150px;
    height: auto;
  }
  .interactions {
    height: auto;
    padding-bottom: 10vh;
  }

  .features {
    height: auto;
  }
  .feats {
    margin-top: 10px;
  }
  .features-cta {
    margin-left: 270px;
  }
  .growth {
    height: auto;
  }
  .growth-text {
    margin-top: 30px;
  }
  .workshops {
    height: auto;
    padding-top: 50px;
  }
  .highlights {
    height: auto;
  }
  .highlights-text {
    transform: translateY(-60px);
  }
  .courses {
    height: auto;
    padding-bottom: 10vh;
  }
  .course {
    margin-left: 0px;
    margin-top: 20px;
  }
  .course-title-wrap {
    margin-left: 60px;
  }
  .course-title-wrap .sub-1 {
    margin-left: 0px;
  }
  .testimonials {
    height: auto;
    padding-bottom: 10vh;
  }
  .newsletter {
    padding-top: 30px;
    height: auto;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
  }
  .footer {
    height: auto;
  }
  /* .nav-links {
    display: none;
  } */
  .workshops .sub {
    margin-left: 115px;
  }
  .work-wrapper {
    margin-left: 15px;
  }
  .work-wrapper h2 {
    margin-left: 100px;
  }
  .work-button {
    margin-left: 100px;
  }
  .course-wrap h2 {
    margin-left: 0px;
  }
  .details-card {
    margin-top: 20px;
  }
  .footer h2 {
    padding-top: 20px;
  }
  .logo {
    transform: translateX(-30px);
  }
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-2,
  .circle-1 {
    display: none;
  }
}

@media all and (max-width: 1464px) and (min-width: 1281px) {
  .landing-section {
    padding-top: 150px;
    height: auto;
  }
  .interactions {
    height: auto;
    padding-bottom: 10vh;
  }
  /* .nav-links {
    display: none;
  } */
  .features {
    height: auto;
  }
  .growth {
    height: auto;
  }
  .workshops {
    height: auto;
  }
  .workshops .sub {
    transform: translateX(-55px);
  }
  .work-wrapper {
    transform: translateX(-60px);
  }
  .work-slider {
    width: 1100px;
  }
  .highlights {
    height: auto;
  }
  .courses {
    height: auto;
  }
  .testimonials {
    height: auto;
    padding-bottom: 10vh;
  }
  .newsletter {
    height: auto;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
  }
  .footer {
    height: auto;
  }
  .slider img {
    height: 400px;
    width: 500px;
  }
  .courses-wrapper {
    width: 100%;
    transform: translateX(-40px);
  }
  .course-title-wrap {
    margin-left: 100px;
  }
  .work-wrapper {
    margin-left: 70px;
  }
  .work-wrapper h2 {
    margin-left: 90px;
  }
  .workshops .sub {
    margin-left: 162px;
  }
  .courses .sub-1 {
    margin-left: 0px;
  }
  .work-button {
    margin-left: 100px;
  }
  .course-wrap h2 {
    margin-left: 0px;
  }
  .details-card {
    margin-top: 20px;
  }
  .footer h2 {
    padding-top: 100px;
  }
  .logo {
    transform: translateX(-30px);
  }
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-2,
  .circle-1 {
    display: none;
  }
}

@media (max-width: 1281px) and (min-width: 931px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-section {
    padding-top: 150px;
    height: auto;
  }
  .interactions {
    height: auto;
  }
  .features {
    height: auto;
  }
  .growth {
    height: auto;
  }
  .workshops {
    height: auto;
  }
  .workshops .sub {
    transform: translateX(52px);
  }
  .work-slider {
    width: 80vw;
    margin-left: 150px;
  }
  .slider p {
    transform: translateX(-40px);
  }
  .work-wrapper {
    margin-left: 50px;
  }
  .highlights {
    height: auto;
  }

  .courses {
    height: auto;
    padding-bottom: 10vh;
    margin-left: 0;
  }
  .course-title-wrap {
    margin-left: 90px;
  }
  .course {
    margin-top: 20px;
  }
  .testimonials {
    height: auto;
    padding-bottom: 10vh;
    padding-top: 60px;
  }
  .newsletter {
    height: auto;
  }
  .newsletter-text {
    margin-top: 100px;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
    padding-top: 100px;
  }
  .footer {
    height: auto;
  }
  .slider img {
    height: 400px;
    width: 500px;
  }
  .courses-wrapper {
    width: 100%;
    transform: translateX(-40px);
  }
  .work-wrapper h2 {
    margin-left: 90px;
  }
  .workshops .sub {
    margin-left: 90px;
  }
  .courses .sub-1 {
    margin-left: 0px;
  }
  .work-button {
    margin-left: 100px;
  }
  .course-wrap h2 {
    margin-left: 0px;
  }
  .details-card {
    margin-top: 20px;
  }
  .footer h2 {
    padding-top: 100px;
  }
  .logo {
    transform: translateX(-30px);
  }
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-2 {
    display: none;
  }
}

@media all and (max-width: 930px) and (min-width: 769px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-section {
    padding-top: 150px;
    height: auto;
  }
  .interactions {
    height: auto;
    padding-bottom: 10vh;
  }
  .features {
    height: auto;
  }
  /* .features-cta {
    transform: translateX(-50px);
  } */
  .growth {
    height: auto;
  }
  .workshops {
    height: auto;
  }
  .workshops .sub {
    transform: translateX(52px);
  }
  .work-slider {
    width: 80vw;
    margin-left: 150px;
  }
  .slider p {
    transform: translateX(-40px);
  }
  .work-wrapper {
    margin-left: 50px;
  }
  .highlights {
    height: auto;
  }

  .courses {
    height: auto;
    padding-bottom: 10vh;
  }
  .course {
    margin-left: 0px;
    margin-top: 20px;
    transform: translateX(40px);
  }
  .course-title-wrap {
    margin-left: 60px;
  }
  .course-title-wrap .sub-1 {
    margin-left: 0px;
  }
  .testimonials {
    height: auto;
    padding-bottom: 10vh;
    padding-top: 60px;
  }
  .newsletter {
    height: auto;
  }
  .newsletter-text {
    margin-top: 100px;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
    padding-top: 100px;
  }
  .footer {
    height: auto;
  }
  .slider img {
    height: 400px;
    width: 500px;
  }
  .courses-wrapper {
    width: 100%;
    transform: translateX(-40px);
  }
  .work-wrapper h2 {
    margin-left: 90px;
  }
  .workshops .sub {
    margin-left: 90px;
  }
  .courses .sub-1 {
    margin-left: 0px;
  }
  .work-button {
    margin-left: 100px;
  }
  .course-wrap h2 {
    margin-left: 0px;
  }
  .details-card {
    margin-top: 20px;
  }
  .footer h2 {
    padding-top: 100px;
  }
  .logo {
    transform: translateX(-30px);
  }
  .c-circle-1,
  .c-circle-2,
  .c-circle-3,
  .circle-3,
  .circle-4,
  .circle-2,
  .circle-1 {
    display: none;
  }
}

@media all and (max-width: 1550px) and (min-width: 1465px) {
  .features {
    height: auto;
  }
  .growth .growth-illustration img {
    width: 500px;
    height: 500px;
  }
  .workshops {
    height: auto;
  }
  .work-button {
    transform: translateX(220px);
  }
  .workshops .sub,
  .work-wrapper h2 {
    transform: translateX(-50px);
  }
  .workshops .slider img {
    height: 360px;
    width: 470px;
  }
  .workshops {
    position: relative;
  }

  .circle-3 img {
    position: absolute;
    top: 0;
  }
  .circle-4 img {
    position: absolute;
    top: 44vh;
  }
  .highlights {
    height: auto;
  }
  .courses {
    height: auto;
    padding-bottom: 10vh;
  }
  .course-title-wrap {
    transform: translateX(-80px);
  }
  .course-cta {
    transform: translateX(170px);
  }
  .newsletter {
    height: auto;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
  }
  .footer {
    height: auto;
    padding-bottom: 10vh;
  }
}

@media all and (max-width: 1650px) and (min-width: 1550px) {
  .features {
    height: auto;
  }
  .growth .growth-illustration img {
    width: 500px;
    height: 500px;
  }
  .workshops {
    height: auto;
  }
  .work-button {
    transform: translateX(220px);
  }
  .workshops .sub,
  .work-wrapper h2 {
    transform: translateX(-50px);
  }
  .workshops .slider img {
    height: 360px;
    width: 470px;
  }
  .slider p {
    transform: translateX(-50px);
  }
  .circle-3 img {
    top: 376vh;
  }
  .circle-4 img {
    top: 418vh;
  }
  .highlights {
    height: auto;
  }
  .courses {
    height: auto;
    padding-bottom: 10vh;
  }
  .course-title-wrap {
    width: 100%;
    margin: auto;
  }
  .newsletter {
    height: auto;
  }
  .details {
    height: auto;
    padding-bottom: 10vh;
  }
  .footer {
    height: auto;
  }
}
@media all and (max-width: 1900px) and (min-width: 1650px) {
  .features {
    height: 80vh;
  }
  .growth .growth-illustration img {
    width: 500px;
    height: 500px;
  }
  .workshops {
    height: 100vh;
  }
  .work-button {
    transform: translateX(220px);
  }
  .workshops .sub,
  .work-wrapper h2 {
    transform: translateX(-50px);
  }
  .circle-3 img {
    top: 340vh;
  }
  .circle-4 img {
   /* top: 395vh; */
   /*top: 417vh; *//*Ellipse-3.png position in opinions section */ 
   top: 440vh;
  }
  .highlights {
    height: 100vh;
  }
  .courses {
    height: 80vh;
  }
  .course-title-wrap {
    width: 100%;
    margin: auto;
  }
  .newsletter {
    height: 80vh;
  }
  .details {
    height: 50vh;
  }
  .footer {
    height: 50vh;
  }
}

@media all and (max-width: 715px) and (min-width: 551px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-section img {
    height: 500px;
    width: 500px;
  }

  .interactions-text {
    max-width: 90vw;
    margin: auto;
  }

  .features {
    height: auto;
  }

  .work-button {
    margin-right: 0px;
  }

  .growth {
    height: auto;
  }

  .growth-text {
    margin-left: 10vw;
  }

  .features-cta {
    transform: translateX(-100px);
  }

  .courses {
    height: auto;
  }

  .footer {
    height: auto;
  }
}
