*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
li
{
  list-style: none;
  text-decoration: none;

}
a{
  text-decoration: none;
  color: black;
}
a:hover{
  text-decoration: none;
}
.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0px 50px; */
  height: 50px;
  /* background-color:rgba(0, 0, 0, 0.198) ; */
  width: 100%;
  
  
}
.navbar{
  background-color: rgba(0, 0, 0, 0.48);
  position: absolute;
  z-index: 2;
  width: 100%;
}
.navbar-light .navbar-nav .nav-link {
  color: rgb(255 255 255);
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: rgb(255, 208, 0)!important;
  font-weight: 600;
}

.carousel{
  height: 100vh;
  display: grid;
  place-items: center;
  /* overflow: hidden; */
  
}

main {
  position: relative;
  width: 100%;
  /* height: 100%; */
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.item {
  width: 100px;
  height: 150px;
  list-style-type: none;
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1), &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) { left: 10%; }
  &:nth-child(4) { left: calc(10% + 110px); }
  &:nth-child(5) { left: calc(10% + 220px); }
  &:nth-child(6) { left: calc(10% + 330px); }
  &:nth-child(7) { left: calc(10% + 550px); opacity: 0; }
}

.content {
  width: min(30vw,400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica,sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  opacity: 0;
  display: none;

  & .title {
    font-family: 'arial-black';
    text-transform: uppercase;
  }

  & .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
  }

  & button {
    width: fit-content;
    background-color: rgba(0,0,0,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
}

.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255,255,255,0.5);
    color: rgba(0,0,0,0.7);
    border: 2px solid rgba(0,0,0,0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .content {
    & .title        { font-size: 1rem; }
    & .description  { font-size: 0.7rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 160px;
    height: 270px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 170px); }
    &:nth-child(5) { left: calc(50% + 340px); }
    &:nth-child(6) { left: calc(50% + 510px); }
    &:nth-child(7) { left: calc(50% + 680px); opacity: 0; }
  }
}

/* @media (width < 650px) {
  .content {
    & .title        { font-size: 0.9rem; }
    & .description  { font-size: 0.65rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 130px;
    height: 220px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 140px); }
    &:nth-child(5) { left: calc(50% + 280px); }
    &:nth-child(6) { left: calc(50% + 420px); }
    &:nth-child(7) { left: calc(50% + 560px); opacity: 0; }
  }
} */
@media (width < 650px) {
  .content {
    & .title        { font-size: 0.9rem; }
    & .description  { font-size: 0.65rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 65px;
    height: 110px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 70px); }
    &:nth-child(5) { display: none; }
    &:nth-child(6) { display: none; }
    &:nth-child(7) { display: none; }
  }
}

.about{
  background-color: rgba(128, 128, 128, 0.221);
  padding: 4rem 0rem;
}
.about-h{
  color: rgb(0, 0, 0);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
}
.services{
  background-color: rgba(128, 128, 128, 0.221);
  align-items: center;
  text-align: center;
  padding: 4rem 0rem;
}
.course{
  background-color: rgba(255, 255, 255, 0.221);
  align-items: center;
  text-align: center;
  padding: 4rem 0rem;
}
.controls span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ed2d3c;
  display: block;
  color: #ed2d3c;
  margin: 15px 0;
  font-size: 30px;
}
.slick-arrow{
  color: red;
}
main {
  position: relative;
  width: 100%;
  height: 100%;
  /* box-shadow: 0 3px 10px rgba(0,0,0,0.3); */
}
.heading-text{
  font-size: 3rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.card-box{
  width: 100%;
  background-color: white;
  height: 300px;
  padding: 20px 10px;
  align-items: center;
  margin-top: 1.5rem;
  box-shadow: 0 0 10px 4px rgba(31, 66, 135, .1);
  border-radius: 10px;
     
}
.card-box img{
  mix-blend-mode: multiply;
  padding: 10px;
  width: 85px;
}
.card-box h4{
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
}




.card-box:hover{
  background-image: linear-gradient(105deg, #fcf528, #ffcc00);
}


.hover-image:hover{
  background-image: linear-gradient(105deg, #fcf528, #ffcc00);
}




/* Testimonial */
.testimon{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  
}
.Service{
  text-align: center;
  background-color: #ffcc00;
  padding: 4rem 0rem;
}
.about{
  text-align: center;
  background-color: rgb(255, 0, 0);
  height: 500px;
  
}
.swiper {
  height: 400px;
}
.slider-wrapper{
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}
.user-image{
  width: 380px;
  margin-bottom: 20px;

}
.card-item{
  color: rgb(0, 0, 0);
  /* background-color: rgba(255, 255, 255, 0.2); */
  display: flex;
  width: 600px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 0px;
  border-radius: 8px;
  /* border: 1px solid rgba(255,255,255,0.5); */
}
.card-list .card-item .view-more{
  padding: 10px 35px;
  border:1px solid red;
  border-radius: 5px;
  color: red;
  background-color: rgba(0,0,0,0.1);
  cursor: pointer;
  transition: 0.5s ease;

}
.card-list .card-item .view-more:hover{
  color: white;
  background-color: red;
}
.card-list .card-item .card-title{
  font-size: 1.15rem;
  color: black;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  margin: 14px 0px;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
  color: white;
}
/* Testimonial */
/* Footer */
footer{
  background-color: rgb(48, 48, 48);
}
footer h4{
  color:#ffcc00;
  font-family: 'Times New Roman', Times, serif;
}
footer ul li a{
  color: white;
  font-weight: 400;
  font-size: 17px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
footer a:hover{
  color: rgb(255, 0, 0);
  font-weight: 500;
}
.footer-box {
  display: flex;
  justify-content: space-between;
}
.box1 img {
  width: 70px;
}




.newsletter {
  background-image: linear-gradient(to right, #ffcc00, #ffcc00);
  padding: 10px;
}
.send-img{
  color:white;
  font-size: 35px;
}
.sendbtn{
  color: white;
  background: red;
  border: none;
  text-decoration: underline;

}
.sendbtn:hover{
  background-color: rgb(60, 0, 255);

}
.email-btn{
  display: flex;
  flex-direction: row;
  row-gap: 10px;
  column-gap: 15px;
}


/* Footer */