
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
  }
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
      border: none;
      outline: none;
      scroll-behavior: smooth;
      font-family: 'Poppins', sans-serif;
  }
  
  
  *::selection {
      background: white;
      color: white;
  }
  
  
  
  html {
      font-size: 62.5%;
      overflow-x: hidden;
  }
  
  body {
    background: #8E0E00;
    background: -webkit-linear-gradient(to right, #1F1C18, #8E0E00);
    background: linear-gradient(to right, #1F1C18, #8E0E00); 
    width: 100%;
    color: white;
    overflow-x: hidden;
  }
  
  .header {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      display: flex;
      align-items: center;
      z-index: 100;
      transition: .5s;
  }
  

  .logo {
      font-size: 2.5rem;
      color: white;
      font-weight: 600;
      margin-right: auto;
  }

  .navbar {
    display: flex;  
    width: 100%;
    margin-top: 0;
    justify-content:space-around;
  }
  .navbar a {
      position: relative;
      font-size: 17px;
      color: white;
      font-weight: 500;
      padding: 10px;
      margin-right: 3.5rem;
  }
  
  .navbar a:hover {
      text-decoration: underline;
      color: yellow;
  }
  .navbar a:active {
     text-decoration: underline;
     color: yellow;
  }

  #menu-icon {
      font-size: 3.6rem;
      color: white;
      display: none;
  }
  
  section {
      min-height: 100vh;
      padding: 10rem 7% 2rem;
  }
  
  .home {
      display: flex;
      align-items: center;
  }
  
  .home .home-content {
      max-width: 44rem;
  }
  
  .home-content h3 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: .3;
  }
  
  .home-content h1 {
      font-size: 5.6rem;
      font-weight: 700;
      margin-bottom: .3rem;
  }
  
  .home-content p {
      font-size: 1.6rem;
  }
  
  .home-content .social-media a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 4rem;
      height: 4rem;
      background: transparent;
      border: .2rem solid white;
      border-radius: 50%;
      box-shadow: 0 .2rem .5rem white;
      font-size: 2rem;
      color: white;
      margin: 2.5rem 1.5rem 3rem 0;
      transition: .5s ease;
  }
  
  .home-content .social-media a:hover {
      background-color: yellow;
      color: black;
      text-decoration: none;
  }
  
  .btn {
      display: inline-block;
      padding: 1.2rem 2.8rem;
      background: yellow;
      border-radius: .6rem;
      box-shadow: 0 .2rem .5rem white;
      font-size: 1.6rem;
      color: black;
      letter-spacing: .1rem;
      font-weight: 600;
      border: .2rem solid transparent;
      transition: .5s ease;
  }
  
  .btn:hover {
      background: transparent;
      color: white;
      border-color: white;
  }
  
  .home .profession-container {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      pointer-events: none;
  }
  
  .home .profession-container .profession-box {
      position: absolute;
      top: 0;
      right: 0;
      width: 768px;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: professionRotate 13s ease-out infinite;
  }

  .home .profession-box .profession {
      position: absolute;
      left: 0;
      display: flex;
      align-items: center;
      flex-direction: column;
      color: white;
      transform: rotate(calc(360deg / 4 * var(--i)));
      transform-origin: 384px;
      background: rgb(0, 0, 0);
      padding: 13px 0;
  }
  
  .home .profession-box .profession:nth-child(1) i {
      margin-right: 15px;
  }
  
  .home .profession-container .overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      border-top: 50vh solid #240b3694;
      border-right: 384px solid #240b3694;
      border-bottom: 50vh solid #240b3694;
      border-left: 384px solid transparent;
  }
  
  .home-img img {
      position: absolute;
      bottom: 0;
      right: 40px;
      border-radius: 0%;
      pointer-events: none;
      max-width: 480px;
      max-height: 100vh;
  }
  
  span {
      color: yellow;
  }
  span a {
      color: yellow;
  }
  span a:hover {
      color: white;
  }
  .about {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4rem;
  }
  
  .about-img img {
      width: 20vw;
  }
  
  .heading {
      font-size: 4.5rem;
      text-align: center;
  }
  
  .about-content h2 {
      text-align: left;
      line-height: 1.2;
  }
  
  .about-content h3 {
      font-size: 2rem;
  }
  
  .about-content p {
      font-size: 1.6rem;
      margin: 2rem 0 3rem;
  }
  
  .courses {
      min-height: auto;
      padding-bottom: 10rem;
  }
  
  .courses h2 {
      margin-bottom: 5rem;
  }
  
  .courses .courses-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 2rem;
  }

  .courses-container .courses-box {
      flex: 1 1 30rem;
      background: #0000005b;
      padding: 3rem 2rem 4rem;
      border-radius: 2rem;
      box-shadow: 0 .1rem .5rem white;
      text-align: center;
      border-top: .6rem solid white;
      border-bottom: .6rem solid white;
      transition: .5s ease;
  }
  
  .courses-container .courses-box:hover {
      box-shadow: 0 .1rem 2rem white;
      transform: scale(1.02);
  }
  
  .courses-box i {
      font-size: 7rem;
      color: white;
  }
  
  .courses-box h3 {
      font-size: 2.6rem;
      transition: .5s ease;
  }
  
  .courses-box:hover h3 {
      color: white;
  }
  
  .courses-box p {
      font-size: 1.6rem;
      margin: 1rem 0 3rem;
  }
  

  
  .testimonial-container {
      display: flex;
      align-items: center;
      flex-direction: column;
      width: 100%;
      padding: 5rem 1rem;
  }
  
  .testimonial-container .testimonial-wrapper {
      position: relative;
      max-width: 90rem;
      width: 100%;
      padding: 5rem;
  }
  
  .testimonial-wrapper .testimonial-box {
      padding: 1rem;
      border-radius: 2rem;
      overflow: hidden;
  }
  
  .testimonial-content .testimonial-slide {
      display: flex;
      align-items: center;
      flex-direction: column;
      background: #0000005b;
      border-radius: 2rem;
      box-shadow: 0 .1rem .5rem white;
      padding: 3rem 5rem;
      border-top: .8rem solid white;
      border-bottom: .8rem solid white;
      height: max-content;
  }
  

  
  .testimonial-slide h3 {
      font-size: 2rem;
      margin: 2rem 0;
  }
  
  .testimonial-slide p {
      font-size: 1.4rem;
      width: 90%;
      display: flex;
      justify-content: space-between;
      text-align: justify;
  }
  span {
    margin-left: 10px;
  }
  .testimonial-box .swiper-button-next,
  .testimonial-box .swiper-button-prev {
      color: white;
  }
  
  .testimonial-box .swiper-button-next {
      right: 0;
  }
  
  .testimonial-box .swiper-button-prev {
      left: 0;
  }
  
  .testimonial-box .swiper-pagination-bullet {
      background: rgb(255, 255, 255);
  }
  
  .testimonial-box .swiper-pagination-bullet-active {
      background: white;
  }
  
  
  
  /* BREAKPOINTS */
  @media (max-width: 1200px) {
      html {
          font-size: 55%;
      }
  
      .home .profession-container .profession-box {
          right: -10%;
      }
  
      .home .profession-container .overlay {
          right: -6%;
      }
  
      .home-img img {
          right: 0;
      }
  }
  
  @media (max-width: 1100px) {
      .home .profession-container .profession-box {
          right: -15%;
      }
  
      .home-img img {
          max-width: 420px;
      }
  }
  
  @media (max-width: 1024px) {
      .header {
          padding: 2rem 3%;
      }
  
      section {
          padding: 10rem 3% 2rem;
      }
  
      .home .profession-container .profession-box {
          right: -20%;
      }
  
      .home .profession-container .overlay {
          right: -12%;
      }
  
      .home-img img {
          max-width: 400px;
      }
  }
  
  @media (max-width: 991px) {
  .home .overlay {
      display: none;
  }

      .home .home-content {
          max-width: 50rem;
      }
  
      .home .profession-container .profession-box {
          right: -35%;
      }
  
      .home .profession-container .overlay {
          right: -30%;
      }
  
      .home-img img {
          display: none;
      }
      .testimonial-content .testimonial-slide {
        height: max-content;
      }
 
  }
  
  @media (max-width: 896px) {
  
      .home .profession-container .profession-box {
          right: -50%;
      }
  
      .home .profession-container .overlay {
          right: -43%;
      }
  }
  
  @media (max-width: 879px) {
       -container {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 780px) {
      
  }
  
  @media (max-width: 768px) {
      #menu-icon {
          display: block;
      }
  
      .navbar {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          padding: 1rem 3%;
          background: #8E0E00;
          background: -webkit-linear-gradient(to right, #1F1C18, #8E0E00);
          background: linear-gradient(to right, #1F1C18, #8E0E00); 
        
          
          display: none;
      }
  
      .navbar.active {
          display: block;
      }
  
      .navbar a {
          display: block;
          text-align: center;
          font-size: 2rem;
          margin: 3rem 0;
          color: white;
      }
  
  
      .navbar a.active {
          color: white;
      }
  
      .navbar a::before {
          display: none;
      }
  
      .home {
          padding: 0 3% 23rem;
          justify-content: center;
          text-align: center;
      }
  
      .home-content h3 {
          font-size: 2.6rem;
      }
  
      .home-content h1 {
          font-size: 5rem;
      }
  
      .home-content .social-media a {
          margin: 2.5rem .75rem 3rem;
      }
  
      .home .profession-container {
          left: 0;
          width: 100%;
          height: 100%;
      }
  
      .home .profession-container .profession-box {
          position: fixed;
          top: 450px;
          left: 0;
          width: 100%;
      }
  
      .home .profession-box .profession {
          padding: 0 13px;
          left: auto;
          transform-origin: 0;
      }

      .home .profession-container .overlay {
          position: fixed;
          top: 70rem;
          left: 50%;
          right: 0;
          transform: rotate(90deg) translate(-50%, 50%) scaleY(3);
          border-width: 23.9rem;
      }
  
      .about {
          flex-direction: column-reverse;
          text-align: center;
      }
  
      .about-content h2 {
          text-align: center;
      }
  
      .about-img img {
          width: 70vw;
          margin-top: -2rem;
      }
  
      .testimonial-container .testimonial-wrapper {
          padding: 5rem 0;
      }
  
      .testimonial-content .testimonial-slide {
          padding: 3rem 2rem;
      }
  
      .testimonial-box .swiper-button-next,
      .testimonial-box .swiper-button-prev {
          display: none;
      }
  }
  
  @media (max-width: 580px) {
       -container {
          grid-template-columns: 1fr;
      }
  }
  
  @media (max-width: 450px) {
      html {
          font-size: 50%;
      }

      .home .profession-container .overlay {
          top: 80rem;
      }
  
     
  }
  
  @media (max-width: 365px) {
      .about-img img {
          width: 90vw;
      }
  }
  
  @media (max-width: 315px) {
      .home-content h1 {
          font-size: 4.5rem;
      }
  }
  img {
      border-radius: 20px;
  }




@mixin tablet-and-up {
  @media screen and (min-width: 769px) { @content; }
}
@mixin mobile-and-up {
  @media screen and (min-width: 601px) { @content; }
}
@mixin tablet-and-down  {
  @media screen and (max-width: 768px) { @content; }
}
@mixin mobile-only {
  @media screen and (max-width: 600px) { @content; }
}


.image-container {
  display: flex;
  gap: 10px;
  padding: 10px;
}

/* Styling for individual image and caption */
.image-wrapper {
  flex: 1;
  text-align: center;
}

/* Styling for images */
.image-wrapper img {
  width: auto;
  height: 50vh;
  object-fit: cover;
  border-radius: 5px;
}

/* Caption styling */
.image-wrapper figcaption {
  margin-top: 8px;
  font-size: 1rem;
  color: #555;
}

/* Responsive layout for smaller screens */
@media (max-width: 600px) {
  .image-container {
    flex-direction: column;
  }
}

ul, li{
list-style: none;
padding: 0;
}


.container1{
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #0000005b;
  border-radius: 40px;
  box-shadow: 0 .1rem .5rem white;
  border-top: .6rem solid white;
  border-bottom: .6rem solid white;
  transition: .5s ease;
  margin-top: 40px;    
}

.wrapper{
padding: 2rem;
border-radius: 1px;
width: 90%;
}
h1{
font-size: 24px;
font-family: sans-serif;
color: white;
}
.sessions{
  width: 100%;
margin-top: 2rem;
border-radius: 12px;
position: relative;
}
.sessions p {
  color: white;
}
.time h4{
  color: yellow;
}
.sessions h5 {
  font-size: 20px;
  color: white;
}
.p-cont {
  display: flex;
  flex-wrap: wrap;
 justify-content: space-between;
}



.sessions li{
padding-bottom: 1.5rem;
border-left: 2px solid #ffffff;
position: relative;
padding-left: 20px;
margin-left: 10px;
width: 100%;
&:last-child{
  border: 0px;
  padding-bottom: 0;
}
&:before{
  content: '';
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid #4e5ed3;
  box-shadow: 3px 3px 0px #0c0661;
  box-shadow: 3px 3px 0px yellow;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0px;
}
}

.time{
font-family: 'Poppins', sans-serif;
font-weight: 500;

@include mobile-and-up{
  font-size: .9rem;
}
@include mobile-only{
  margin-bottom: .3rem;
  font-size: 0.85rem;
}

}
p{
    font-family: sans-serif;
    line-height: 1.5;
    margin-top:0.4rem;
    

@include mobile-only{
  font-size: .9rem;
}
}

























/* footer */
#contact {
    width: 100%;
    background-color: #0000005b;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  
  .section-header {
    text-align: center;
    padding: 20px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 6px;
  }
  
  .contact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 10px;
    position: relative;
    max-width: 840px;
  }
  
  /* Left contact page */
  .form-horizontal {
    /*float: left;*/
    width: 400px;
    font-family: 'Lato';
    font-weight: 400;
  }
  .form-horizontal h3 {
    color: white;
    text-align: center;
  }
  .form-control, 
  textarea {
    max-width: 400px;
    background-color: transparent;
    color: #fff;
    letter-spacing: 1px;
  }
  

/* Button */
.send-button {
  width: 100%;
  margin-top: 20px;
  background-color: yellow;
  border-radius: 5px;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  height: 30px;
  text-align: center;
  border: 2px white;
}

.send-button:hover {
  background-color: #fff;
  color: #000000;
}
.send-button:active {
  background-color: #fff;
  color: #000000;
}
@media (min-width: 768px) {
  .send-button {
    font-size: 1.125rem;
    height: 30px;
  }
}
 
  
  /* Begin Right Contact Page */
  .direct-contact-container {
    max-width: 300px;
    margin-top: 22px;
  }
  
  /* Location, Phone, Email Section */
  .contact-list {
    list-style-type: none;
    margin-left: -30px;
    padding-right: 20px;
  }
  
  .list-item {
    line-height: 4;
    color: yellow;

  }
  
  .contact-text {
    font: 300 18px 'Lato', sans-serif;
    letter-spacing: 1.0px;
    color: #bbb;
  }
  
  .place {
    margin-left: 52px;
  }
  
  .phone {
    margin-left: 52px;
  }
  
  .gmail {
    margin-left: 52px;
  }
  
  .contact-text a {
    color: #bbb;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  
  .contact-text a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  
  /* Social Media Icons */
  .social-media-list {
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .social-media-list a {
    color: black;
  }
  
  .social-media-list a {
    position: relative; 
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 10px 3px;
    line-height: 60px;
    border-radius: 50%;
    color: #000000;
    background-color: yellow;
    cursor: pointer; 
    transition: all .2s ease-in-out;
  }
  
  .social-media-list a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    transition: all .2s ease-in-out;
  }
  
  .social-media-list a:hover {
    background-color:transparent;
    color: white;
  }
  
  .social-media-list a:hover:after {
    opacity: 1;  
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
  }
  
  
  .copyright {
    font: 200 14px 'Oswald', sans-serif;
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 1px;
    text-align: center;
  }
  
  hr {
    border-color: rgba(255,255,255,.6);
  }
  
  /* Begin Media Queries*/
  @media screen and (max-width: 850px) {
    .contact-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 90%;
    }
    .direct-contact-container, .form-horizontal {
      margin: 0 auto;
    }  
    
    .direct-contact-container {
      margin-top: 30px;
      max-width: 80%;
    }    
    .social-media-list a {
      height: 50px;
      width: 50px;
      line-height: 50px;
    }
    .social-media-list a:after {
      width: 50px;
      height: 50px;
      line-height: 50px;
    }
  }
  
  @media screen and (max-width: 569px) {
  
    .direct-contact-container, .form-wrapper {
      float: none;
      margin: 0 auto;
    }  
    .form-control, textarea {
      
      margin: 0 auto;
    }
    .form-horizontal {
      width: 100%;
    }
    
    .name, .email, textarea {
      width: 300px;
    } 
    
    .direct-contact-container {
      margin-top: 60px;
      width: 100%;
    }  
    .social-media-list {
      left: 0;
    }
    .social-media-list a {
      height: 45px;
      width: 45px;
      line-height: 45px;
      font-size: 2rem;
    }
    .social-media-list a:after {
      width: 45px;
      height: 45px;
      line-height: 45px;
    }

    .send-button {
      width: 99%;
    }
    
  }
  

 

  