@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-primary: #428800;
  --color-second: #005081;
  --color-white: #fff;
  --color-black: #000;
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--color-black);
  background: #ecebebba;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  letter-spacing: 2px;
  padding-top: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.suheading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .5px;

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-second);
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--color-white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-primary);
  ;
  color: var(--color-white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--color-white);
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  box-shadow: 1.968px 2.264px 10px 0px rgba(128, 125, 125, 0.1);
  position: relative;
}

#header.header-scrolled {
  top: 0;
  position: fixed;
  width: 100%;
}
.bi-list::before, .bi-x::before { display: none;}


#header .logo img {
  max-width: 160px;
}

/**
* Appointment Button *
*/
a.appointment-btn {
  margin-right: 0px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 6px;
  padding: 9px 21px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}

.appointment-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

a.search-icon {
  color: var(--color-black);
  font-size: 18px;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 0px 0 0px 30px;
}

.navbar>ul>li:first-child {
  padding: 0px 0 0px 0px;
}

.navbar ul li a,
.navbar ul li a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--color-black);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.mobile-nav-toggle {
  color: #fff;
  background: #428800;
  border-radius: 5px;
  padding: 1px;
}

/* 
.navbar ul li a:hover,
.navbar ul li a.active,
.navbar ul li a.active:focus,
.navbar ul li:hover>a {
  color: var(--color-primary);
} */
.navbar ul li a.nav-link.active {
  color: var(--color-primary);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  line-height: 30px;
  transition: 0.5s;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--color-white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-primary);
  ;
  border: none;
}

.navbar ul li a,
.navbar ul li a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--color-black);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.navbar ul li a:hover {
  color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
  ;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: #f7f7f7;
  padding: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 86px;
  color: var(--color-second);
  letter-spacing: 3px;
}

#hero p {
  color: var(--color-black);
  ;
  margin: 10px 0 0 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

#hero .btn-get-started {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  display: inline-block;
  padding: 19px 28px;
  margin-top: 20px;
  border-radius: 6px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
}

#hero .btn-get-started:hover {
  background: var(--color-primary);
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .icon-boxes {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(145, 144, 144, 0.17);
  z-index: 71;
  overflow: hidden;
  padding: 20px;
}

.why-us .icon-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  width: 100%;
  padding: 0px 17px;
}

.why-us .icon-boxes .icon-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.why-us .icon-boxes .icon-box img {
  max-width: 50px;
  object-fit: contain;
}

.why-us .icon-boxes .icon-box:first-child {
  border-left: none;
}

.why-us .icon-boxes .icon-box {
  border-left: 1px solid rgb(222, 220, 220);
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0 5px 0;
  text-align: start;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: var(--color-black);
  margin-bottom: 0;
  line-height: normal;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 70px 0px 70px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonials-slider {
  padding: 30px 20px;
  margin: 30px 0px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(145, 144, 144, 0.17);
  overflow: hidden;
}

.testimonials .testimonial-item {
  display: grid;
  grid-template-columns: 23% 75%;
  gap: 1%;
  align-items: center;
}

.testimonials .testimonial-item.testimonial-revius-item {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
}

.testimonials .testimonial-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 5px 0;
  color: var(--color-black);
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: var(--color-black);
  line-height: 26px;
  margin: 0;
  font-weight: 500;
}

.testimonials .testimonial-item p {
  font-size: 18px;
  line-height: 28px;
  margin: 25px auto 0px auto;
}

.revius-star .checked {
  color: orange;
}

/*--------------------------------------------------------------
#CA Online Coaching
--------------------------------------------------------------*/
.ca-online-coaching {
  padding: 70px 0px 20px;
}

.ca-online-coaching .ca-online-boxs {
  row-gap: 30px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr;
}

.ca-online-coaching .box {
  padding: 15px;
  display: grid;
  grid-template-columns: 29% 69%;
  background: no-repeat padding-box #fff;
  box-shadow: 0 3px 20px #0000001A;
  border-radius: 10px;
  box-sizing: unset;
  gap: 2%;
}

.course-img {
  display: grid;
  gap: 1%;
  grid-template-columns: 27% 73%;
}

.course-img img {
  width: 150px;
}

.ca-online-coaching .box .course-content h2 a {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-black);
  display: block;
  padding-top: 20px;
}

.ca-online-coaching .box .course-content p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

.discounted-price {
  margin-top: 15px;
}

.discounted-price h5 {
  font-size: 15px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 0px;
}

.discounted-price .price-box {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.discounted-price .price-box .price {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 30px;
}

.discounted-price .price-box .price .right-price {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.discounted-price .price-box .price .close-price {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #807e7e;
}

.discounted-price .price-box .price .off {
  background-color: rgb(63, 58, 100);
  border-radius: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 17px;
  height: 29px;
  box-shadow: 0 3px 10px #00000014;
  background: no-repeat padding-box #005081;
  width: fit-content;
}

.discounted-price .price-box .btn.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 8px 25px;
  width: fit-content;
  margin-right:10px;
}
.btn.btn-cart2.btn-info{
	background: #f06306;
	padding: 10px 16px;
	font-size: 18px;
	color: #fff;
	border-radius: 26px;
	gap: 10px;
	display: flex;
	margin: 10px 0 auto auto;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	border: navajowhite;
	line-height: 25px;
}
.btn.loadmore,
.btn.loadmore:focus {
  background-color: #005081;
  color: var(--color-white);
  border-color: #005081;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 38px;
  margin: 40px auto auto;

  display: flex;
}


/*--------------------------------------------------------------
#footer
--------------------------------------------------------------*/
.footer {
  background-color: #000;
  padding: 55px 0px 0px;
}

.footer h5 {
  font-size: 18px;
  color: #f07529;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer p {
  font-size: 16px;
  color: var(--color-white);
  line-height: 30px;
  margin-bottom: 0;
}

.foorer-manus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.foorer-manus .all-manu a {
  color: var(--color-white);
  font-size: 24px;
  font-weight: bold;
  background-color: #00639f;
  padding: 14px 62px;
  border-radius: 6px;
}

.foorer-manus .all-manu {
  gap: 23px;
  display: flex;
}

.foorer-manus a {
  color: var(--color-white);
  font-size: 18px;
  line-height: 22px;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin: 20px auto 0px auto;
  justify-content: center;
}

.footer .social-links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00639f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.copyright {
  background-color: #0000;
  padding: 25px 0px;
}

.copyright-manu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 25px;
}

.copyright-manu .all-manu {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 10px;
}

.copyright-manu .all-manu a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
}

.copyright-manu h6 {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 0;
}

.contact-message .form-control:focus {
  color: var(--bs-body-color);
  background-color: #f7f7f7;
  border-color: var(--bs-border-width) solid var(--bs-border-color);
  outline: 0;
  box-shadow: none;
}

/* --------------------------------------------------------------*/
/* product-details */
/* --------------------------------------------------------------*/

.product-details {
  padding: 30px 0px 30px;
}

.product-details-inner {
  /* position: relative; */
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  max-width: 500px;
  position: sticky;
  top: 10px;
  margin: auto;
}

.product-large-slider {
  background: #ffffff;
  box-shadow: 0 1px 8px #00000014;
  border-radius: 8px;
  padding: 20px;
}

.product-details-inner .youtube-video {
  background: #ffffff;
  box-shadow: 0 1px 8px #00000014;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.product-details-inner .youtube-video iframe {
  border: 0;
  width: 100%;
  height: 207px;
}

.product-details-inner .pro-large-img {
  position: relative;
  cursor: pointer;
  max-width: 500px;
}

.product-details-inner label {
  color: #323232;
  font-size: 13px;
  margin-bottom: 10px;
  padding-right: 3px;
  font-weight: 500;
}

.product-details-inner select {
  min-width: 100%;
  background: #fff;
}

.product-details-inner .price-box {
  color: #000;
  font-size: 16px;
  text-align: center;
}

.product-details-inner .price-box {
  width: 100%;
  text-align: center;
  margin-top: 0px;
  justify-content: space-between;
  display: flex;
}

.product-details-inner .price-box .price-regular {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.product-details-inner .price-box .price-old {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #807e7e;
}

.product-details-inner .price-box .off {
  background-color: rgb(63, 58, 100);
  border-radius: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 17px;
  height: 29px;
  box-shadow: 0 3px 10px #00000014;
  background: no-repeat padding-box #005081;
  width: fit-content;
}

.quantity-cart-box .btn.btn-cart2 {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 5px;
}

.quantity-cart-box .action_link {
  width: 100%;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-width) solid var(--bs-border-color);
  outline: 0;
  box-shadow: none;
}

.checkout-page-wrapper .order_ajax_from {
  /* padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
  border: 5px solid #fff; */
  margin-bottom: 0;
}

.faq-container {
  background: #ffffff;
  box-shadow: 0 1px 8px #00000014;
  border-radius: 8px;
  padding: 20px;
}

#product_description p {
  font-size: 17px;
  line-height: 33px;
  font-weight: 400;
  font-family: "Rubik", sans-serif !important;
}

#product_description p span span {
  font-family: "Rubik", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
}

.video-box {
  background: no-repeat padding-box #fff;
  border-radius: 20px;
  height: 202px;
  width: 360px;
  overflow: hidden;
  z-index: 1;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ccc;
}

.custom-checkbox .custom-control-label::before,
.custom-radio .custom-control-label::before {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  height: 15px;
  top: 0;
  width: 15px;
  content: "";
  position: absolute;
  left: -1.5rem;
  background: #fff;
}


.order-summary-table table tr td:last-child {
  text-align: end;
}

.order-summary-table table strong {
  font-weight: 600 !important;
}

c.art-calculator-wrapper .btn-sqr {
  color: #fff;
  font-size: 20px;
  border-radius: 0;
  background-color: #7fc241;
  padding: 10px 22px;
  font-weight: 500;
  transition: all .3s;
  border-radius: 6px;
}

.login-reg-form-wrap button {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
}

/* .login-reg-form-wrap {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
} */

/* .login-reg-form-wrap h5 {
  font-size: 30px;
  text-align: center;
  background: #004876;
  color: #fff;
  padding: 10px;
} */

.login-reg-form-wrap form {
  padding: 10px 20px 10px;
}

.myaccount-table .btn-sqr {
  color: #fff;
  font-size: 15px;
  border-radius: 0;
  background-color: #7fc241;
  padding: 3px 18px;
  font-weight: 500;
  transition: all .3s;
  border-radius: 6px;
}

.cart-main-wrapper .cart-table,
.cart-main-wrapper .cart-calculator-wrapper {
  background: no-repeat padding-box #fff;
  box-shadow: 0 3px 20px #0000001A;
  border-radius: 20px;
  padding: 20px;
  margin-top: 0;
}

.cart-calculator-wrapper .cart-calculate-items {
  border: 1px solid #90909033;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.cart-calculator-wrapper .btn.btn-sqr {
  border-radius: 6px;
}

.checkout-billing-details-wrap {
  background: no-repeat padding-box #fff;
  box-shadow: 0 1px 8px #00000014;
  border-radius: 12px;
  padding: 20px;
  margin-top: 0;
}

.order-table {
  background: no-repeat padding-box #fff;
  border-radius: 12px;
  padding: 15px;
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #00000014;
}

.order-itams {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.order-itams .pro-thumbnail {
  aspect-ratio: 2/1;
  width: 144px;
  border-radius: 8px;
}

.order-itams .pro-thumbnail img {
  width: 144px;
  border-radius: 8px;
  object-fit: cover;
  height: 72px;
}

.Order-title {
  display: grid;
}

.Order-title a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding-bottom: 6px;
}

.Order-title span {
  font-weight: 500;
  font-size: 18px;
}

/* .navbar {
  display: none;
} */

.top-product-details-img {
  background-image: url("../img/normal-header.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  margin-top: 30px;
}

.top-product-details-img .product-name {
  color: #fff;
  font-size: 37px;
  font-weight: 600;
}

.top-product-details-img .price-regular {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}

.top-product-details-img .price-old {
  color: #e3e3e3;
  padding-left: 5px;
  font-weight: 300;
  font-size: 16px;
}

.top-product-details-img .off {
  background-color: #fff;
  border-radius: 20px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 17px;
  height: 29px;
  box-shadow: 0 3px 10px #00000014;
  width: fit-content;
}

.top-product-details-img .price-box {
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.allpages h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.allpages p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

.allpages h4 {
  font-size: 20px;
}

.allpages ol li {
  margin-bottom: 10px;
}

/* Account page */


.myaccount-tab-menu,
.myaccount-content {
  background: no-repeat padding-box #fff;
  border-radius: 12px;
  padding: 15px;
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #00000014;
}

.myaccount-content .btn-sqr {
  color: #fff;
  font-size: 20px;
  border-radius: 0;
  background-color: #428800;
  padding: 7px 22px;
  font-weight: 400;
  transition: all .3s;
  border-radius: 6px;
}

.accordion {
  background: no-repeat padding-box #fff;
  border-radius: 12px;
  padding: 15px;
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #00000014;
}

.accordion-header button {
  background-color: unset !important;
}

.accordion-header button:focus {
  box-shadow: none !important;
}

.field_error {
  font-size: 12px;
}

.accordion-button {
  align-items: center;
  color: #000 !important;
}

.click-login {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: underline;
  padding-left: 3px;
  line-height: normal;
}

.address-button a.btn.btn-sqr {
  font-size: 15px;
  padding: 6px 10px;
  margin-right: 10px;
}

.checkout-page-thankyou {
  background: no-repeat padding-box #fff;
  border-radius: 12px;
  padding: 25px;
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #00000014;
  max-width: 50%;
  margin: auto;
  width: 100%;
  border-top: 5px double var(--color-primary);
}

.checkout-page-thankyou h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-black);
}

.payment-detail {
  border: solid 1px #cccc;
  border-radius: 10px;
  max-width: 80%;
  margin: 20px auto 0px;
  width: 100%;
}

.payment-detail p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.payment-detail p:last-child {
  border-bottom: 0px !important;
}

.check-icon i {
  font-size: 100px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.checkout-page-thankyou h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.google-img {
  max-width: 150px;
  margin-top: 20px;
  display: block;
  text-align: center;
  margin: 20px auto 0;
}

.myaccount-table .btn-sqr {
  color: #fff;
  font-size: 15px;
  border-radius: 0;
  background-color: #428800;
  padding: 5px 18px;
  font-weight: 400;
  transition: all .3s;
  border-radius: 6px;
}

.address-detail .nav-link {
  color: #fff;
  font-size: 18px !important;
  border-radius: 0;
  background-color: #428800;
  margin: 0 !important;
  padding: .375rem .75rem;
}

.address-detail .nav.nav-pills {
  gap: 10px;
}

.address-detail .nav-pills .nav-link.active,
.address-detail .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #00416f !important;
}

.custom-checkbox .custom-control-label a,
.custom-radio .custom-control-label a {
  color: #428800 !important;
  font-weight: 500;
  text-decoration: underline !important;
}

.single-input-item small {
  font-size: 12px;
  line-height: 17px;
  padding-top: 13px !important;
  display: block;
  color: #696969;
}

.checkout-billing-details-wrap .btn.btn-sqr {
  padding: 9px 20px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px !important;
}

.address-detail .tabs-items {
  align-items: flex-start;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin: 1.9rem 0px;
}

.address-detail .contact-list span {
  vertical-align: text-bottom;
  -webkit-filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
  filter: drop-shadow(0 3px 10px rgba(0, 22, 50, .06));
  background-color: #fff;
  margin-right: 25px;
  min-width: 70px;
  text-align: center;
  padding: 13px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.address-detail .contact-list span i {
  color: #f06306;
  font-size: 2rem;
  padding-right: 0;
  text-align: center;
}

.address-button {
  border-bottom: 1px solid #ccc;
  padding: 20px 0px;
}

.myaccount-content h5 {
  margin-bottom: 10px !important;
}

.about-banner h1 {
  font-size: 40px;
  line-height: 50px;
}

.about-banner .banner-2 {
  margin: 0px 0px 50px;
  position: relative;
}

.about-banner .banner-2 .why-us {
  padding-top: 30px;
}

.quote2 {
  position: absolute;
  z-index: -1;
  top: 26px;
  left: -32px;
  max-width: 86px;
}

.about-banner .Mission {
  margin: 0;
  color: #3C4852;
  font-weight: bold;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2px;
  color: var(--color-primary);
  padding-top: 60px;
}

.about-banner .Description {
  font-weight: 500;
  font-size: 30px;
  color: var(--color-black);
  margin-top: 16px;
  margin-bottom: 20px;
  background: #fff;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.about-banner .banner-2 .CardHolder {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0px;
}

.banner-2 .why-us .icon-boxes .icon-box {
  display: grid;
  gap: 10px;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  box-shadow: 0px 16px 32px rgba(221, 230, 237, 0.4);
  border-radius: 8px;
  padding: 20px 15px;
}

.banner-2 .why-us .icon-boxes .icon-box img {
  max-width: 100%;
  object-fit: contain;
  margin: auto;
}

.banner-2 .why-us .icon-boxes .icon-box h4 {
  font-size: 27px;
  font-weight: 500;
  margin: 0px 0 5px 0;
  text-align: center;
}

.banner-2 .why-us .icon-boxes .icon-box p {
  font-size: 19px;
  color: var(--color-black);
  margin-bottom: 0;
  line-height: normal;
}

.banner-2 .why-us .icon-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banner-2 .why-us .icon-boxes {
  border-radius: 10px;
  background-color: unset;
  box-shadow: none;
  z-index: 71;
  overflow: hidden;
  padding: 0px;
}

/* 
.about-banner .banner-2 .CardHolder li {
	list-style: none;
	text-align: center;
}
.about-banner .banner-2 .CardHolder li h5{
	margin: 0;
	font-weight: bold;
	font-size: 48px;
	line-height: 120%;
	color: var(--color-primary);
}
.about-banner .banner-2 .CardHolder li p{
	margin: 0;
	color: #3C4852;
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	display: block;
	margin-top: 4px;
} */

/* login-popup css */
.login-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.login-popup .popup-content {
  box-shadow: 0 0 10px #00000029;
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  width: 90%;
}

.login-popup .popup-content h5 {
  font-weight: 300;
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 16px;
}

.login-popup .popup-content h5 span {
  font-weight: 800;
  display: block;
  text-transform: uppercase;
}

.login-popup .popup-content .single-input {
  margin-bottom: 16px;
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 20px;
  right: 10px;
}

.login-popup .popup-content .single-input input {
  height: 60px;
  background-color: white;
  box-shadow: 0 0 20px #0000001a;
  border-radius: 10px;
  border: none;
  width: 100%;
  padding: 16px;
}

.login-popup .popup-content .single-input input:focus {
  height: 60px;
  background-color: white !important;
  box-shadow: 0 0 20px #0000001a;
  border-radius: 10px;
  border: none;
  width: 100%;
  padding: 16px;
}

.login-popup .popup-content .btn-sqr {
  display: block;
  width: 100%;
  box-shadow: 0 7px 11px #5315cf38;
}

.login-popup .popup-content .custom-checkbox.custom-control,
.login-popup .popup-content .custom-radio.custom-control {
  text-align: left;
}

.login-popup .popup-content .text-danger {
  text-align: left;
  margin-top: 5px;
}

.team-baaner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2%;
  box-shadow: 0px 16px 32px rgba(221, 230, 237, 0.4);
  border-radius: 8px;
  background-color: var(--color-white);
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 50px;
}

.img-right-bar {
  height: 400px;
}

.left-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.Leadimg {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 50% 49%;
  gap: 2%;
  box-shadow: 0px 16px 32px rgba(221, 230, 237, 0.4);
  border-radius: 8px;
  background-color: var(--color-white);
  overflow: hidden;
  margin-bottom: 50px;
  overflow: hidden;
}

.Leadimg img {
  max-width: 600px;
  margin: auto;
  text-align: center;
  justify-content: center;
  display: block;
  height: 100%;
  object-fit: cover;
}

.leader-about {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-about h3 {
  font-size: 30px;
  font-weight: bold;
}

.leader-about span {
  font-size: 14px;
  color: #565353cc;
  margin-bottom: 30px;
}

.leader-about p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.accordion-item .toggle-password {
  position: absolute;
  top: 20px;
  right: 25px;
}

.allpages ol {
  padding-left: 21px;
}

.allpages h4 b {
  font-weight: 400;
}

.login-popup .close {
  position: absolute;
  top: 0;
  right: 0;
  background: #428800;
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0%;
  border: 0;
  border-radius: 0px 0 0px 7px;
}


/* header new css */

.enrollement-support h4 {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.enrollement-support h4 svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.enrollement-support {
  text-align: right;
}

.h-right {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 20px;
}

.enrollement-support a {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
  margin-top: 0;
  font-size: 20px;
}

/* single product tabs */

.nav-tabs li a {
  color: #000;
  text-transform: uppercase;
  padding: 15px;
  display: inline-block;
  transition: all.3s;
  border-radius: 5px 5px 0px 0px;
  font-weight: 500;
}

.nav-tabs li.active a {
  background: var(--color-primary);
  color: #fff;
  font-weight: 500;
  border-radius: 5px 5px 0px 0px;
}

.tab-pane td,
.tab-pane th {
  border: 1px solid #ddd;
  padding: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.tab-pane th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #f4f4f4d9;
  color: black;
  width: 28%;
  font-weight: 500;
}

.tab-pane td {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: white;
  color: #000;
  width: 55%;
}

.nav.nav-tabs {
  margin-bottom: 0px;
}

.tab-pane table tr:first-child th {
  border-top: 0
}

.tab-pane table tr:first-child td {
  border-top: 0
}

.enquiry-popup {
  background: #ffffff;
  box-shadow: 0 1px 8px #00000014;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  display: none;
}

.enquiry-popup a {
  background: #f06306;
  padding: 10px 16px;
  font-size: 18px;
  color: #fff;
  border-radius: 26px;
  gap: 10px;
  display: flex;
  margin: 20px 0 auto auto;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.enquiry-popup p {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
}

.enquiry-popup small {
  font-size: 16px;
  line-height: 25px;
}

.modal.enquiry-modal .modal-header .close {
  color: #ffffff;
  font-size: 30px;
  opacity: 1;
  display: block;
  position: absolute;
  padding: 0;
  width: 35px;
  height: 35px;
  margin: 0;
  right: -1px;
  top: -1px;
  font-weight: 500;
  z-index: 999;
  border-radius: 0px 0px 0px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #428800;
  border: 1px solid #428800;
}

.contact-message.form-shadow {
	border-radius: 20px;
	box-shadow: 10px 7px 0 0 #000;
	/* background-image: url("../img/bgcontact.webp"); */
	/* background: rgb(222, 218, 255); */
	/* background: linear-gradient(90deg, rgba(222, 218, 255, 1) 100%, rgba(241, 239, 255, 1) 100%); */
	background: rgb(66,136,0);
	background: linear-gradient(90deg, rgba(66,136,0,0.4612045501794467) 0%, rgba(0,80,129,0.39117653897496496) 100%);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 20px auto 50px;
	max-width: 900px;
	background-color: rgb(0, 80, 129);
}

.contact-message.form-shadow form input,
.contact-message.form-shadow form textarea,
.contact-message.form-shadow form select {
  background-color: #fff !important;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-message.form-shadow h4 {
	font-size: 28px;
	color: #fff;
}
.contact-message.form-shadow .btn-sqr:hover {
	color: #fff;
	background-color: #000;
}
.max-width-100 {
  max-width: 100% !important;
}

.lock-icon {
  display: none;
}

/* home banner */


.tagline-below-banner {
  text-align: center;
  padding-top: 0;
}

.tagline-below-banner p {
  background: #fff;
  display: inline-block;
  padding: 10px;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

.banner-about-block {
  background: url(../img/banner-bg.jpg) no-repeat center;
  background-size: cover;
  min-height: 420px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
  align-items: end;
  position: relative;
  margin-top: -30px;
}


.banner-about-block .container {
  display: flex;
  align-items: center;
}

.banner-about-block img {
  max-width: 1000px;
}

.banner-about-block .banner-text {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  bottom: 0;
  right: 0;
}

.banner-about-block h1 {
  text-align: left;
  font-size: 50px;
  line-height: 70px;
  margin-bottom: 0;
  max-width: 500px;

}

.banner-about-block h1 .color-h {
  background: var(--color-primary);
  color: #fff;

}

.home-banner img {
  width: 100%;
}

.our-mission {
  text-align: center;
}

.about-banner .Description::before {
  content: '';
  background: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  position: absolute;
  left: -8px;
  z-index: -1;
  top: -8px;
}

.about-banner .Description::after {
  content: '';
  background: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  position: absolute;
  right: -8px;
  z-index: -1;
  bottom: -8px;
}

.teacher-education {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
}

.teacher-education ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.te-team-block {
  width: 50%;
}

.teacher-education ul img {
  width: 100%;
  border-radius: 100%;
}

.teacher-education ul li {
  list-style: none;
}

.about-banner .teacher-education .Mission {
  padding-top: 0;
  margin-bottom: 10px;
}

.te-team-right-text {
  width: 45%;
}

.te-team-right-text h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

ul.contact-list {
  margin-top: 40px;
}

.ca-online-coaching.course-page {
  padding: 0;
}

.results-block {
  text-align: center;
}

.results-block img {
  margin-bottom: 25px;
  display: inline-block;
  max-width: 100%;
}

.ca-hub-head-text {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: -30px;
  margin-bottom: 50px;
}

.ca-hub-head-text h1 {
  margin-bottom: 0;
}

.teacher-education ul li h4 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
}

.tab-content .teacher-education {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}

.teacher-all {
  width: 100%;
}

.teacher-education .teacher-all ul img {
  max-width: 200px;
  border-radius: 0;
  margin: 0px auto;
  text-align: center;
  display: block;
}

.teacher-education .teacher-all ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.teacher-education .teacher-all ul li {
  font-size: 16px;
  font-weight: 500;
  list-style: conic-gradient;
  color: #1f1f1f;
}

.teacher-education .teacher-all ul li h4 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.teacher-description {
  padding: 20px;
}

.teacher-description ul {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  list-style: circle;
  padding-left: 10px !important;
}

.foorer-appicon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  width: fit-content;
  margin: auto;
  background: #fff;
  padding: 45px 20px 20px;
  border-radius: 10px;
  position: relative;
  gap: 15px;
  margin-top: 00px;
}

.foorer-appicon h4 {
  position: absolute;
  top: -12px;
  right: auto;
  left: auto;
  margin: auto;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 11px 30px;
  background: lime;
  border-radius: 23px;
  width: fit-content;
}

.foorer-appicon a picture img {
  width: 200px;
  border-radius: 8px;
}

.test-button {
  margin: 50px 0px 0px;
}

.test-bg {
  background: no-repeat padding-box #fff;
  box-shadow: 0 3px 20px #0000001A;
  border-radius: 10px;
  width: fit-content;
  padding: 20px;
  margin: auto;
}

.all-test-button {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0px auto;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}

.all-test-button li a {
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: all.3s;
  text-transform: uppercase;
  display: block;
}

.all-test-button li:nth-child(1) a {
  background: #046504;
  border-bottom: 5px solid #014701;
}

.all-test-button li:nth-child(2) a {
  background: #f07529;
  border-bottom: 5px solid #d06819;
}

.all-test-button li:nth-child(3) a {
  background: #005081;
  border-bottom: 5px solid #183343;
}

.all-test-button li a:hover {
  text-decoration: underline;
}

.text-blink {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0px auto 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}

.text-blink li {
  font-size: 20px;
  font-weight: 600;
  transition: all.3s;
  text-transform: uppercase;
}

.pulse2 {
  color: #dd185a;
  -webkit-animation: blink 1000ms step-end infinite;
  animation: blink 1000ms step-end infinite;
}

@-webkit-keyframes blink {
  50% {
    color: #dd185a;
  }
}

@keyframes blink {
  50% {
    color: var(--color-primary);
  }
}

#teacherprofilemodel .card-img-top {
  max-width: 200px;
}

.call-itams {
  display: grid;
  grid-template-columns: 100%;
  background-color: rgb(0, 80, 129);
  box-shadow: 0px 0px 20px 0px rgba(145, 144, 144, 0.17);
  padding: 30px;
  color: #fff;
  margin-top: 70px;
  border: 4px solid #fff;
  border-radius: 10px;
}

.call-contact h1 {
  font-size: 35px;
  font-weight: 600;
  padding-bottom: 10px;
}

.call-contact p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 25px;
}

.call-itams .call-button {
  background: #f06306;
  padding: 10px 16px;
  font-size: 18px;
  color: #fff;
  border-radius: 6px;
  gap: 10px;
  display: flex;
  width: fit-content;
  margin: 20px 0 auto auto;
  align-items: center;
}

.inquiry {
  position: absolute;
  top: 2px;
  right: auto;
  left: 16%;
  font-size: 15px;
  margin-bottom: 0;
  background: no-repeat padding-box #fff;
  box-shadow: 0 2px 2px #0000001A;
  padding: 2px 10px;
  border-radius: 0px 0px 5px 5px;
}

/* .inquiry{
	display: flex;
	align-items: center;
	gap: 10px;
}
element {
	margin-bottom: 0;
	display: flex;
	gap: 5px;
} */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.whatsapp-chat-button {
  display: flex;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  height: 60px;
  min-width: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, .24);
  cursor: pointer;
  animation: beat 2s ease-in-out infinite;
  position: fixed;
  align-items: center;
  justify-content: center;
}

.whatsapp-chat-button i {
  font-size: 37px;
  color: #fff;
  text-decoration: none;
}


/*Estilos solo al icono whatsapp*/

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}


/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 400px;
  border-radius: 30px;
  bottom: 90px;
  left: 20px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .5);
}

a.blantershow-chat {
  display: flex;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  height: 60px;
  min-width: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, .24);
  cursor: pointer;
  position: fixed;
  align-items: center;
  justify-content: center;
}

a.blantershow-chat svg {
  transform: scale(1.2);
  width: 30px;
}

.joinchat__wa {
  fill: #fff;
}

.header-chat {
  background: #25d366;
  color: #fff;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
  border: none;
  width: 100%;
  height: 42px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}

a#send-it {
  width: 42px;
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;
  border-radius: 0px;
}

a#send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}

.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.start-chat .blanter-msg {
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 19px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes ZpjSY {
  0% {
    background-color: #b6b5ba;
  }

  15% {
    background-color: #111111;
  }

  25% {
    background-color: #b6b5ba;
  }
}

@keyframes hPhMsj {
  15% {
    background-color: #b6b5ba;
  }

  25% {
    background-color: #111111;
  }

  35% {
    background-color: #b6b5ba;
  }
}

@keyframes iUMejp {
  25% {
    background-color: #b6b5ba;
  }

  35% {
    background-color: #111111;
  }

  45% {
    background-color: #b6b5ba;
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}

.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: #e6ddd4;
  position: relative;
}

.whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: white;
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: #9e9da2;
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: #b6b5ba;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  background-color: white;
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: #111111;
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}

/* End CSS Multiple Whatsapp Chat */

.democlasses {
  margin: 50px 0px 30px;
}

.box.view-video {
  grid-template-columns: 1fr;
  gap: 0;
}

.box.view-video .course-content h2 {
  font-size: 22px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 20px;
}

.box.view-video .video-box {
  border-radius: 10px;
  height: 671px;
  width: 100%;
}

.lock-icon {
  display: none;
}

.thank-youp-page {
  max-width: 700px;
  margin: 50px auto;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 10px 7px 0 0 #000;
  background: #FFF;
}

.thank-youp-page i {
  font-size: 80px;
  color: #428800;
  margin-bottom: 10px;
}

.thank-youp-page h1 {
  font-size: 49px;
  margin-bottom: 20px;
  margin-top: 12px;
  font-weight: 600;
}

.thank-youp-page p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

.thank-youp-page a {
  background: #f06306;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  display: block;
  font-weight: 600;
  border-radius: 26px;
  margin: 20px auto 0px;
}

.related-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.related-courses-grid .price-box {
  width: 100%;
  text-align: center;
  margin-top: 0px;
  justify-content: space-between;
  display: flex;
}

.related-courses-grid .price-box .price-regular {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.related-courses-grid .price-box .price-old {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #807e7e;
}

.related-courses-grid .price-box .off {
  background-color: rgb(63, 58, 100);
  border-radius: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 17px;
  height: 29px;
  box-shadow: 0 3px 10px #00000014;
  background: no-repeat padding-box #005081;
  width: fit-content;
}

.related-courses-grid .product-name {
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 0px;
  font-size: 22px;
  line-height: 30px;
}

.related-courses {
  margin-bottom: 50px;
}

.four-zero-four-page { background-color: #ffcead;}
.four-zero-four-page .misc-wrapper hr { border: solid 2px;}
.four-zero-four-page .misc-wrapper img { margin-bottom: 3rem; max-width: 300px;}
.four-zero-four-page .misc-wrapper .btn {background: black; font-size: 20px; padding: 15px 30px; color: wheat;}
.four-zero-four-page .misc-wrapper .btn:hover { background-color: #fff; color: black;}
.four-zero-four-page .misc-wrapper h2 {    letter-spacing: 1px; font-size: 3rem;}