*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #e6e7ee;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-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;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-light);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.navbar .navbar-nav .nav-link.active{
    color: var(--bs-light);
}

.navbar .navbar-nav .nav-link:hover
 {
  color: #6824e7;
  text-shadow:0px 0px 12px #6824e7;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
    .lap{
        background: var(--bs-primary);
    }
    .navbar-brand{
        margin: 0;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }


    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: 0px;
    }
}


.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-primary);
    border: 15px solid var(--bs-primary);
}

@media (max-width: 767px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 110px;
        margin-top: 0;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }           
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);   
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/* Our Partners  Start*/

/* partner text */
.partner-txt .text{
    position: relative;
}

.text.sec-text:before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    background: #e6e7ee;
    border-left: 2px solid #4070F4;
    animation: animate 4s steps(7) infinite;
}
@keyframes animate{
    40%, 60%{
        left:100%;
    }
    100%{
        left:0%;
    }
}
/* partners text end */
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins',sans-serif ;
}

.ptnr-txt{
    background: #343F4F;
    align-items: center;
    justify-content: center; 
}


.wrapper{
    display: inline-flex;   
}
.wrapper .static-txt{
    color: #fff;
    font-size: 60px;
    font-weight: 400;
}
.wrapper .dynamic-txts{
    margin-left: 15px;
    height: 65px;
    line-height: 90px;
    overflow: hidden;
}

.dynamic-txts li{
    color: #FC6D6D;
    list-style: none;
    font-size: 60px;
    font-weight: 400;
    position: relative;
    top: 0;
    animation:slide 9s steps(6) infinite;
    -webkit-animation:slide 9s steps(6) infinite;
}
@keyframes slide{
    100%{
        top:-600px;
    }
}
.dynamic-txts li span{
    position: relative;
}
.dynamic-txts li span::after{
    content: "";
    position: absolute;
    left:0;
    height: 100%;
    width: 100%;
    background: 	#343F4F;
    border-left:2px solid #FC6D6D;
    animation: typing 1.5s steps(6) infinite;
    -webkit-animation: typing 1.5s steps(6) infinite;
}

@keyframes typing{
    100%{
        left:100%;
        margin: 0 -35px 0 35px;
    }
}

/* Responsive on Partner Text */

@media screen and (max-width:696px) {
    .wrapper .static-txt{
        font-size: 30px;
    }
    .wrapper .dynamic-txts {
        margin-left: -15px;
        height: 40px;
        line-height: 40px;        
    }
    .dynamic-txts li{
        font-size:30px;
    }
    @keyframes slide{
        100%{
            top:-240px;
        }
    }
    
}

@media screen and (max-width:354px) {
    .wrapper .static-txt{
        font-size: 20px;
    }
    .wrapper .dynamic-txts {
        margin-left: -15px;
        height: 30px;
        line-height: 30px;        
    }
    .dynamic-txts li{
        font-size:20px;
    }
    @keyframes slide{
        100%{
            top:-180px;
        }
    }
    
}
/* responsive closed */

/* Images */

.pt-cr{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    /* background: #ddd; */
}

.partner_slider{
    width: 58%;
}
.slick-slide{
    padding: 40px 0;
    transition: all 0.4s ease-in-out;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.slick-slide img{
    border-radius: 8px;
    margin: 0 10px 0 10px;
    background: #fff;
    max-width: 100%;
    transition: all 0.5s ease in out;
    -webkit-transition: all 0.5s ease in out;
    -moz-transition: all 0.5s ease in out;
    -ms-transition: all 0.5s ease in out;
    -o-transition: all 0.5s ease in out;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.slick-center{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.slick-arrow::before{
    color: blueviolet;
    font-size: 30px;
    z-index: 20;
}
/* Our Partners Ends */

/* Accredation Starts */
object{
    display: block;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.acrred{
    background-color: #000000;
}
.accred-box {
    width: 1200px !important;
    padding: 0 !important;
    margin-right: auto;
    margin-left: auto;
  }
  @media screen and (min-width: 992px) and (max-width: 1439px) {
    .accred-box {
      max-width: 1279px !important;
      padding: 0 !important;
      margin: 0 80px !important;
      width: auto !important;
    }
  }
  @media screen and (max-width: 991px) {
    .accred-box {
      max-width: 959px !important;
      margin: 0 16px !important;
      padding: 0 !important;
      width: auto !important;
    }
  }
  
  .gradient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 30px;
  }
  
  @media screen and (max-width: 991px) {
    .gradient-cards {
      grid-template-columns: 1fr;
    }
  }
  
  .container-title {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 40px;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 60px;
  }
  
  .cardin {
    max-width: 550px;
    border: 0;
    width: 100%;
    margin-inline: auto;
  }
  
  .container-card {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(71deg, #080509, #302b35, #080509);
    background-clip: padding-box;
    border-radius: 45px;
    padding: 40px;
  }
  .container-card img {
    margin-bottom: 32px;
  }
  
  #bg-w-b,
  #bg-g-b,
  #bg-b-b,
  #bg-y-b{
    position: relative;
  }
  i
  #bg-w-b::after,
  #bg-g-b::after,
  #bg-y-b::after,
  #bg-b-b::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
  }
  
  #bg-g-b::after {
    background: linear-gradient(71deg, #0d1212, #2c8661, #0d1212);
  }
  
  #bg-w-b::after {
    background: linear-gradient(71deg, #121013, #c47010, #121013);
  }
  
  #bg-y-b::after {
    background: linear-gradient(71deg, #110e0e, #9e9314, #110e0e);
  }
  
  #bg-b-b::after {
    background: linear-gradient(71deg, #0c0a0e, #2648cf, #0c0a0e);
  }
  
  .card-title {
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    line-height: 40px;
    font-style: normal;
    font-size: 28px;
    padding-bottom: 8px;
  }
  
  .card-description {
    font-weight: 600;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    max-width: 470px;
  }
/* Accredation Ends */

.accredation{
    display: flex;
    justify-content: center;
}
.acc{
    margin-top: 10%;
}
.acc-content{
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}
.accredation a img{
    width: 100%;
    object-fit: cover;
    height: 200px !important;
}



/* Testimonials Start */
.owl-theme .owl-nav {
    margin-top: 2rem;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    width: 200px;
    margin: 1.875rem auto;
    border: 0.0625rem solid #D1D9E6;
    box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #fff;
    border-radius: 0.55rem;
}


.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{
    background: none;
    padding: 0 !important;
    font-size: 2rem;
}
.owl-theme .owl-nav [class*='owl-'] {
    display: inline-block;
    color: #000000;
    margin: 5px;
    cursor: pointer;
}
/* Testimonials End */

