/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}
/* ===============================
   Google Fonts - Import via @import
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bentham&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro&display=swap');

/* ===============================
   Local / Licensed Fonts
   =============================== */


/* Gotham (requires local files) */
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Italic.ttf') format('truetype');
  font-style: italic;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Book.ttf') format('truetype');
  font-weight: normal;
}


.alex{
        font-family:'Gotham', sans-serif;
}
.family h2{
   font-size: 40px;
   color:#f15a24;
}



.navbar .navbar-nav .nav-link{
    font-family:'Gotham', 'Open Sans', sans-serif;
}

/* body {
  font-family: 'MyFont', sans-serif;
} */


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#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;
}

.btn-square {
width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  color: #252525;
  font-size: 12px;
  border: none;
}

.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;
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 0px !important;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color:#252525;
    font-weight:500;
    font-size: 16px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#d8420e;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .navbar-nav .nav-link{
    text-decoration:none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .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 Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    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: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px 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;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    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-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
 background-color: #252525;
 padding:70px 50px 30px;
}

.footer .btn.btn-link {
display: block;
  margin-bottom: 1px;
  padding: 0;
  text-align: left;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  transition: .3s;
  font-size: 15px;
}


.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    
}
/* style */
  
.fixed-top{
background-color: #fde6db;
}
    .hero-section {
    background-color: #fde6db;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 60px 5% 0px 0px;
    }

     .hero-section .ml-5{
        margin-left: 50px;
  margin-right: 30px;
    }
    .hero-text h5 {
        border-radius:5px;
 font-family:'Gotham', sans-serif;
  color: #b41d16;
  font-weight: 400;
  margin-bottom: 10px;
  background-color: #fff;
  display:inline;
  padding: 5px;
  font-size: 17px;
    }

    .hero-text h1 {
      font-family:'Gotham', sans-serif;
      color: #b41d16;
      font-weight: 700;
      font-size: 42px !important;
      line-height: 1.3;
      margin-top:15px;
    }

    .hero-text p {
         font-family:'Gotham', sans-serif;
      color: #3b3b3b;
      margin-top: 15px;
      font-size:18px;
    }
.hero-text p em{
color:#b41d16
}
#hdn{
    visibility: hidden;
}
.footer  h4{
    font-size:25px;
}
.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    padding: 30px 30px;
    width: 100%;
    max-width: 600px;
    margin-top: -90px;
}
.form-card .mb-3 {
    margin-bottom: 5px !important;
}
    .form-card label{
       font-size: 15px;
  color: #000;
  font-weight: normal;
    }

    .form-card h4 {
           font-family: 'Poppins', sans-serif;
      color: #b41d16;
      font-weight: 700;
      margin-bottom: 25px;
    }
.form-card label sup{
   color: #b41d16;
    font-size: 9px;
    margin-left: 3px;
}
    .form-control {
      background-color: #fde6db;
    border: none;
    border-radius: 6px;
    padding: 6px 9px;
    font-size: 15px;
    }

    .form-control:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(180, 29, 22, 0.4);
    }

    .btn-send {
           font-family: 'Poppins', sans-serif;
      background-color: #b41d16;
      color: #fff;
      font-weight: 600;
      border-radius: 30px;
      padding: 10px 30px;
      font-size:17px;
      border: none;
    }

    .badge-student {
           font-family: 'Poppins', sans-serif;
      color: #fff;
      border-radius: 50%;
      position: absolute;
      top: -50px;
      right: -50px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .clr-orn{
        color:#ef6135;
    }

    .hero-img img {
      max-width:700px;
    }
    .form-card img{
        margin:20px 0px;
    }
    .stat-item img{
        width:25%;
    }

    @media (max-width: 991px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
      }
      .hero-img img {
        max-width: 80%;
        margin-bottom: 20px;
      }
      .form-card {
        margin-top:0px;
      }
    }
.orng{
    background-color:#ef6135;
}
.orn-img{
 padding:15px;
    position: relative;
}
.orn-img img{
    width:100%;
  border-radius:12px;
  position: relative;
}
.orn-img .orn-txt{
    position: absolute;
    top: 0;
    right:0;
    background-color:#ef6135;
    padding:10px;
}
.orn-img h3{
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ef6135;
    padding: 10px;
    border-radius: 10px;
}
.orn-img .orn-txt h3 i{
    color:#fff;
    font-size:20px;
}

    .stats-section {
    background-color: #fde6db;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  margin: -50px auto 50px;
  max-width: 95%;
  z-index: 999;
  position: relative;
    }

    .stat-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
        content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100px;
    background-color: rgb(255 255 255);
    }

    .stat-icon {
      font-size:3.8rem;
      color: #000;
    }

    .stat-text {
      text-align: left;
    }

    .stat-number {
        font-family: "Work Sans";
     font-size: 5.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    }

    .stat-label {
        font-family: "Work Sans";
       font-size: 22px;
    color: #4b4b4b;
    font-weight: 500;
    line-height: 1.2;
    }

    @media (max-width: 767px) {
      .stat-item {
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 20px;
      }
      .stat-item:not(:last-child)::after {
        display: none;
      }
    }
    

    /* slider */
    .wrapper{
  padding: 70px 0;
  overflow-x: hidden;
}


.my-slider{
  padding: 0 70px;
}
    .card {
      background-color: #f15a24;
      border: none;
      border-radius: 20px;
      overflow: hidden;
      color: white;
      text-align: center;
      width: 300px;
      transition: transform 0.4s;
    }



    .card img {
        width: 100%;
    height: auto;
    object-fit: cover;
    }

    .location-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #e85b11;
      color: #fff;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
      color:#fff;
    }



  
.orng1{
    background-color: #f15a24;
    padding:50px 0px;
}
.orng1 h2{
    font-family:'Gotham', sans-serif;
    color:#fff;
    font-size:40px;
    margin-bottom: 20px;
}
.orng1 .open .img-open img{
width:75%;
}
.orng1 .open{
    text-align: center;
}
.orng1 .open h4{
    margin-top:10px;
    font-size:28px;
    font-weight:600;
      color:#fff;
}
.orng1 .open p{

        color: #fff;
    font-size: 18px;

}

/* certificate */
.certificate{
    text-align: center;
}
.certificate img{
    width:80%;
      margin-top:20px;
}
.certificate2{
    text-align: center;
}
.certificate2 img{
    width:80%;
    margin-top:20px;
}
.certificate3{
    text-align: center;
}
.certificate3 img{
    width:100%;
    margin-top:20px;
}
.certificate1 img{
    width:100%;
      margin-top:20px;
}

/* main-bg */
.bg-mn{
    background-image: url("../img/main-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding:300px 0px;
    margin:60px 0px;
}

.bg-mn h3{
    color:#f15a24;
    font-size:45px;
    font-family:'Gotham', sans-serif;
}
.bg-mn p{
    font-size: 25px;
    color:#000;

}
/* .strg-lst{
    margin:30px 0px;
} */
 .strn-txt h5 {
  color: #f15a24;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Gotham', sans-serif;
}
.strn-txt h2 {
  color: #f15a24;
  font-size: 55px;
  font-family:'Gotham', sans-serif;
  font-weight: 800;
}

     

.training{
    margin:30px 0px;
}
.train{
    background-color:#ffe6dc;
    padding:10px;
    border-radius: 12px;
}
.train img{
    border-radius:10px;
    width:100%;
}
.train h3{
      color: #f15a24;
      font-size:23px;
      padding:20px 0px 10px;
      font-weight: 700;
}
.train p{
    color:#000;
     font-size:18px;
     text-align: justify;
}
.gal{
      background-color: #f15a24;
    padding:25px 0px;  
}
.lst-li ul{
    margin-left:10px;
}
.lst-li ul li{
    list-style-type: none;
    font-size:22px;
    margin:10px 0px;
    color:#000;
}
.lst-li ul li img{
      width: 5%;
}
.lst-bfr{
    margin:30px 20px 30px 60px;
}
.lst-bfr h3{
    color: #f15a24;
    font-size: 55px;
    font-weight: 800;
    margin-left: 35px;
    font-family: 'Gotham', sans-serif;
}
.ftr{
    margin-top:-450px;
    margin-bottom: -50px;
    z-index: -1;
    position: relative;
}
.ftr img{
    width:100%;
}
.ftr-logo img{
    width:75%;
}

/* footer */

.cnt-ftr i{
    width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #252525;
  font-size: 17px;
  border: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  line-height: 31px;
  margin-right:0px;
}
.form-control::placeholder {
  color: #efcabd;
}
  .form-control:disabled, .form-control:read-only {
   
   
    color: #efcabd;
  }
  .form-control::placeholder {
  color: #efcabd;
}
  .form-control:disabled, .form-control:read-only {
   
   
    color:#797e88;
  }
.ftr-rt h4 {
  margin-bottom:15px;
  font-size: 20px;
  font-weight: 600;
}

.cnt-ftr {
  display: flex;
  align-items: center;
  gap: 10px;               /* space between icon and text */
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.cnt-ftr i {
  font-size: 20px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}

.cnt-text {
  text-align: left;
  line-height: 1.6;
  font-size: 15px;
}

.cnt-text a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.cnt-text a:hover {
  text-decoration: underline;
}



.form-card1 {
 background-color: #2d2d2d;
 border:1px solid #757575;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    }

    .form-card1 h4 {
           font-family: 'Poppins', sans-serif;
   color: #f15a24;
   font-size:35px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .form-control1 {
    background-color: #fff;
  border: none;
  border-radius: 6px;
  padding:6px 5px;
  font-size:17px;
  width: 100%;
    }

    .form-control1:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(180, 29, 22, 0.4);
    }
        .form-card1 .btn-send {
  font-family: 'Poppins', sans-serif;
  background-color: #f15a24;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
}
.form-card1 label{
    color:#fff;
    font-size:16px;
}
label{
    margin-bottom:2px;
}
.form-control1:disabled, .form-control1:read-only {
    background-color: #fff;
    opacity: 1;
    font-size: 15px;
    line-height: 16px;
}
.form-control:disabled, .form-control:read-only {
    background-color: #fde6db;
    opacity: 1;
    font-size: 15px;
    line-height: 16px;
}
.form-card1  sup{
    color:#b41d16;
}
.cpy{
    margin-top:-3rem;
    text-align: center;
}
.cpy p{
    color:#fff;
    font-size:14px;
}
.cpy p a{
        color:#fff;
}
.training h3{
    color: #f15a24;
  font-size: 50px;
  font-weight: 800;
  font-family:'Gotham', sans-serif;
}
.orng2{
    margin:50px 0px;
}
.orng2 h2{
       color: #f15a24;
  font-size: 50px;
  font-weight: 800; 
  font-family:'Gotham', sans-serif;
}
.haeder{
    background-color: #fde6db;
    padding:10px 0px;
}
/* why choose */
.shadow-effect {
background: #f15a24;
  padding: 10px 10px 50px;
  border-radius: 13px;
  text-align: center;
  border: 1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
		}
		#customers-testimonials .shadow-effect p {
  font-size: 23px;
  line-height: 1.5;
  margin: 0 0 0px 0;
  font-weight: 800;
  color: #fff;
		}
		.testimonial-name {
		   position: absolute;
           top:20px;
           right:20px;
           font-size:16px;
		    width: auto;
		    background: #f15a24;
		    padding: 4px 10px;
		    border-bottom-left-radius: 12px;
		    text-align: center;
		    color: #fff;
		}
		#customers-testimonials .item {
		    text-align: center;
		    padding: 10px;
				margin-bottom:25px;
		    opacity:1;
		    -webkit-transform: scale3d(0.8, 0.8, 1);
		    transform: scale3d(0.8, 0.8, 1);
		    -webkit-transition: all 0.3s ease-in-out;
		    -moz-transition: all 0.3s ease-in-out;
		    transition: all 0.3s ease-in-out;
		}
		#customers-testimonials .owl-item.active.center .item {
		    opacity: 1;
		    -webkit-transform: scale3d(1.0, 1.0, 1);
		    transform: scale3d(1.0, 1.0, 1);
		}
		.owl-carousel .owl-item img {
		    transform-style: preserve-3d;
		    max-width:330px;
    		margin: 0 auto 17px;
		}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
		    background: #3190E7;
		    transform: translate3d(0px, -50%, 0px) scale(0.7);
		}
#customers-testimonials.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
		    background: #3190E7;
		    display: inline-block;
		    height: 20px;
		    margin: 0 2px 5px;
		    transform: translate3d(0px, -50%, 0px) scale(0.3);
		    transform-origin: 50% 50% 0;
		    transition: all 250ms ease-out 0s;
		    width: 20px;
		}

        /* Sliders */
        .mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/* gallery */




.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-nav button {
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.owl-nav button:hover {
  color: #f79228; /* your accent color */
}
.owl-dots {
  display: none !important;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev{
        padding: 15px;
    font-size: 20px;
        background-color: #f15a24;
}
.owl-next{
    margin-right:-50px;

}
.owl-next i{
    font-size:30px;
    color:#fff;
}
.owl-prev{
    margin-left:-50px;

}
.owl-prev i{
    font-size:30px;
    color:#fff;
}

/* tema slick */
.slick-slide img{
 width: 97%;
  margin-left: 5px;
}

.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}


.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}


.slick-list:focus{
    outline: none;
}


.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}


.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}


.slick-track:after{
    clear: both;
}


.slick-loading .slick-track{
    visibility: hidden;
}


.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}


.slick-slide img{
    display: block;
}

.slick-slide.slick-loading img{
    display: none;
}


.slick-slide.dragging img{
    pointer-events: none;
}


.slick-initialized .slick-slide{
    display: block;
}


.slick-loading .slick-slide{
    visibility: hidden;
}


.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}


.slick-arrow.slick-hidden{
    display: none;
}



.btn-primary:active{
    color: #fff;
  background-color: rgb(241, 90, 36);
  border-color: rgb(241, 90, 36);
}
	

/* 
gallery-close */
.strg-lst h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  font-family:'Gotham', sans-serif !important;
}
.strg-lst p {
  font-size: 19px;
  color: #000;
  font-weight: 300;
  margin-left:40px;
}
.train h3{
font-size:20px;
font-family: 'Montserrat', sans-serif;
}
         .reg ul li a {
    font-size: 18px;
    background-color: #b41d16;
    border-radius: 50px;
    border: #b41d16;
    padding: 8px 15px;
    margin-left: 150px !important;
  }
    .reg ul li {
    list-style-type: none;
  }
  .fixed-top {
  background-color: #fde6db;
  padding-left: 170px !important;
  padding: 5px 10px 5px 140px !important;
}
.strn-txt h2{
    margin-bottom:30px;
}
.strong{
    margin-bottom:50px;
}
.hero-img img {
  max-width: 750px;
  margin-left: -15px;
}
.form-card{
    margin-left:200px;
  
}
.carousel-control-prev, .carousel-control-next{
    width:4% !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem !important;
    height: 3rem !important;
  background-color: #e75704 !important;
  padding: 10px !important;
}
.navbar {
  min-height: 30px;
  margin-bottom: 0px;
  margin-top: 19px;
}
.form-card h2{
    font-family: 'Gotham', sans-serif;
  color: #b41d16;
  font-weight: 700;
  font-size: 35px !important;
  line-height: 1.3;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(241, 90, 36);
  border-color: rgb(241, 90, 36);
}
.ftr-logo1{
    margin-left: 14%;
}
@media only screen and (min-width:1100px) and (max-width:1600px){
    .bg-mn h3{
    font-size:40px;
    }
    .ftr-logo1{
    margin-left: 6%;
}
    .hero-img img {
  max-width: 750px;
  margin-left: -15px;
}
.form-card{
    margin-left:100px;
    max-width:600px;
}
    .lst-bfr h3{
        margin-left:5px;
        font-size:45px;
    }
        .reg ul li{
            list-style-type: none;
        }
    .reg ul li a{
        font-size: 18px;
  background-color: #b41d16;
  border-radius: 50px;
  border: #b41d16;
  padding: 8px 15px;
  margin-left: 150px !important;
    }
    .hero-section .ml-5 {
  margin-left: 35px;
  margin-right: 20px;
}

.stat-number {
  font-size: 5.8rem;
}
.stat-label {
  font-size: 20px;
}
.orng1 .open p {
  color: #fff;
  font-size: 18px;
}
    .strn-txt h5 {
  color: #f15a24;
  font-size: 35px;
  font-weight: 800;
}
.strn-txt h2 {
  color: #f15a24;
  font-size: 45px;
  font-weight: 800;
}

.strg-lst h3 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
}
.strg-lst p {
  list-style-type: none;
  font-size: 19px;
  color: #000;
  font-weight: 300;
  margin-left:40px;
}
.train h3{
      color: #f15a24;
      font-size:19px;
      padding:20px 0px 10px;
      font-weight: 700;
}
.train p {
  color: #000;
  font-size: 18px;
  text-align: justify;
}
    .lst-li ul{
    padding-left:0px;
    margin-left:0px;
}
    .lst-li ul li{
        font-size:18px;
    }
    .ftr{
    margin-top: -350px;
    margin-bottom: -40px;
    z-index: -1;
    position: relative;
}
    .bg-mn{
    padding:250px 0px;
    margin:60px 0px;
}
.bg-mn p {
  font-size: 23px;
  color: #000;
}
.orng2 h2 {
  font-size: 40px;
}
.ftr-rt{
    margin-left:-20px;
    padding:0px !important;
}
}
.reg1{
    display:none;
}
   .training h3{
       margin-bottom:20px; 
    }
       /* --- Common Styles --- */
/*.logo-register {*/
/*  display: flex;*/
/*  align-items: center;*/

/*  gap: 15px;               */
/*}*/
.icon-list {
  position: fixed;
  bottom: 5%;
  right: 2%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  display: grid;
  margin-bottom: 5px;
}
.icon-list a {
  display: block;
  text-align: center;
  padding:8px;
  transition: all 0.5s ease;
  color: white;
  border-radius:50%;
  font-size: 20px;
  float: right;
  margin: 2px 0px;
}
.whatsapp {
  background-color: #da6616;
}
.whatsapp i{
    font-size:25px;
    }
.call {
  background-color: #da6616;
}
option{
    color:#000000;
}
select::placeholder{
    color:#797e88;
}
.form-control:disabled{
    color:#000000;
}
.reg1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reg1 li {
  display: inline-block;
}
  .reg1 ul li a {
    font-size: 18px;
    background-color: #b41d16;
    border-radius: 50px;
    border: #b41d16;
    border-top-color: rgb(180, 29, 22);
    border-right-color: rgb(180, 29, 22);
    border-bottom-color: rgb(180, 29, 22);
    border-left-color: rgb(180, 29, 22);
    padding: 8px 15px;
    border-radius:50px;
  }

.reg1 a.btn {
  padding: 8px 18px;
  font-size: 15px;
  border-radius: 50px;
}

/* --- Hide Register button on larger screens --- */
.reg1 {
  display: none;
}

/* --- Show Register button only on mobile (<=767px) --- */
@media (max-width: 767px) {
  .reg1 {
    display: block;
    margin-left: 30px;
  }

  .logo-register {
    flex-direction: row;  
 /* keep side-by-side on mobile */
  }
}

.logo-register img {
  max-width: 130px;           /* adjust logo size */
  height: auto;
}

@media only screen and (min-width:320px) and (max-width:600px){
    .orng1 {
  padding: 25px 0px;
}
    .logo-register img{
        margin-left:10px;
        max-width: 115px;
    }
    .training h3{
       margin-bottom:10px; 
    }
    .orng1 h2{
        margin-bottom:10px;
    }
    .lst-bfr {
  margin: 10px;
}
   
    .reg{
        display:none;
    }

#demo{
       overflow-x:hidden;
}
        .ftr-logo1{
    margin-left:4%;
}
    .form-card{
    margin-left:0px;
}
    .lst-li ul {
  margin-left: 0px;
}
    .haeder{
        padding:0px;
    }
    .family h2 {
  font-size: 30px;
    }
    .orng2 h2 {
  font-size: 35px;
    }
    .strn-txt h2{
      font-size: 30px;  
    }
    .cpy {
  margin-top: 3rem;
  text-align: center;
}
    .ftr-logo img {
  width: 40%;
}
    .hero-section{
        padding:10px 0% 0px 0px;
    }
    .fixed-top{
        display: none;;
    }
    .nav-bar {
  padding: 15px 0px !important;
  transition: .5s;
}
  .badge-student {
    right: 0;
    top: -77px;
    width: 50%;
  }
    .form-card h2{
        font-size:27px !important;
        text-align:left;
    }
   .form-card .badge-student img {
    width: 58%;
    position: absolute;
  }
    .form-card {
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 15px;
    width: 90%;
    max-width:100% !important;
  }
  .form-card label{
    display:block !important;
    text-align: left;
    line-height: 22px;
  }
  .form-control:disabled, .form-control:read-only {
  background-color: #fde6db !important;
  opacity: 1;
  font-size: 15px;
  line-height: 23px;
}
    .stat-label {
  font-size: 18px;
    }
    .stat-number {
  font-size: 2.8rem;
    }
    .stat-item img {
  width: 50%;
}
.stats-section{
    margin:20px auto 50px;
    padding:15px 20px;
}
.strn-txt h5{
    font-size:18px;
}
.strn-txt h2{
    font-size:35px;
    line-height:42px;
}
.strg-lst p{
    font-size:16px;
    margin-left:35px;
}
.strg-lst h3{
    font-size: 20px;
}
.train{
    margin-bottom:20px;
}
.training h3 {
  font-size: 30px;
}
 .train h3 {
    font-size: 20px;
  }
.train p{
    font-size:16px;
}
.lst-bfr h3{
    font-size:30px;
    margin-left:0px;
}
.lst-li ul li {
  list-style-type: none;
  font-size: 16px;
  margin: 5px 0px 2px;
  color: #000;
}
.ftr {
  background-image: url("../img/ftr-bg.png");
    background-position: right;
    padding: 150px 0px;
    margin-top: -120px;
    margin-bottom: -21px;
    z-index: -1;
    position: relative;
    background-size: cover;
}
.ftr img{
    display:none;
}
.footer {
  color: var(--bs-tertiary);
  background-color: #252525;
  padding: 40px 20px 30px;
}
.form-card1 h4 {
  font-size: 30px;
  margin-bottom: 10px;
}
.form-card1  .mb-3{
    margin-bottom:0px;
}
.form-card1{
    padding:20px;
}
ul{
    padding-left:0px;
    margin-bottom:-4px;
}
    .hero-section .ml-5 {
  margin-left: 10px;
  margin-right: 10px;
}

.hero-text h1{
    font-size:29px !important;
    margin-top: 10px;
}
.hero-text p{
    font-size:15px;
}
  .hero-img img {
    max-width: 100%;
    margin-bottom: 0px;
    margin-left: -33px;
  }
    .navbar{
        float:right;
        margin-top: 35px;
    }
    .navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: rgb(180, 29, 22);
  border: 1px solid rgba(0,0,0,0);
    border-top-color: rgba(0, 0, 0, 0);
    border-right-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0);
    border-left-color: rgba(0, 0, 0, 0);
  border-radius: 7px;
  transition: box-shadow .15s ease-in-out;
  float: right;
}
    .orng1{
        margin-bottom:30px;
    }
    .orng1 h2{
        font-size:30px;
    }
    .orng1 .open h4{
        font-size:20px;
    }
    .orng1 .open p {
  color: #fff;
  font-size: 12px;
}
.bg-mn h3 {
  color: #f15a24;
  font-size: 16px;
  margin-bottom: 0px;
}
    .bg-mn{
 padding: 64px 0px;
  margin: 30px 0px;
}
.bg-mn p {
  font-size: 9px;
  color: #000;
}
.certificate img{
    width:100%;
      margin-top:20px;
}
.certificate2 img{
    width:100%;
    margin-top:20px;
}
.certificate3 img{
    width:100%;
    margin-top:20px;
}
.certificate1 img{
    width:100%;
      margin-top:20px;
}
}