

body{
  -ms-overflow-style: scrollbar;
  scroll-snap-type: proximity;
  scroll-behavior: smooth;
  
}



.men-active {
  font-weight: 600;
  color: #4ec33a;
}
.career-header{
  background-image: url(../img/careerbg.jpg);
  background-attachment:fixed ;
  background-repeat: no-repeat;
  background-size: cover;
}
.abt-header{
  background-image: url(../img/abt-page.jpg);
  background-attachment:fixed ;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-header{
  background-image: url(../img/inner.jpg);
  background-attachment:fixed ;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animate CSS */
.animate__flipInY {
  --animate-duration: 1.5s;
}






/* Product Card */
.pcard{
	position:relative;
	width:280px;
	height:280px;
	perspective:1000px;
	transform-style:preserve-3d;
	cursor:pointer;
  margin: 0 auto;
}
.pcard .pbox{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	transform-style:preserve-3d;
	transition:1s;
}
.pcard .pfront,
.pcard .pback{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}
.pcard .pfront{
	/* background-image:url(https://1.bp.blogspot.com/-FQQE-TAAaNg/Xx82F7O9mUI/AAAAAAAAAME/VSGCG-1S8RcnUJnryWfvWeVrQwOLXK0tgCNcBGAsYHQ/s2048/image18.jpg); */
	/* background-color: #f0f0f0; */
	background-size:100% 100%;
}
.pfront{
	background-color:rgb(255, 255, 255);
	
}
.pback{
	/* background-color:rgb(212, 212, 212); */
	transform:rotateY(180deg);
	transform-style:preserve-3d;
}
.pcard .pback .pcontent{
  background: radial-gradient(circle at 10% 20%, rgb(90, 92, 106) 0%, rgb(32, 45, 58) 81.3%);
	/* background-image: linear-gradient(to right, #2DB200 0%, #006600 100%); */
	position:absolute;
	top:15%;
	left:0px;
	padding:10px;
	color:#fff;
	transform:translateZ(100px);
	width:100%;
}
.pcard:hover .pbox{
	transform:rotateY(180deg);
}
.p-contentfont{
  font-size:13px;
}

/* Card effect */
.card-main {
  padding-top: 30px;
}
.snip1576 {
  background-color: #fff;
  color: #444;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  margin: 8px;
  max-width: 315px;
  min-width: 230px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
  min-height: 150px;
}

.snip1576 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1576:after {
  /* background-color: #35d87e; */
  background-color: #ff8839;
  height: 150%;
  bottom: -145%;
  content: '';
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.snip1576 img {
  vertical-align: top;
  max-width: 100%;
  backface-visibility: hidden;
}

.snip1576 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1em;
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.snip1576 h3 {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.snip1576 h3 span {
  display: block;
  font-weight: 700;
}

.snip1576 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1576:hover > img,
.snip1576.hover > img {
  opacity: 0.1;
}

.snip1576:hover:after,
.snip1576.hover:after {
  bottom: 95%;
}

.snip1576:hover figcaption,
.snip1576.hover figcaption {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

/* Custom Button */
.button-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(25, 146, 35);
  border-radius: 25px;
  color: #18181a;
  display: inline-block;
  font-size: 15px;
  line-height: 10px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  /* background: #fff; */
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-cover span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.button-cover span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 30px;
}

.button-cover:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(25, 146, 35);
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.button-cover:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.button-cover:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}


/* Service Page Video */
.myVideo {
  /* position: fixed; */
  right: 0;
  bottom: 0;
  min-width: 100%;
  /* min-height: 100%; */
  min-height: auto;
  /* height: 600px; */
}

/* Add some content at the bottom of the video/page */
.intro-content {
  /* position: fixed; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;*/
  margin-top: -550px;
}

/* Style the button used to pause/play the video */
.myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.myBtn:hover {
  background: #ddd;
  color: black;
}


/* hover */
/* .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #ff7038;
  border-radius: 0 4px 0 32px;
} */

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}
.card2 {
  display: block;
  top: 0px;
  position: relative;
  /* max-width: 262px; */
  background-color: #f8fcfd;
  border-radius: 4px;
  /* padding: 10px 14px;
  margin: 12px; */
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
  min-height: 280px;

  &:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    top: -4px;
    border: 1px solid #cccccc;
    background-color: white;
  }

  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    /* background: #ff6122; */
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(2);
    transform-origin: 50% 50%;
    transition: transform 0.15s ease-out;
  }

  &:hover:before {
    transform: scale(2.15);
  }
}




/* Carousel */
.s-big-txt {
    font-size: 50px;
    font-weight: 600;
    color: #252525;
    line-height: 50px;
}
.s-slogan {
    font-size: 13px;
    color: #333;
}


@media screen and (max-width:991px){
    .nav-h{
        min-height: 55px;
    }
    .nav-pole{
        display: none;
    }
    /* .nav-btn-act{
        width: 100%;
        justify-content: right !important;
    } */
}
@media screen and (min-width:992px){
    /* .nav-btn-act{
        width: 100%;
        justify-content: right !important;
    } */
}


/* Scroll Arrow */
.mouse_scroll {
	display: block;
	margin: 0 auto;
	width: 24px;
	height: 100px;
	margin-top: 125px;
}


.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid rgb(44, 44, 44);
  border-bottom: 2px solid rgb(44, 44, 44);
  margin: 0 0 3px 4px;
  
  width: 16px;
  height: 16px;
}


.unu
{
  margin-top: 1px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
  
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .2s;
  animation-direction: alternate;
  
  margin-top: -6px;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .3s;
  animation-direction: alternate;
  
  
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}



/* nav */

nav {
    /* width: 80%; */
    margin: 0 auto;
    background: #fff;
    padding: 50px 0;
    box-shadow: 0px 5px 0px #dedede;
    font-family: 'Rubik', sans-serif;font-size: 14px;
  }
  nav ul {
    list-style: none;
    text-align: center;
  }
  nav ul li {
    display: inline-block;
  }
  nav ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 10px;
  }
  nav ul li a,
  nav ul li a:after,
  nav ul li a:before {
    transition: all .5s;
  }
  nav ul li a:hover {
    color: #202020;
  }
  
  
  /* stroke */
  nav.stroke ul li a,
  nav.fill ul li a {
    position: relative;
  }
  nav.stroke ul li a:after,
  nav.fill ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #aaa;
    height: 1px;
  }
  nav.stroke ul li a:hover:after {
    width: 100%;
  }
  
  nav.fill ul li a {
    transition: all 2s;
  }
  
  nav.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
  }
  nav.fill ul li a:hover {
    color: #fff;
    z-index: 1;
  }
  nav.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
  }
  
  
  /* Keyframes */
  @-webkit-keyframes fill {
    0% {
      width: 0%;
      height: 1px;
    }
    50% {
      width: 100%;
      height: 1px;
    }
    100% {
      width: 100%;
      height: 100%;
      background: #333;
    }
  }
  
  /* Keyframes */
  @-webkit-keyframes circle {
    0% {
      width: 1px;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      height: 1px;
      z-index: -1;
      background: #eee;
      border-radius: 100%;
    }
    100% {
      background: #aaa;
      height: 5000%;
      width: 5000%;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      border-radius: 0;
    }
  }


  /* Media Quary */
 
 @media screen and (max-width:575px){
  
  .s-align {
    text-align: center;
  }

  .button-cover {
    background-color: #199223;
    color: #FFF!important;
  }

 }
 @media screen and (min-width:576px){
    .button-cover {
      background-color: unset;
    }
 }


 
.testimonial-section {
  /* background: #033b5a; */
  color: white;
  padding: 100px 10%;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1b263b;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.testimonial-card {
  background: #1b263b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-quote {
  font-size: 100px;
  color: #3bc436;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 10px;
}

.testimonial-card .author {
  font-size: 15px;
  font-weight: bold;
  color: #3bc436;
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



/* Default styling */
  
  
  /* Detail styling */
  .details{
    --padding: 10px;
    border: 1px solid #8d8d8d;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .details + .details{
    margin-top: 20px;
  }
  
  .details__title{
    --width: 20px;
    --height: 3px;
    --radius: 1px;
    --color: currentColor;
    margin:0;
    padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;
    font-size: 17px;
  }
  
  .details__title:before,
  .details__title:after{
    content:'';
    display: block;
    width: var(--width);
    height: var(--height);
    background-color: var(--color);
    position: absolute;
    border-radius: var(--radius);
    top: calc(50% - (var(--height) / 2));
    right: calc(var(--width) / 2);
    transition: all .2s ease-in-out;
  }
  
  .details__title:after{
    rotate: 90deg;
  }
  
  .details__container[open] .details__title:before{
    rotate: 45deg;
    /* rotate: 135deg; */
  }
  
  .details__container[open] .details__title:after{
    rotate: 135deg;
    /* rotate: 225deg; */
  }
  
  .details__container[open] .details__title{
    background-color: #f3f3f3;
    color: #199223;
    font-weight: bold;
  }
  
  .details__summary::marker{
    content:'';
  }
  
  .details__desc{
    visibility: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: all .2s ease-in-out;
    overflow: hidden;
    padding-inline: var(--padding);
    pointer-events: none;
  }
  
  .details__container[open] + .details__desc{
    visibility: visible;
    grid-template-rows: 1fr;
    padding-block: var(--padding);
  }
  
  .details__desc-inner{
    min-height: 0;
    
  }

  .faq-section{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
  }



  .second-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 100px;
}

.second-part .about-us-section-images-flex{
    display: flex;
    align-items: center;
    position: relative;
    left: 0;
}


.aboutus-imgone{
  width: 350px;
}

.about-us-section{
  width: 60%;
}

/* .aboutus-imgone{
  width: 400px;
} */

.about-us-section-intro{
  color: black;
  background-color: #00fd159f;
    padding: 5px 8px;
    width: 25%;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Mulish';
    
}

.about-us-section-main{
    color: #126d19;
    font-weight: 700;
    font-size: 3em;
}

.second-part span{
    color: #50db4b;
}

.about-us-description{
    line-height: 1.9em;
    font-size: 17px;
    color: #8b8b8b;
    font-family: 'Mulish';
    width: 90%;
}




.first-part{
  background-color: #f2f7fa;
}

.hero-wrapper{
  background-image: url('../img/download.png');
  background-size: cover;
  background-color: #f2f7fa;


}

.hero-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

}

.benefit{
  color: black;
  background-color: #00fd159f;
  padding: 5px 8px;
  width: 55%;
  text-align: center;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Mulish';
}


.hero-content-first-part h1{
  font-weight: 700;
  font-size: 3em;
  color: #126d19;
  
}

.hero-content-first-part span{
  color: #50db4b;
}

.hero-content-description{
  line-height: 1.9em;
  font-size: 17px;
  font-family: 'Mulish';
}

.hero-content-contact-section{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 30px;
}

.hero-content-contact-section-flex{
  display: flex;
  align-items: center;
  gap: 5px;
}

.fa-phone-volume{
  font-size: 35px;
  transform: rotate(-50deg);
  color: #0373af;
}

.hero-content-contact-section-flex div .question{
  font-size: 16px;
  margin: 0;
  color: #0373af;
}

.hero-content-contact-section-flex div .contact-number{
  font-size: 25px;
  color: #033b5a;
}


.hero-content div img{
  margin-top: 70px;

}

.hero__img{
  width: 500px;
}

.total-student{
  position: absolute;
  background-color: #fff;
  width: 11%;
  text-align: center;
  padding: 15px 15px;
  border-radius: 20px;
  top: 300px;
  right: 550px;
}



.hero-content-first-part img{
  position: absolute;
}

.world-shape{
  width: 6%;
  left: 250px;
  top: 50px;
  transform: rotate(20deg);
}

.bshape-two{
  width: 3%;
  left: 400px;
  top: 145px;
  
}

.bshape-three, .bshape-four, .bshape-five, .dotnet-logo, .typescript-logo, .nodejs-logo, .jquery-logo, .css_logo{
  position: absolute;
  
}

.bshape-three{
  width: 4%;
  right: 600px;
  top: 110px;
  transform: rotate(-20deg);
}

.bshape-four{
  width: 7%;
  top: 420px;
  left: 550px;
  /* transform: rotate(30deg); */
  /* filter: blur(1px); */
}

.bshape-five{
  width: 6%;
  right: 50px;
  top: 250px;
  transform: rotate(-10deg);
}

.dotnet-logo{
  width: 10%;
  left: 280px;
  top: 500px;
  transform: rotate(10deg);
}

.typescript-logo{
  width: 4%;
  left: 10px;
  top: 200px;
  transform: rotate(-20deg);
}

.nodejs-logo{
  width: 5%;
  right: 30px;
  top: 450px;
  transform: rotate(10deg);
}

.jquery-logo{
  width: 5%;
  right: 50px;
  top: 80px;
  transform: rotate(-20deg);
}

.css_logo{
  width: 4%;
  left: 10px;
  top: 490px;
  transform: rotate(10deg);
}


.features {
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  justify-content: space-between;
  gap: 40px;
  max-width: 1250px;
  text-align: center;
}
.feature-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  height: 360px;
  /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
  flex: 1;
  transition: all ease-in-out .3s;
}

.feature-box:hover{
  transform: scale(1.1);
}
.feature-box img {
  
  height: auto;
  margin-bottom: 15px;
}
.feature-box h3 {
  font-size: 18px;
  color: #5c5c5c;
  margin-bottom: 10px;
  font-family: 'Roboto';
}
.feature-box p {
  font-size: 14px;
  color: #9c9a9a;
  font-family: 'Mulish';
}

.tutor-gif{
  width: 250px;
  margin-bottom: 20px;
}

.learning-gif{
  width: 300px;
}

.support-gif{
  width: 230px;
}

.features-section{
  margin-top: 100px;
}

.features-section h1{
  font-weight: bold;
  font-size: 2.2em;
  color: #126d19;
  text-align: center;
  font-family: 'Roboto';
}








.course-container {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid red; */
  margin: 0 auto;
}
.course-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 320px;
  /* position: relative; */
}
.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.course-content {
  padding: 15px;
}
.tag {
  position: absolute;
  margin: 10px;
  background: #e91e63;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
}
.green { background: #28a745; }
.course-info {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.rating {
  color: #f4c150;
  margin-bottom: 10px;
}
.author-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.price {
  color: #007bff;
  font-weight: bold;
}


.course-containers{
  display: flex;
  gap: 100px;
  max-width: 1100px;
  align-items: center;
  justify-content: flex-start;
  /* border: 1px solid red; */
  margin: 0 auto;
  margin-top: 50px;
}

.course-section{
  margin-top: 100px;
  background-color: #f2f7fa;

  padding: 50px 0;
}

.course-section h1{
  font-weight: bold;
  font-size: 2.2em;
  color: #000;
  text-align: center;
  font-family: 'Roboto';
}

.course-description{
  font-family: 'Mulish';
  text-align: center;
  width: 70%;
  margin: 0 auto;
  color: #000;
  margin-bottom: 30px;
}





/* Testimonials */

.slider {
  height: 420px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;

          background-color: #f2f7fa;
          width: 90%;
          border-radius: 10px;
          margin: 0 auto;
          margin-top: 20px;
          margin-bottom: 100px;
          /* background-image: url('../img/cta_bg.011ee0db.png'); */
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: .5rem 12px;
  margin-top: 40px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;

          flex-direction: row;
          gap:60px;
}

.slider__caption {
  font-weight: 500;
  /* margin: .5rem 0 1.5rem; */
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.slider__txt {
  color: #126d19;
  margin-bottom: 1rem;
  max-width: 300px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

.slider__caption{
  font-size: 1.2rem;
  /* margin-bottom: 1em;
  margin-top: -10px; */
  font-family: 'Roboto';
  color: #126d19;
  font-weight: 700;
}

.slider__txt{
  font-family: 'Mulish';
}


.slider-quotation{
  font-size: 100px;
  color: #126d19;
  position: absolute;
  top: -20px;
  margin-bottom: 20px;
  transform: translateX(-50%);
}



.slider__prev, .slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #126d19;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 23px;
  cursor: pointer;
  border-radius: 100px;
  z-index: 10;
  transition: background 0.3s ease;
}


.slider__prev:hover, .slider__next:hover {
  background-color: #50db4b;
  color: #0373af;
}

.slider__prev {
  left: 10px;
}

.slider__next {
  right: 10px;
}

.testimonial-header{
  font-weight: bold;
  font-size: 2.2em;
  color: #126d19;
  text-align: center;
  font-family: 'Roboto';
  margin-top: 100px;
}

.slider__image {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 7%;
}

.world__image {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 6%;
}



/* FAQ */

.faq-container {
  max-width: 90%;
  width: 100%;
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.faq-left {
  flex: 1;
}
.faq-left h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  font-family: 'Roboto';
  color: #033b5a;
}
.faq-left p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 20px;
  font-family: 'Mulish';
}
.contact-btn {
  display: inline-block;
  background-color: #1ff0188c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.faq-right {
  flex: 2;
}
.accordion {
  width: 100%;
}
.accordion-item {
  background: #f1faff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-header {
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e3f2fd;
}
.accordion-content {
  padding: 15px;
  display: none;
  font-size: 14px;
  color: #333;
  font-family: 'Mulish';
}
.active .accordion-content {
  display: block;
}






.contact-section{
  display: flex;
  padding: 30px 20px;
  background-image: url('../img/cta_bg.011ee0db.png');
  background-color: #e3f2fd;
  background-size: cover;
  background-position: 100%;
  position: relative;
  padding: 46px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  overflow: hidden;
  margin: 0 0 -85px;
  z-index: 2;

  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact-section svg:first-child{
  position: absolute;
  top: -30px;
}

.contact-section svg:last-child{
  position: absolute;
  right: -30px;
  top: 100px;
}

.contact-section h2{
  color: #126d19;
  width: 70%;
  font-family: 'Roboto';
  font-weight: bold;
}

.contact-section img{
  width: 250px;
  position: absolute;
  right: 50px;
  top: 0;
}


@media screen and (min-width: 300px) and (max-width: 600px) 
{
  .hero-content{
    flex-direction: column;
    padding: 20px;
  }

  .features{
    flex-direction: column;
  }

  .second-part{
    flex-direction: column;
  }

  .bshape-four, .bshape-three, .bshape-five, .world-shape{
    display: none;
  }

  .hero__img{
    width: 350px;
  }

  .hero-content-first-part{
    text-align: center;
    margin-top: 30px;
  }

  .hero-content{
    gap: 20px;
  }

  .hero-content-contact-section{
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .course-container{
    flex-direction: column;
  }

  .course-containers{
    flex-direction: column;
  }

  .about-us-section{
    width: 100%;
  }

  .aboutus-imgone{
    display: none;
  }

  .about-us-section-intro{
    width: 40%;
  }

  .first-part-testimonial{
    display: none;
  }

  .faq-container{
    flex-direction: column;
  }

  .siwes-img{
    display: none;
  }
  .contact-section div h2{
    width: 100%;
    margin-bottom: 20px;
  }
}