:root {
    --primary: #ffec17;
    --secondary: #016e1c;
    --light: #F7F7F7;
    --dark: #016e1c;
    --black: #000000;
}
.col-md-2 a {
  color: black;
}
.col-md-3 a {
  color: black;
}
.col-md-4 p {
  color: black;
}
.back-to-top {
    background: #725d4a;
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.container-xxl .section-title {
  color: #016e1c !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}
/*** Button ***/
.btn, .btn-2, .btn-3, .btn4, .btn-5 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

*{
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;

}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;

}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: #ffec17;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: #ffec17;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-subtitle{
  font-size: 25px;
}
.about-text{
  text-align: justify;
}

@media(max-width:1200px){
.about-experience .display-1{
  font-size: 18px !important;
}
.about-experience .fs-5{
  font-size: 18px !important;
}
}

/*** Service ****/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}
.service-item:hover .service-text h5{
  font-size: 35px !important;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}




/* Navbar */
.nav {
  height: 4.5rem;
  width: 100%;
  position: fixed;
  justify-content:space-evenly;
  display: flex;
  transition: 1s ease-in-out;
  z-index: 10;
}

.afterScroll{
  transition: 2s ease;
  background: linear-gradient(-45deg, #016e1c, #ffec17);
}

.nav > .nav-header {
  display:flex;
  justify-content:center;
  align-items: center;
  margin-left : -4rem ;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  padding: 0 .75rem ;
  margin-top: -.2rem;
  margin-left: 2.5rem;
  transition: 0.3s  ease;
}

.nav > .nav-btn {
  display: none;
}
.nav .nav-links{

  margin-top: 2rem;
  }

  .nav > .nav-links .n-l {
      display: inline;
      float: right;
      font-size: 1rem;
      margin-top: -0.5rem;
    }
    .nav > .nav-links > .n-l > ul li a{
      display: block;
      padding: 0 8px;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
      border-radius: 5px;
}
    .nav > .nav-links> .n-l > ul{
      padding: 0;
      list-style: none;
      position: relative;

    }
    .nav > .nav-links> .n-l > ul li{
      display: inline-block;
      transition: 0.3s ease;

    }
    .nav-links .n-l ul li.active a {
      border: 0.125em solid #ffec17;
      background-color: #ffec17;
      border-radius: 5px;
      color: #000;
      box-shadow:
        inset 0 0 0.5em 0 #ffec17,
        0 0 0.5em 0 #ffec17;
  }
    .nav > .nav-links> .n-l> ul li:hover{
        background-color: #ffec17;
        border-radius: 5px;
    }
    .nav > .nav-links > .n-l > ul li a:hover{
      border: #ffec17 .125em solid;
      border-radius: 0.25em;
      box-shadow:
        inset 0 0 0.5em 0 #ffec17,
        0 0 0.5em 0 #ffec17;
        color: #000;
    }
    .nav > #nav-check {
      display: none;
    }

    .nav .nav-links ul a.icon{

      margin-right: 50px;
      color: black;
      }

      @media (max-width:1000px) {

          .nav{
            justify-content: space-between;
          }

          .nav > .nav-header > .nav-title {
            margin-top: 0rem;
            padding: 0 .25rem;
            margin-left: 0px;
          }
          .nav > .nav-header > .nav-title img{
            height: 20px;
            width: auto;
          }

          .nav > .nav-btn {
            display: inline-block;
            position: absolute;
            right: 20px;
            top: 0.5rem;
          }

      .nav > .nav-btn > label {
          display: inline-block;
          width: 50px;
          height: 50px;
          padding: 13px;
        }
        .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
          background-color: rgba(0, 0, 0, 0.3);
        }
        .nav > .nav-btn > label > span {
          display: block;
          width: 25px;
          height: 10px;
          border-top: 2px solid #eee;
        }
        .nav > .nav-links {
          position: absolute;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          width: 100%;
          background-color: #000000;
          opacity: 90%;
          height: 0px;
          transition: all 0.3s ease-in;
          overflow-y: hidden;
          top: 2.1rem;
          right: 0px;
        }
        .nav > .nav-links .n-l {
          margin-top: 1rem;
        }
        .nav > .nav-links > ul li a {
          display: flex;
          width: 100%;
        }

        .nav > .nav-header{
          margin-left: 0;
        }

          .nav > .nav-links >.n-l > ul li{
            display: block;
            margin-bottom: 20px;
            padding: 0;

          }
          .nav > .nav-links > ul li a{
              margin-left: 20%;
          }
          .nav .nav-links ul a.icon{
            margin-left:20%;
          }

          .mlinks{
            color: white;
          }

        /*   */
        .nav > #nav-check:not(:checked) ~ .nav-links {
          height: 0px;
        }
        .nav > #nav-check:checked ~ .nav-links {
          height: 70vh;
          overflow-y: auto;

        }

        .social-links{
          visibility: hidden;
        }
        .nav .nav-links .social-link {
          display: block !important;
      }
      }


      .nav .social-links {
          text-align: center;
          margin: 5px 0px;
          margin-top: 1rem;
      }
      .nav .social-btn {
        font-size: 20px;
        text-align: center;
        color: #fff;
        margin: 0px 5px;
        line-height: 40px;
        display: inline-block;
        width: 40px;
        height: 40px;
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
        border-radius: 0 10px 0 10px;
      }
      .social-links ul li:hover a{
        border-radius: 50%;
        background: linear-gradient(-45deg, #016e1c, #ffec17);
      }

  .home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgb(0, 255, 0);
  }
  .home .carousel-caption{
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: 150px;
    color: #fff;
    width: 70%;
    height: auto;
    border-radius: 25px;
    text-shadow: 0 1px #ffec17;
}
  .home .carousel-caption .hero-subtitle img{
    height: 150px;
    width: auto;
    justify-content: center;
    align-items: center;
  }
  .home .carousel-caption .hero-title {
    text-shadow: 1px 1px 1px #000;
    color: #fff;
font-size: 3rem;
font-weight: 700;
letter-spacing: 1px;
font-family:'Times New Roman', Times, serif;
}
.home .carousel-caption .hero-titles {
  text-shadow: #000;
  color: #ffec17;
font-size: 2rem;
font-weight: 700;
letter-spacing: 1px;
font-family:'Times New Roman', Times, serif;
}
.home .carousel-caption .section-text{
  color: #fff;
  text-shadow: #fff;
  font-size: 25px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

  .home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home .video-container{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
  }
  .home .video-container.active{
    clip-path: circle(150% at 0 50%);
    transition: 1s ease;
    transition-property: clip-path;
  }


@media only screen and (min-device-width: 360px) and (max-device-width: 740px) and (orientation: portrait),
only screen and (min-device-width: 740px) and (max-device-width: 360px) and (orientation: landscape) {
  .home .carousel-caption .hero-title{
    font-size: 1.5rem !important;
}
}


  @media(max-width:1200px){

    .home .carousel-caption .hero-title{
      font-size: 18px !important;

    }
    .home .carousel-caption{
      position: absolute;
      top: 25%;
    }
    .home .carousel-caption .hero-titles{
      font-size: 1rem;
    }
    .home .carousel-caption .hero-subtitle img{
      height: 100px;
  }
  .home .carousel-caption .section-text{
    font-size: 15px;
  }
  }

  .video-banner{
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

    .video-banner iframe{
      z-index: 000;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media(max-width:1400px){
      .video-banner{
        min-height: 40vh;
      }
      
    }

  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait),
only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) {
  
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait),
only screen and (min-device-width: 1024px) and (max-device-width: 768px) and (orientation: landscape) {
  
  .video-banner{
    min-height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 600px) and (orientation: portrait),
only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: landscape) {
  
  .video-banner{
    min-height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) and (orientation: portrait),
only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: landscape) {
  
  .video-banner{
    min-height: 60vh !important;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: portrait),
only screen and (min-device-width: 896px) and (max-device-width: 414px) and (orientation: landscape) {
  
}

    /* product part */
    .container-xxl .img-flu{
      width: 100%;
      height: 70vh;
    }
    .container-xxl .img-flui{
      position: absolute;
      right: 30px;
      width: auto;
      height: 30vh;
    }
    .container-xxl .head-tag{
      font-size: 26px;
    }

    .container-xxl .nutri-img{
      height: 60vh;
    }
    .container-xxl .text-img {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .container-xxl .col-sm-6 span {
    text-align: justify;
}
    .container-xxl .png{
      height: 8vh;
    }
  @media(max-width:1400px){
    .container-xxl .img-flu{
      height: auto;
    }
    .container-xxl .nutri-img{
      height: auto;
    }
    .container-xxl .img-flui{
      width: auto;
      height: 15vh;
    }
  }
  @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait),
only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 50vh !important;
  }
  .container-xxl .nutri-img{
    height: 50vh !important;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 600px) and (orientation: portrait),
only screen and (min-device-width: 600px) and (max-device-width: 1024px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 100vh !important;
  }
  .container-xxl .nutri-img{
    height: 100vh !important;
  }
}
@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) and (orientation: portrait),
only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: landscape) {
  .container-xxl .img-flu{
    height: 80vh !important;
  }
  .container-xxl .nutri-img{
    height: 70vh !important;
  }
}
  /* Contact us */
.contact-in {
  width: 80%;
  height: auto;
  margin: 100px 0px 50px 150px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #666;
}

.contact-in .contact-map {
  width: 100%;
  height: auto;
  flex: 50%;
}
.contact-in .contact-map iframe{
  width: 100%;
  height: 100%;

}

.contact-in .contact-form {
  width: 100%;
  height: auto;
  padding: 30px;
  flex: 50%;
  text-align: center;
}

.contact-in .contact-form h1 {
  font-size: 1.5rem;
  color: #016e1c;
}


.contact-in form .contact-form-text {
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  font-family:'Times New Roman', Times, serif;
}
.contact-in form .contact-form-text::placeholder{
  color: #aaa;
}
.contact-in form .contact-form-textarea {
  width: 100%;
  height: 130px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  font-family:'Times New Roman', Times, serif;
}
.contact-in form .contact-form-textarea::placeholder{
  color: #aaa;
}
.contact-in form .contact-form-btn{
  width: 30%;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #ffec17;
  color: #000;
  text-transform: uppercase;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

@media(max-width:1200px){
  .contact-in{
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .contact-in .contact-form h1{
    font-size: 1rem;
  }
  .contact-in .contact-map {
    height: 400px;
  }
  .contact-in form .contact-form-textarea {
    width: 100%;
  }
}

.banner {
  background-image: url(./gallery/hospital.jpg);
  background-size: cover;
  min-height: 400px; /* Set a minimum height */
  background-attachment: fixed; /* Ensure the background image remains fixed while scrolling */
  overflow-y: auto; /* Enable vertical scrolling */
}
@media(max-width:1400px){
  .banner{
    background-attachment: local;
  }
}

.container-fluid .banner-content{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  padding-top: 10px;
  border-radius: 20px;
}

/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
  border-color: transparent;
  box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}





/* gallery */

.gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.gallery .tall {
  grid-row: span 2;
}
.gallery-container .section-title{
  justify-content: center !important;
  text-align: center !important;
}


/*** Product ***/
.product-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  padding-top: 60px;
  transition: .5s;
}

.product-item:hover .product-overlay {
  opacity: 1;
  padding-top: 0;
}

/* FOOTER */

footer{
  width: 100%;
  /* background: linear-gradient(50deg,#000000,#a3070f); */
  background: linear-gradient(-45deg, #016e1c, #ffec17);
  color:#fff;
  padding: 50px 0 30px;
  border-top-left-radius: 125px;
  font-size: 13px;
  line-height: 20px;
}

.social-icons .fab{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color:#030303;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
}
.social-icons .fab:hover{
  background: linear-gradient(-45deg, #ed1c94, #ffec17);
}

hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
.copyright{
  text-align: center;
}

.shyno-add{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shyno-add h6{
  text-align: center;
}

.shyno-div{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shyno-div .footer-logo img{
  width: 6rem;
}
.shyno-div > p{
  text-align: center;
  font-size: .8rem;
  padding-top: .5rem;
}



@media (max-width:1000px){
  .footer-socialLinks{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .f-s-content span{
    font-size: .9rem;
  }
  .row{
    text-align: center;
  }
}
@media (max-width:1000px) {
  .footer-section .underline-container {
    margin-left: 125px;
  }
}
.underline-container {
  position: absolute;
  margin-top: -20px;
  width: 100px;
  height: 2px;
  border-radius: 5px;
  overflow: hidden;
}

.animated-underline {
  width: 20px;
  height: 2px;
  background-color: grey;
  border-radius: 3px;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}


.sidebar{
  position: fixed;
  left: 0;
  top: 25%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}
.social-bar{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 0px;
  border-radius: 50px;
}
.social-bar li{
  position: relative;
  list-style: none;
}
.social-bar li a{
  display: block;
  height: 100%;
  width: 100%;
  padding-left: 25px;
  transition: all 0.3s linear;
}
.social-bar li a i{
  position: absolute;
  top: 7px;
  left: 5px;
  font-size: 35px;
}
.social-bar li a span{
  display: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  color: #ffec17;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}
.social-bar li a:hover{
  z-index: 1;
  width: 100%;
}
.social-bar li:hover a span{
  padding: 5px 10px 5px 10px;
  margin-top: 25px;
  margin-right: 20px;
  border-radius: 20px;
  display: block;
}
@media(max-width: 1400px){
  .social-bar li a span{
    font-size: 10px;
  }
}



.faqs {
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.faq-item button {
  width: 100%;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item button:hover {
  transition: all 0.3s ease-in-out;
  color: hsl(110, 88%, 65%);
}

.faq-item .answer {
  padding-top: 1rem;
  color: hsl(240, 6%, 50%);
  font-size: 20px;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.faq-item .arrow {
  transition: transform 0.3s ease-in-out;
  align-self: center;
  object-fit: contain;
  width: 0.75rem;
  margin-left: 0.75rem;
  user-select: none;
  pointer-events: none;
}


.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid gray;
  margin-bottom: 10px;
}

.faq-item.active .answer {
  display: block !important;
  opacity: 1 !important;
}
.faq-item.active .answer ul{
  list-style: none;
}
.faq-item.active .answer li{
  font-size: 18px;
  padding-bottom: 10px;

}

.faq-item.active .question {
  color: black;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-item button {
  outline: none;
}

.faq-item .question {
  font-size: 13px;
  font-weight: bold;
}


.main-nav{
  position: absolute;
  top: 10%;
  width: 100%;
  z-index: 999;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.5));
}

.main-nav .container .row .main-title{
  font-family: Helvetica !important;
  text-align: left !important;
  font-size: 14px !important;
  color:#fff;
  font-weight: 600;
}
.main-nav .container .row .main-title p span a{
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.main-nav .container .row .main-text a span{
  font-family: Helvetica !important;
  font-size: 14px;
  color:#fff;
  font-weight: 600;
}
.main-nav .container .row .main-span{
  font-family: Helvetica !important;
  font-size: 14px;
  color:#fff;
  font-weight: 600;
}
.main-nav .container{
  justify-content: center;
  text-align: center;
  padding-top: 10px;
}
@media(max-width:1300px){
  .main-nav .container .row .main-title{
    font-size: 10px !important;
    text-align: center !important;
  }
  .main-nav .container .row .main-text a span{
    font-size: 10px;
  }
  .main-nav{
    top: 80%;
  }
  .main-nav .container .row .main-span{
    font-size: 10px;
  }
}
@media only screen and (max-width: 375px) and (max-height: 667px),
       only screen and (max-width: 667px) and (max-height: 375px) {
        .main-nav{
          top: 75%;
        }
}
/* @media only screen and (max-width: 1366px) and (max-height: 768px),
       only screen and (max-width: 667px) and (max-height: 375px) {
        .main-nav{
          top: 85%;
        }
} */

/* .btn-contianer{
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: absolute;
  top: 20%;

}
.btn-container .course-btn {
  background: #f39c12;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition-duration: 0.4s;
}

.btn-container .course-btn:hover {
  background: #fff;
  box-shadow: 0px 2px 20px 10px #97B1BF;
  color: #000;
} */
.btn-course{
  position: absolute;
  z-index: 999;
  top: 20%;
  right: 20px;
  font-size: 15px;
}
.btn-course button{
  background: #f39c12;
  color: #fff !important;
  padding: 0.5rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition-duration: 0.4s;
}
.btn-course button a{
  color: #fff;
}
/* .btn-course button a:hover{
  color: #000;
} */
.btn-course button:hover{
  background: #fff;
  box-shadow: 0px 2px 20px 10px #97B1BF;
  color: #000;
}
.btn-course button:hover a{
  color: #000;
}

@media(max-width:1200px){
  .btn-course{
    top: 10%;
    left: 5px;
    font-size: 10px;
    /* transform: translate(50%, -50%); */
  }
}


.std-container{
  position: relative;
  width: auto;
  height: 100%;
  padding-top: 30px;
}
.std-container img{
  border-radius: 20px;
}
.std-container .std-text{
  font-size: 16px;
}
@media(max-width:1400px){
  .std-container .std-text{
    text-align: justify;
  }
}
.std-container .std-btn{
  position: absolute;
  left: 45%;
  translate: transform(-50%, 50%);
  background: #f39c12;
  color: #fff !important;
  padding: 0.5rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition-duration: 0.4s; /* Add margin top to the button */
}
.std-container .std-btn a{
  color: #fff;
}

/* Alert */
.alert-box {
  position: relative;
  display: block; /* Hidden by default */
  width: 100%; /* Full width */
  height: auto; /* Full height */
  padding: 0 20px 0 20px;
}

.alert-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #ff0000;
  justify-content: center;
  text-align: center;
}
.alert-content h4{
  color: Red;
  font-weight: 600;
}
.alert-content p{
  font-size: 18px;
  color: #000;
  text-align: justify;

}
.close-btn {
  color: #aaa;
  float: right;
  font-size: 35px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#about-1 {
  margin-top: 50px;
}
