:root {
      --bg-color:#041334;
      --second-bg-color: #fff  ;
      --text-color : #FF914D;
      --main-color : # ;
 }

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins' , sans-serif ;
    text-decoration: none !important; 

}
body {
    background-color: var(--bg-color);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    overflow-x: hidden;
}
/* scrollbar start */
html::-webkit-scrollbar {
    width: 0.9rem;
}
html::-webkit-scrollbar-track {
    background: var(--bg-color);
}
html::-webkit-scrollbar-thumb {
    background: var(--text-color);
    box-shadow: 0px 0px 40px 40px var(--text-color);
}

/* scrollbar end */
header {
    padding: 16px 0;
    box-shadow: 0px 4px 8px rgb(0, 0, 0, 0.3);
}
/* nav start */
.text-primary {
    color: var(--text-color) !important;
}
.nav-link.active {
    color: var(--text-color) !important;
}
.nav-link:link,
.nav-link:visited {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-right: 24px;
    transition: all 0.3s linear;
}
.nav-link:hover,
.nav-link:active {
    color: var(--text-color);
}
.primary-heading {
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
}
/* nav end  */

/* hero-section start */
.hero-section p {
    font-size: 18px;
    margin-bottom: 48px;
}
.hero-img {
    width: 80%;
}
.hero-input {
    padding: 8px 32px;
    background-color: transparent;
    border: 2px solid var(--text-color);
    margin-right: 16px;
    box-shadow: 0px 4px 8px rgb(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}
.hero-input:focus {
    box-shadow: 4px 8px 16px rgba(255, 145, 77, 0.514);
}
.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    font-weight: 500;
    font-size: 18px;
    padding: 8px 32px;
    transition: all 0.3s ease;
    border: none !important;
}
.btn-primary:hover {
    background-color: #ff914d8f;
    color: var(--bg-color);
}
.bg-overlay {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--text-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(100px);
}
/* hero-section end */
ul,
li {
    padding-left: 0;
}
p {
    line-height: 1.5;
    font-size: 18px;
}

/* service start */
#services {
  background-color: var(--second-bg-color);
}
.service-item {
    position: relative !important;
    margin-top: 195px;
}
.service-item .icon {
    width: 190px;
    height: 190px;
    display: inline-block;
    text-align: center;
    line-height: 190px;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -95px;
}

.service-item .icon img {
    max-width: 86px;
    transition: all .2s;
}
img {
    width: 100%;
    overflow: hidden;
}

.service-item .main-content {
    border-radius: 25px;
    padding: 80px 30px 50px 30px;
    background-color: #f1f0fe;
    margin-bottom: 30px;
    margin-right: 80px;
    transition: all .4s;
}

.service-item h4 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 30px;
    transition: all .4s;
  }
  
   .service-item p {
    color: #4a4a4a;
    margin-bottom: 25px;
  }

.main-button a {
    display: inline-block;
    background-color: #fff;
    color: var(--bg-color);
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0px 25px;
    border-radius: 20px;
    transition: all .3s;
}
.main-button a:hover {
    background-color: var(--bg-color);
    color: #fff;
}

/* service end */

/* about start */
.about-us {
    position: relative;
    padding: 0px;
    margin-top: 130px;
  }
  
  .about-us:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 84%;
    height: 100%;
    background-color: #f1f0fe;
    content: '';
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
  }
  
  .accordion {
    margin-top: -40px;
    margin-bottom: -40px;
    background-color: var(--text-color);
    border-radius: 40px;
    padding: 80px 50px 50px 50px;
  }
  
  .accordion-item {
    background-color: #fff;
    border-radius: 40px !important;
    margin-bottom: 30px;
    border: none;
  }
  
  .accordion-item .accordion-button {
    outline: none;
    box-shadow: none;
    border-radius: 40px !important;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: #fff;
  }
  
  h2.accordion-header button {
    padding: 15px 25px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
  }
  
  .accordion-button::after {
    font-size: 18px;
    font-weight: 500;
    background-image: none;
    content: '+';
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: #fff;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: none;
    line-height: 32px;
    content: '-';
  }
  
  .accordion-body {
    padding: 0px 25px 30px 25px;
    font-size: 14px;
    line-height: 28px;
    color: #4a4a4a;
  }
  
  .about-us .section-heading {
    margin-left: 60px;
    margin-bottom: 0px;
    color: var(--bg-color);
  }
  
  .about-us .section-heading .main-button {
    margin-top: 50px;
  }
  
  /* about end */

  /* Courses start*/
  #courses {
    background-color: var(--second-bg-color);
  }
.courses {
    margin-top: 160px;
  }
  
  .event_filter {
    text-align: center;
  }
  
  .event_filter {
    background-color: var(--bg-color);
    border-radius: 50px;
    padding: 15px 40px;
    list-style: none;
    margin: 0 auto 70px;
    max-width: max-content;
  }
  
  .event_filter li {
    display: inline-block;
    margin: 0px 20px;
  }
  
  .event_filter li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--second-bg-color);
    transition: all .3s;
  }
    
  .event_filter li a.is_active,
  .event_filter li a:hover {
    color: var(--text-color);
  }
  
  .events_item .thumb {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
  }
  
  .events_item .thumb img {
    margin-bottom: -5px;
  }
  
  .events_item .thumb span.category {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-color);
    background-color: rgba(250, 250, 250, 0.95);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
  }
  
  .events_item .thumb span.price {
    position: absolute;
    right: -30px;
    top: -50px;
    background-color: var(--text-color);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: inline-block;
    transition: all .3s;
  }
  
  .events_item .thumb span.price h6 {
    margin-top: 72px;
    margin-left: 22px;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
  }
  
  .events_item .thumb span.price em {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    vertical-align: top;
  }
  
  .events_item {
    background-color: #f1f0fe;
    border-radius: 25px;
    margin-bottom: 30px;
    position: relative;
    justify-content: center;
    align-items: center;
  } 
  
  .events_item .down-content {
    padding: 20px 30px 25px 30px;
  }
  
  .events_item .down-content span.author {
    color: var(--text-color);
    font-size: 15px;
    display: inline-block;
    margin-bottom: 6px;
  }
  
  .events_item .down-content h4 {
    font-size: 22px;
    font-weight: 600;
    transition: all .3s;
  }
  
  .events_item:hover .down-content h4 {
    color: var(--text-color);
  }
  
  .events_item:hover .thumb span.price {
    transform: scale(1.2);
  }
    /* Courses end*/
/* fun-facts start */
.fun-facts {
    position: relative;
    padding: 120px 0px 80px 0px;
    overflow: hidden;
  }
  
  .fun-facts:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 95%;
    height: 100%;
    background-color: var(--text-color);
    content: '';
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
  }
  
  .fun-facts:after {
    background: url(assets/contact-dec-01.png);
    position: absolute;
    left: 15%;
    opacity: 0.5;
    top: 0;
    width: 318px;
    height: 119px;
    content: '';
    z-index: 2;
  }
  
  .fun-facts .counter {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .fun-facts h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
  }
  
  .fun-facts h2::after {
    content: '+';
    margin-left: 5px;
  }
  
  .fun-facts p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
  }
/*  fun-facts end */

/* team start */
.team {
    margin-top: 100px;
      padding-top: 140px;
      background-color: var(--second-bg-color);
  }
  
  .team-member {
    position: relative;
  }
  
  .team-member:hover img {
    top: -120px;
  }
  
  .team-member img {
    max-width: 220px;
    border-radius: 50%;
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-110px);
    transition: all .3s;
  }
  
  .team-member .main-content {
    border-radius: 25px;
    padding: 140px 30px 40px 30px;
    background-color: #f1f0fe;
    text-align: center;
  }
  
  .team-member .main-content span.category {
    color: var(--text-color);
    font-size: 15px;
  }
  
  .team-member .main-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 15px;
  }
  
  .team-member .main-content ul li {
    display: inline-block;
    margin: 0px 2px;
  }
  
  .team-member .main-content ul li a {
    background-color: #fff;
    color: var(--text-color);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all .3s;
  }
  
  .team-member .main-content ul li a:hover {
    background-color: var(--text-color);
    color: #fff;
  }
/* team end */



/* 
---------------------------------------------
Events Style
--------------------------------------------- 
*/

.events .section-heading {
    margin-bottom: 100px;
  }
  
  .events .item {
    background-color: #f1f0fe;
    border-radius: 25px;
    position: relative;
    padding: 40px;
    margin-bottom: 96px;
  }
  
  .events .item .image {
    position: relative;
  }
  
  .events .item .image img {
    position: absolute;
    border-radius: 25px;
    max-width: 260px;
    left: 0;
    top: -70px;
  }
  
  .events .item ul li {
    display: inline-block;
    width: 17.5%;
    vertical-align: middle;
  }
  
  .events .item ul li:first-child {
    width: 35%;
  }
  
  .events .item ul li:nth-of-type(2) {
    width: 28%;
  }
  
  .events .item ul li span.category {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-color);
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .events .item ul li h4 {
    font-size: 22px;
    font-weight: 600;
  }
  
  .events .item ul li span {
    display: inline-block;
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 10px;
  }
  
  .events .item ul li h6 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
  }
  
  .events .item a {
    position: absolute;
    right: 0;
    top: 22px;
    background-color: var(--text-color);
    width: 60px;
    height: 120px;
    display: inline-block;
    text-align: center;
    line-height: 120px;
    font-size: 18px;
    z-index: 1;
    color: #fff;
    border-radius: 60px 0px 0px 60px;
  }
  
/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
  background-color: var(--second-bg-color);
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}


.contact-us  .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us  .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--text-color);
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px; 
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: var(--text-color);
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: var(--text-color);
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: var(--text-color);
  color: #fff;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: var(--text-color);
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.section-heading h6 ,
.section-heading h2 ,
.section-heading p {
  color: var(--bg-color);
}

/* .contact-us .contact-us-content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
} */

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: #fff;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: #fff;
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  color: var(--bg-color);
  transition: all .4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  margin-top: 100px;
  position: relative;
  background-color: var(--text-color);
  vertical-align: middle;
  /* min-height: 150px; */
  border-radius: 150px 150px 0px 0px;
}

footer p {
  text-align: center;
  line-height: 150px;
  color: #fff;
  font-weight: 400;
}

    
@media (max-width: 769px) {
    .primary-heading {
        font-size: 48px;
        line-height: 1.3;
        letter-spacing: -1px;
        margin-bottom: 24px;
        color: #fff;
        font-weight: bold;
        margin-bottom: 24px;
    }
    .container {
        padding-inline: 10px !important;
    }
    .hero-input {
        padding: 8px 32px;
        background-color: transparent;
        border: 2px solid #FF914D;
        margin-right: 16px;
        box-shadow: 0px 4px 8px rgb(255, 145, 77, 0.3);
        display: block;
        margin-inline-start: auto;
        width: 90%;
    }
}




@media (max-width : 992px) {
    .about-us {
        margin-top: 100px;
      }
      .accordion {
        padding: 40px 25px 10px 25px;
      }
      .services .service-item .icon {
        width: 170px;
        height: 170px;
        line-height: 170px;
      }
      .about-us .section-heading {
        margin-left: 0px;
        margin-top: 120px;
        color: #fff;
      }
      .about-us::before,
      .testimonials::before,
      .contact-us::before {
        display: none;
      }
      .about-us .section-heading p,
      .testimonials .section-heading p,
      .contact-us .section-heading p {
        margin-top: 30px;
      }
      .about-us .section-heading .main-button {
        margin-top: 30px;
      }
      .about-us .main-button a {
        background-color: var(--bg-color);
        color: #fff;
      }
      .events {
        margin-top: 80px;
      }
      .events .item {
        margin-bottom: 66px;
      }
      .events .item .image img {
        position: relative;
        max-width: 100%;
      }
      .events .item ul {
        margin-top: -40px;
      }
      .events .item ul li:first-child {
        width: 100% !important;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
      }
      .events .item ul li:nth-child(2) {
        width: 40% !important;
      }
      .events .item ul li {
        display: inline-block;
        width: 28% !important;
      }
      .events .item ul li:last-child {
        text-align: right;
      }
      .events .item a {
        bottom: 150px;
        top: auto;
      }
      .events .item ul li h6 {
        font-size: 14px;
      }
      .team {
        margin-top: 160px;
      }
      .team-member {
        margin-bottom: 140px;
      }
      .testimonials {
        margin-top: -50px;
        padding: 0px;
      }
      .testimonials .section-heading {
        margin-left: 0px;
        margin-top: 40px;
      }
      .testimonials .item {
        padding: 40px 40px 60px 40px;
      }
      .testimonials .item h4 {
        font-size: 17px;
      }
      .testimonials .item img {
        margin-right: 15px;
      }
      .testimonials .owl-nav {
        display: none;
      }
      .contact-us {
        padding-top: 20px;
      }
      .contact-us .section-heading {
        margin-right: 0px;
      }
      .contact-us .special-offer {
        background-color: #f1f0fe;
        margin-bottom: 60px;
        padding: 34px 30px 34px 100px;
        width: 100%;
      }
      .contact-us .special-offer h4 {
        font-size: 17px;
      }
      .contact-us .special-offer a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        top: 15px;
        right: 15px;
      }
      .contact-us .contact-us-content {
        padding: 30px;
      }
      footer {
        margin-top: 30px;
      }
}