body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  min-height: 100%;
  background-image: url(../images/body-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  letter-spacing: 0.08rem;
  color: #000;
}

button:focus,
input[type="button"]:focus {
  outline: none;
}

img {
  max-width: 100%;
}

p {
  font-family: "Red Hat Display", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0;
  line-height: 1.3em;
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  text-decoration: none;
  transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
}

a:hover,
a:focus {
  text-decoration: none;
  color: unset;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/*place-holder-start*/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4a4a4a;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #4a4a4a;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #4a4a4a;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #4a4a4a;
}

:focus {
  outline: none;
}

/* @media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
} */

h1,
.h1 {
  font-size: 70px;
  line-height: 1.3em;
  font-weight: 400;
  font-family: 'bethany';
}

h2,
.h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 400;
  font-family: 'bethany';
}

h3,
.h3 {
  font-size: 40px !important;
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: 0;
  font-family: 'bethany';
}

.bethany-font {
  font-family: 'bethany';
}

.redhat-font {
  font-family: "Red Hat Display", sans-serif;
}

.gilda-font {
  font-family: "Gilda Display", serif;
}

.inter-font {
  font-family: "Inter", sans-serif;
}

/* .lightGreen-txt {
  color: #c1ff9d;
} */

.darkGreen-txt {
  color: #1ed4c5;
}

/* .dark-text {
  color: #2a2a2a;
} */

.lightGreen-bgColor {
  background-color: #ebfaf8 !important;
}

.darkGreen-bgColor {
  background-color: #1ed4c5 !important;
}

.btn-custom {
  padding: 15px 24px;
  /* border: none; */
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  color: #000000;
  background-color: transparent;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #000;
}

.btn-custom:hover {
  box-shadow: 0 8px 5px -5px rgba(0, 0, 0, .25);
  transform: translateY(-10px);
}

.btn-bg {
  background-color: #1ed4c5;
  border: 0;
}

/***end***/


.top-bar {
  padding: 10px 50px;
}

.top-bar p {
  font-size: 13px;
  font-weight: 600;
}

.top-bar ul {
  gap: 2rem;
}

.top-bar ul li img {
  width: 30px;
  height: 30px;
}

.header {
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* z-index: 1000; */
  /* padding: 20px; */
  /* box-sizing: border-box; */
  transition: all 0.3s ease;
  box-shadow: 0px 1px 6px rgb(0 0 0 / 12%);
  margin-bottom: 1rem;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 16px 45px;
  transition: all 0.5s ease;
  /*overflow: hidden;*/
  gap: 1rem;
}

/* Right-to-left animation overlay */
.header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateX(100%) scale(0.85);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
  z-index: -1;
  border-radius: 16px;
}

.header.scrolled .header-container::before {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.logo {
  transition: color 0.3s ease;
  z-index: 1;
}

.logo img {
  max-width: 200px;
}

.desktop-nav {
  display: flex;
  gap: 3rem;
  margin-left: auto;
  margin-right: 1rem;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
  z-index: 1;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Red Hat Display';
}

.desktop-nav a:hover {
  color: #1ed4c5;
}
.desktop-nav a.btn-custom{
  margin-left: 5rem;
}
.desktop-nav a.btn-custom:hover {
  color: #000;
}

.hamburger-container {
  display: none;
  /* align-items: center;
  gap: 15px;
  padding: 10px 5px;
  width: 12.8%; */
}

.cta-button {
  background-color: #000;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Hamburger menu */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  position: relative;
  top: -7px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 500;
}

.mobile-menu.open {
  right: 0;
}

.mobile-cta-button {
  background-color: white;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
}

/* Scrolled state styles */
.header.scrolled .logo {
  color: white;
}

.header.scrolled .desktop-nav a {
  color: white;
}

.header.scrolled .cta-button {
  background-color: white;
  color: black;
}

.header.scrolled .hamburger span {
  background-color: white;
}

#desktop_nav .hamburger {
  display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #desktop_nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .desktop-nav {
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
  }

  #desktop_nav.open {
    display: block;
    place-content: center;
  }

  .hamburger-container {
    display: block;
  }

  .hamburger {
    padding: 0;
    display: block;
  }

  #desktop_nav .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .cta-button {
    display: none;
  }

  .header-container {
    padding: 12px 0;
  }

  /* Hamburger animation when open */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}




/* Banner Video section */

.video-background {
  width: 100%;
  pointer-events: none;
}

/* Banner Content section */
.banner-content-section {
  padding-block: 50px 100px;
}

.banner-content-section h1,
.inner-banner-section h1 {
  letter-spacing: 0;
}

/* Featured Content section */
.featured-left {
  gap: 1.5rem;
}

.featured-section .featured-left p {
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  flex-shrink: 0;
}

.featured-section .separator {
  width: 100%;
  border-top: 3px solid #000000;
}

/* Visit Shop section */
.visitShop-section {
  padding: 120px 0;
  background-image: url(../images/visitShop-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 -70px;
}

.product-box {
  margin-bottom: 1rem;
}
.product-box.product-thumb .image a:hover,
.product-box.product-thumb .image:hover img {
    opacity: 1;
}

.prod-title,.prod-title a {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 25px;
  color: #000;
}

.buy-btn {
  border: 1px solid #000;
}


.training-section {
  padding: 50px 0 180px;
}

.training-bg1 {
  background-image: url(../images/training-bg1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}

.training-bg1 .training-imgbx {
  margin-top: 7rem;
}

.bsignature-title {
  font-size: 50px;
  font-weight: 400;
  font-family: 'Brittany Signature';
}

.training-bg2 {
  background-image: url(../images/training-bg2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}

.gotchuTxt {
  font-family: 'Brittany Signature';
  position: relative;
}

.training-section .training-img {
  max-width: 485px;
}

.training-bg2 h3 {
  margin-bottom: 1.5rem;
}

.training-bg2 ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.training-bg2 ul li {
  font-family: "Red Hat Display", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0;
  line-height: 1.3em;
  list-style: disc;
  margin-bottom: 5px;
}

.freebietxt {
  font-family: 'Brittany Signature';
  position: relative;
  top: -3rem;
  right: -6.5rem;
  rotate: 5deg;
  color: #fff;
  font-size: 50px;
  display: block;
  text-align: right;
}

/* Course section */
.course-section {
  padding: 140px 0;
  background-image: url(../images/course-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.course-section .bsignature-title {
  font-size: 60px;
}

.course-imgbx img {
  max-width: 415px;
  display: block;
  margin-inline: auto;
}

/* Video section */
.visionVdo-section {
  padding: 140px 0;
  background-image: url(../images/vdo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-subtitle {
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Red Hat Display';
  font-size: 12px;
  font-weight: 800;
  color: #1ed4c5;
}

.visionVdo-section h2 {
  letter-spacing: 0;
  margin-top: 20px;
}

.video {
  overflow: hidden;
  position: relative;
  /* (videoHeight / videoWidth) * 100 => (720 / 1280) * 100 */
  padding-bottom: 56.25%;
  margin-block: 50px;
}

.video .video__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* Why Choose section */
.whychoose-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.whychoose-shape1 {
  position: absolute;
  top: -140px;
  left: 0;
  z-index: -1;
  width: 23%;
}

.whychoose-shape2 {
  position: absolute;
  bottom: -85px;
  right: 0;
  width: 23%;
  z-index: -1;
}

.whychoose-section h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3em;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}

.loveitTxt {
  font-family: 'Brittany Signature';
  position: absolute;
  top: -4.5rem;
  right: -6.5rem;
  rotate: 5deg;
  color: #1ed4c5;
  font-size: 50px;
}

.whychoose-box {}

.whychoose-icon {
  width: 50px;
}

.whychoose-box h4 {
  font-size: 15px;
  font-weight: 800;
  color: #67b3acff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Red Hat Display';
  margin-block: 20px;
}

/* gallery section */
.gallery-section {
  padding: 140px 0;
  background-image: url(../images/glry-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.gallery-section h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3em;
  text-transform: none;
  letter-spacing: 0;
}

.gallery-wrapper {
  gap: 1rem;
  margin-top: 5rem;
}

.gallery-wrapper img {
  width: calc(20% - 1rem);
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out;
}

.gallery-wrapper img:hover {
  filter: grayscale(100%);
}

/* Green Bg section */
.greenbg-section {
  padding: 60px 0 120px;
  background: url(../images/green-shape-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.greenbg-section h2 {
  line-height: 1.3em;
  letter-spacing: 0;
  position: relative;
}

.thanktxt {
  font-family: 'Brittany Signature';
  position: relative;
  top: -1.5rem;
  right: -7.5rem;
  rotate: 2deg;
  font-size: 50px;
  display: block;
  text-align: right;
  color: #fff;
}

.greenbg-section p {
  margin: 20px 0 0;
}

.greenbg-section p:last-child {
  margin-top: 0;
}

/* bestprod section */
.bestprod-section {
  padding: 120px 0;
}

/* Discover section */
.discover-section {
  padding: 160px 0;
  background-image: url(../images/discover-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.discover-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 8%);
  z-index: 1;
}

.discover-content-wrapper {
  position: relative;
  z-index: 1;
}

.discover-content-wrapper h2 {
  font-size: 60px;
  line-height: 1.3em;
  letter-spacing: 0;
}

.discover-content-wrapper p {
  margin-block: 20px 30px;
}

.discover-section .btn-custom {
  border: 1px solid #fff;
}

/* Everlasting Footer Styles */
.el-footer {
  background: #000;
  color: #fff;
  font-family: 'Red Hat Display';
  padding: 60px 0 10px;
}

.el-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 35px;
}

.el-footer-left {
  flex: 1 1 340px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.el-footer-logo {
  width: 250px;
}

.el-footer-contact {
  width: 100%;
}

.el-footer-label {
  margin-top: 25px;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.el-footer-text {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.el-footer-socials {
  margin-top: 20px;
  display: flex;
  gap: .5rem;
}

.el-footer-socials a {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  vertical-align: middle;
}

.el-footer-socials img {
  width: 28px;
  height: 28px;
}

.el-footer-right {
  flex: 2 1 700px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #fff;
  padding: 40px;
}

.el-footer-links {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}

.el-footer-col {
  min-width: 143px;
  display: flex;
  flex-direction: column;
}

.el-footer-col:last-child {
  flex-shrink: 0;
  min-width: 265px;
}

.el-footer-link-title {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.el-footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-family: 'Red Hat Display';
  line-height: 1.3em;
  text-transform: none;
  letter-spacing: 0;
}

.el-footer-col a:hover {
  color: #c1ff9d;
}

.el-footer-accreditations {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.el-footer-accreditations-title {
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  margin-right: 18px;
  color: #fff;
  border-radius: 3px;
}

.el-footer-accr-img {
  height: 60px;
}

.el-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 15px;
  flex-wrap: wrap;
}

.el-footer-bottom-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.el-footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  font-weight: 500;
  letter-spacing: 0;
  font-family: 'Red Hat Display';
}

.el-footer-bottom-links a:hover {
  color: #c1ff9d;
}

.el-footer-copyright {
  font-size: 13px;
  transition: color 0.2s;
  font-weight: 500;
  letter-spacing: 0;
  font-family: 'Red Hat Display';
}







/* Shop Page 
============== */
.inner-banner-section{
  padding: 150px 0;
  background-image: url(../images/inner-banner-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-color: #ebfaf8;
}
.inner-banner-section .section-subtitle{
  color: #000;
}
.inner-banner-section h1{
  font-size: 80px;
}


/* Academy Page
===================== */
.training-btn-grp{
  gap: 1rem;
  margin-top: 2rem;
}
.training-btn-grp .btn-custom{
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  width: 43%;
}
.onlineCourse-section{
  padding: 150px 0;
}
.onlineCourse-section h2{
  font-size: 60px;
}
.courseInfo-box{
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 300px 300px 0 0;
  border: 5px solid #1ed4c5;
  margin-inline: 5px;
}
.courseInfo-img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out;
}
.course-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  box-sizing: border-box;
  font-family: 'bethany', sans-serif;
  text-align: center;
  border-radius: 300px 300px 0 0;
}
.course-overlay h5 {
    font-size: 30px;
}
.course-overlay p{
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.4;
  opacity: 0.9;
}
.course-overlay .btn-link {
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.4;
    opacity: 0.9;
    font-family: "Red Hat Display", sans-serif;
    color: #fff !important;
    text-decoration: underline;
}
.courseInfo-box:hover .course-overlay {
    opacity: 1;
}
.courseInfo-box:hover .courseInfo-img {
    filter: grayscale(100%) brightness(60%) contrast(120%);
}
.handsOn-training .courseInfo-box{
  min-height: 385px;
}

/* About Page
=============== */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  background: #1ed4c5;
  width: 4px;
  height: 104%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  margin-bottom: 70px;
}
.timeline-item:nth-child(odd) .timeline-content{
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
  float: right;
}
.timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}
.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}

.timeline-content {
  position: relative;
  width: 43%;
}
.timeline-content h2{
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.3em;
}

.timeline-img {
  width: 40px;
  height: 40px;
  background: #1ed4c5;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 0;
  margin-left: -20px;
}

.timeline-card {
  padding: 0 !important;
}
.timeline-card p {
  padding: 0 20px;
}
.timeline-card a {
  margin-left: 20px;
}

.timeline-item .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://picsum.photos/1000/800/?random") center center no-repeat;
  background-size: cover;
}

.timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.timeline-img-header h2 {
  color: #FFFFFF;
  position: absolute;
  bottom: 5px;
  left: 20px;
}

blockquote {
  margin-top: 30px;
  color: #757575;
  border-left-color: #3F51B5;
  padding: 0 20px;
}

.date {
  background: #FF4081;
  display: inline-block;
  color: #FFFFFF;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }
  .timeline .timeline-img {
    left: 20px;
    width: 30px;
    height: 30px;
  }
  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 55px;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .timeline-item .timeline-content h2,
  .timeline-item .timeline-content p{
    text-align: left;
  }
  .timeline-content h2{
    font-size: 30px;
  }

}

.mission-section{
  padding: 100px 0;
  background-image: url(../images/inner-banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.video.video-about {
    border: 3px solid #1ed4c5;
    padding-bottom: 57.25%;
    margin: 0 0 50px;
}
.video.video-about video {
    padding: 10px;
}

.instructor-section{
  padding: 100px 0;
  background-image: url(../images/instructor-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.instructor-box .accordion{
  border-bottom: 1px solid #000;
}
.instructor-box .accordion .card,
.instructor-box .accordion .card-header{
  background-color: transparent;
  border: 0;
  padding: 5px 0;
}
.instructor-box .instructor-name {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-block: 30px 15px;
}
.instructor-box .accordion .card-header a{
  font-weight: 500;
  line-height: 1.5;
  font-size: 17px;
  color: #000;
  font-family: 'Red Hat Display';
  text-align: left;
}
.instructor-box .accordion .card-header a:after {
  content: "\f106";
  font-family: 'FontAwesome';
  font-weight: 900;
  float: right;
  font-size: 22px;
  line-height: 1;
}

/* #main #faq .card .card-header .btn-header-link.collapsed {
  background: #A541BB;
  color: #fff;
} */

.instructor-box .accordion .card-header a.collapsed:after {
  content: "\f107";
}

.toolbar-top .sort-section .input-group-addon,
.toolbar-buttom .input-group-addon{
  line-height: 1;
  height: auto;
}
.sort-section .form-control,
.categories-section .form-control,
.toolbar-buttom .form-control{
  padding: 8px !important;
  border-bottom-color: #1ed4c5 !important;
}
.header-cart-wrapper{
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}


/* Responsive
==================== */
@media (max-width: 1100px) {
  .el-footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .el-footer-right {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .top-bar {
    padding: 10px 0;
    text-align: center;
  }

  .top-bar .row p {
    margin-bottom: .2rem;
  }

  .top-bar ul {
    gap: 1rem;
    /* margin-top: .2rem; */
    margin-left: auto;
  }

  .hamburger-container {
    display: block;
  }

  .banner-content-section {
    padding-block: 50px 60px;
  }

  .banner-content-section h1 br {
    display: none;
  }

  .featured-section {
    padding: 35px 20px;
  }

  .featured-left {
    justify-content: center;
    margin-bottom: 0;
  }

  .visitShop-section {
    padding: 60px 20px;
  }

  .visitShop-section p br {
    display: none;
  }

  .prod-title {
    font-size: 12px;
  }

  .training-section {
    padding: 50px 0;
  }

  .training-bg1,
  .training-bg2 {
    background-size: auto;
    padding-inline: 10px;
  }

  .training-bg2 {
    padding-block: 0 80px;
  }

  .training-bg1 .training-imgbx,
  .training-bg2 .training-imgbx {
    margin-top: 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .training-section .training-img,
  .course-imgbx img {
    max-width: 310px;
  }

  .bsignature-title {
    font-size: 30px;
    text-align: center;
  }

  .training-cotentbx {
    text-align: center;
  }

  .training-cotentbx p {
    text-align: center;
  }

  .training-bg2 ul li {
    text-align: left;
  }

  .course-section {
    padding: 70px 10px;
  }

  .course-section .bsignature-title {
    font-size: 30px;
    margin-bottom: 1rem;
  }

  .course-imgbx {
    margin-bottom: 2rem;
  }

  .course-cotentbx {
    text-align: center;
  }

  .greenbg-section {
    background-size: auto;
    padding: 50px 10px;
  }

  .freebietxt {
    top: -1.5rem;
    right: 1rem;
    font-size: 30px;
  }

  .visionVdo-section,.inner-banner-section {
    padding: 60px 0;
  }

  .whychoose-section {
    padding: 100px 10px 60px;
  }

  .whychoose-section h2,
  .discover-content-wrapper h2,
  .onlineCourse-section h2 {
    font-size: 30px;
  }

  .whychoose-section h2 br {
    display: none;
  }

  .loveitTxt {
    top: -4.5rem;
    right: 1.5rem;
    font-size: 30px;
  }

  .gallery-section {
    padding: 60px 10px;
  }

  .gallery-section h2 br {
    display: none;
  }

  .gallery-wrapper {
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .gallery-wrapper img {
    width: 48%;
  }

  .thanktxt {
    top: -2rem;
    right: 0;
    font-size: 30px;
  }

  .bestprod-section,
  .discover-section {
    padding: 60px 10px;
  }

  .discover-content-wrapper h2 br {
    display: none;
  }

   .el-footer {
    padding-inline: 15px;
  }

  .el-footer-main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .el-footer-text {
    font-size: 15px;
  }

  .el-footer-socials {
    gap: 1rem;
  }

  .el-footer-right {
    padding: 30px;
    flex: auto;
  }

  .el-footer-links {
    gap: 15px;
    margin-bottom: 25px;
  }

  .el-footer-accreditations {
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    border-top: 1px solid #fff;
    padding-top: 30px;
  }

  .el-footer-accr-img {
    height: 50px;
  }

  .el-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .inner-banner-section{
    background-size: auto;
  }

  .instructor-section,.mission-section,.onlineCourse-section{
    padding-block: 60px;
  }
  .onlineCourse-section h2{
    line-height: 1.3;
  }

  .courseInfo-box{
    height: 400px;
  }

}

@media (max-width: 767px) {
  .desktop-nav a.btn-custom{
    margin-left: 0;
  }
  p {
    text-align: center;
  }

  p,
  .training-bg2 ul li {
    font-size: 14px;
    font-weight: 500;
  }

  h1,
  .h1,.inner-banner-section h1 {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.1em;
  }

  h2,
  .h2 {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0;
  }

  h3,
  .h3,
  .gallery-section h2 {
    font-size: 30px !important;
    text-align: center;
    /* line-height: 1.1em; */
  }
  .featured-left {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .featured-section .separator {
    display: none;
  }
  .gallery-wrapper {
    flex-direction: column;
  }
  .gallery-wrapper img {
    width: 100%;
  }

  .el-footer-accreditations-title {
    width: 100%;
    margin: 0 0 8px;
  }
  .el-footer-links{
    flex-direction: column;
  }
  .el-footer-bottom-links {
    gap: 5px;
    justify-content: center;
    flex-direction: column;
  }
  .contact-btn{
    display: none;
  }
  .top-header-btm {
    flex-wrap: wrap;
  }
  .top-header-btm .top-bar ul{
    margin-left: auto;
  }
  .top-header-btm .search-section-outer{
    width: 100%;
    display: none;
  }
}