@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.8em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-family: "Poppins", sans-serif;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container-fluid {
  padding: 0 50px;
}
@media (max-width: 1366px) {
  .container-fluid {
    padding: 0 12px;
  }
}

header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
header .header-inner-wrapper {
  padding: 2.5px 0;
  transition: all 0.5s cubic-bezier(0.47, 0.71, 0.66, 0.84);
}
@media (max-width: 991px) {
  header .header-inner-wrapper {
    padding: 2px 0;
  }
}
header .header-inner-wrapper .header-inner {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner {
    align-items: center;
  }
}
header .header-inner-wrapper .header-inner .left-logo-box a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.089px;
  text-decoration: none;
  color: black;
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .left-logo-box a {
    line-height: 19.807px;
  }
}
@media (max-width: 575px) {
  header .header-inner-wrapper .header-inner .left-logo-box a {
    font-size: 18px;
  }
}
header .header-inner-wrapper .header-inner .left-logo-box a img {
  max-width: 129px;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .middle-menu-box {
    display: none;
  }
}
header .header-inner-wrapper .header-inner .middle-menu-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li {
  display: inline-block;
  margin: 0 22px;
}
@media (max-width: 1650px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li {
    margin: 0 10px;
  }
}
@media (max-width: 1250px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li {
    margin: 0 5px;
  }
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 0;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  display: block;
  transition: 0.5s;
  z-index: 1;
}
@media (min-width: 1920px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li a {
    font-size: 18px;
  }
}
@media (max-width: 1750px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul li a {
    font-size: 16px;
  }
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: black;
  transition: 0.3s ease-in-out;
  transform-origin: center;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li a:hover {
  color: black;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li a:hover:before {
  width: 100%;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul li:nth-child(4) .dropdown-menu-wrapper {
  width: 365px;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .active a {
  font-weight: 700;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper {
  position: relative;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper a {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper a span {
  position: absolute;
  bottom: -8px;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper:hover .dropdown-menu-wrapper {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0px);
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper {
  background-color: #E1F0E9;
  position: absolute;
  left: 50%;
  border-radius: 35px;
  border-top-left-radius: 0;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  top: 100%;
  width: 210px;
  content: "";
  transition: 0.3s ease-in-out;
  transform: translate(-50%, 10px);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1024px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper {
    display: none;
  }
}
@media (max-width: 1199px) {
  header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper .dropdown-box {
    padding-left: 0;
  }
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper .dropdown-box:last-child {
  margin-right: 0;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul {
  flex-direction: column;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li {
  margin: 0;
  display: block;
  margin-bottom: 7px;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li:last-child {
  margin-bottom: 0;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li a {
  width: 100%;
  padding: 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: black;
  font-weight: 400;
  line-height: 26px;
  font-size: 17px;
  border-radius: 35px;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li a::before {
  display: none;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li a .icon-wrapper {
  width: 42px;
  height: 42px;
  padding: 8px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li a .icon-wrapper img {
  width: 100%;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li a:hover {
  background-color: #3C705E;
  color: white;
}
header .header-inner-wrapper .header-inner .middle-menu-box ul .dropdownwrapper .dropdown-menu-wrapper ul li .active {
  background-color: #3C705E;
  color: white;
}
header .header-inner-wrapper .header-inner .right-sign-up-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
}
@media (max-width: 1199px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box {
    gap: 9px;
  }
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box {
    margin-left: auto;
    padding-bottom: 0;
  }
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a:hover .call-icon {
  background-color: transparent;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a:hover .call-icon i {
  transform: rotate(25deg);
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .call-icon {
  transition: 0.3s ease-in-out;
  background-color: #BFE6D4;
  width: 39px;
  height: 39px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #BFE6D4;
}
@media (max-width: 1550px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .call-icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .call-icon {
    width: 34px;
    height: 34px;
  }
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .call-icon i {
  color: #3A6A59;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1550px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .call-icon i {
    font-size: 16px;
  }
}
@media (max-width: 1499px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .number-wrapper {
    display: none;
  }
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .number-wrapper span {
  display: block;
  line-height: 20px;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .number-wrapper .number {
  color: #3A6A59;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .call-wrapper a .number-wrapper .call-now {
  font-size: 13px;
  color: #3A6A59;
  opacity: 0.7;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .login-wrapper a {
  text-decoration: none;
  background-color: #BFE6D4;
  border: 1px solid #BFE6D4;
  color: #3A6A59;
  font-size: 18px;
  padding: 10px 29px;
  border-radius: 6px;
  display: block;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .right-sign-up-box .login-wrapper a:hover {
  background-color: transparent;
}
@media (max-width: 1499px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .login-wrapper a {
    font-size: 16px;
    padding: 5px 12px;
  }
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .right-sign-up-box .login-wrapper a {
    padding: 3px 15px;
  }
}
header .header-inner-wrapper .header-inner .cart-user-icons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding-bottom: 18px;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .cart-user-icons-wrapper {
    margin-left: auto;
    gap: 17px;
    padding-bottom: 0;
  }
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn {
  background-color: #fff;
  border: none;
  padding: 6px 15px;
  box-shadow: 0px 1px 4.3px 0px #E1F0E9;
  font-size: 16px;
  color: #3A6A59;
  font-weight: 500;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 250px;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn {
    padding: 0;
    min-width: unset;
  }
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn span {
    display: none;
  }
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn::after {
  display: none;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  margin-left: 12px;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .image-wrapper {
  margin-left: auto;
  background-color: #E1F0E9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .image-wrapper {
    margin-right: 0px;
  }
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .image-wrapper img {
  width: 20px;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .userdetails-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .userdetails-inner .user-image img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-btn .userdetails-inner .user-name h5 {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu {
  background-color: white;
  box-shadow: 0px 1px 4.9px 0px rgba(0, 0, 0, 0.2117647059);
  padding: 0;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
  border: none;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu {
    width: auto;
  }
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu li a {
  padding: 12px 15px;
  background-color: white;
  font-weight: 400;
  line-height: 26px;
  color: black;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu li a img {
  margin-right: 10px;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu li a:hover {
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.1);
  background-color: #f5f6f8;
}
header .header-inner-wrapper .header-inner .user-details-box .dropdown .dropdown-menu li:last-child a {
  border-bottom: 0px solid #ddd;
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .cart-icon-wrapper {
    margin-left: auto;
  }
}
header .header-inner-wrapper .header-inner .cart-icon-wrapper .cart-icon-inner a {
  position: relative;
  color: black;
  text-decoration: none;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-inner-wrapper .header-inner .cart-icon-wrapper .cart-icon-inner a .cart-count {
  position: absolute;
  right: 75%;
  top: -15%;
  background-color: #fc4242;
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper {
  display: none;
}
@media (max-width: 1044px) {
  header .header-inner-wrapper .header-inner .mobile-menu-wrapper {
    display: block;
    margin-left: 9px;
  }
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 2px;
  width: 28px;
  height: 22px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn span {
  display: block;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn .bar1 {
  width: 70%;
  height: 2px;
  background-color: #3C705E;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn .bar2 {
  width: 100%;
  height: 2px;
  background-color: #3C705E;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn .bar3 {
  width: 70%;
  height: 2px;
  background-color: #3C705E;
  transform: translateX(40%);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn:hover .bar1 {
  transform: translateX(40%);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .mobile-menu-btn:hover .bar3 {
  transform: translateX(0%);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas {
  height: 100vh;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header {
  margin-bottom: 34px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .offcanvas-title a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.089px;
  text-decoration: none;
  color: black;
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .offcanvas-title a {
    font-size: 14.809px;
    line-height: 19.807px;
  }
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .offcanvas-title a img {
  margin-right: 10px;
  max-width: 160px;
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .offcanvas-title a img {
    max-width: 150px;
    margin-right: 0px;
  }
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .btn-close {
  opacity: 1;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 120px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li {
  list-style: none;
  margin-bottom: 15px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li a {
  display: block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li a:hover {
  color: black;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li h2:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li button {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  padding: 0px;
  background-color: transparent;
  font-size: 16px;
  border-radius: 0;
  position: relative;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body {
  margin-top: 15px;
  padding: 0;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 8px;
  box-shadow: 15px 15px 60px 0px rgba(133, 133, 133, 0.1);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li:last-child {
  border-bottom: 0px solid transparent;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: black;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 991px) {
  header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a {
    padding: 8px;
  }
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a::before {
  display: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a .image-box {
  padding: 9px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: white;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a .image-box img {
  width: 18px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a:hover {
  text-decoration: underline;
  font-weight: 500;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a:hover .image-box {
  background-color: #f5f6f8;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a:focus {
  text-decoration: underline;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-body ul li a:focus .image-box {
  background-color: #f5f6f8;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-button::after {
  font-size: 24px;
  background-image: unset;
  content: "\e313";
  position: absolute;
  right: 0;
  transform: translateY(-25%);
  font-family: "Material Icons";
  color: rgba(0, 0, 0, 0.8);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: rgba(0, 0, 0, 0.8);
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion-button:not(.collapsed)::after {
  content: "\e316";
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion {
  background-color: transparent;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion .accordion-item {
  background-color: transparent;
  border: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul li .accordion .accordion-item .accordion-header:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .menu-wrapper ul .active a {
  text-decoration: underline;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .mobile-menu-link a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 26px;
  font-weight: 500;
  color: white;
  padding: 10px 29px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .mobile-menu-link a::before {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 110%;
  height: 110%;
  transition: 0.3s ease-in-out;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
header .header-inner-wrapper .header-inner .mobile-menu-wrapper .offcanvas .offcanvas-body .mobile-menu-link a:hover::before {
  width: 0;
}
header .cart-header {
  background-color: #E1F0E9;
}
header .scrolled {
  background-color: white;
  box-shadow: 0 -4px 16px 4px rgba(0, 0, 0, 0.24);
  padding: 0;
}
@media (max-width: 991px) {
  header .scrolled {
    padding: 0px 0;
  }
}
.home-hero-slider-section {
  padding-top: 96px;
}
@media (max-width: 991px) {
  .home-hero-slider-section {
    padding-top: 90px;
  }
}
.home-hero-slider-section .carousel-item img {
  width: 100%;
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item img {
    min-height: 280px;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item .carousel-caption {
    right: 3%;
    left: 3%;
    padding-bottom: 0;
  }
}
.home-hero-slider-section .carousel-item .carousel-caption h2 {
  text-transform: uppercase;
  font-size: 118px;
  line-height: 150px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .home-hero-slider-section .carousel-item .carousel-caption h2 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item .carousel-caption h2 {
    font-size: 30px;
    line-height: 28px;
  }
}
.home-hero-slider-section .carousel-item .carousel-caption p {
  font-size: 44px;
  text-transform: capitalize;
  color: white;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .home-hero-slider-section .carousel-item .carousel-caption p {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item .carousel-caption p {
    font-size: 20px;
  }
}
.home-hero-slider-section .carousel-item .carousel-caption .link-wrapper {
  margin-top: 45px;
}
@media (max-width: 1750px) {
  .home-hero-slider-section .carousel-item .carousel-caption .link-wrapper {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item .carousel-caption .link-wrapper {
    margin-top: 20px;
  }
}
.home-hero-slider-section .carousel-item .carousel-caption .link-wrapper a {
  text-decoration: none;
  background-color: white;
  color: #3C705E;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid white;
  text-transform: uppercase;
  border-radius: 35px;
  display: block;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .home-hero-slider-section .carousel-item .carousel-caption .link-wrapper a {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .home-hero-slider-section .carousel-item .carousel-caption .link-wrapper a {
    padding: 7px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-hero-slider-section .carousel-item .carousel-caption .link-wrapper a {
    font-size: 14px;
    padding: 5px 4px;
  }
}
.home-hero-slider-section .carousel-item .carousel-caption .link-wrapper a:hover {
  background-color: transparent;
  color: white;
}

.why-aesthetics-section {
  background-color: #E1F0E9;
  padding: 40px 0 80px 0;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.why-aesthetics-section .why-aesthetics-inner .top-title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title {
    margin-bottom: 50px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .top-title h3 {
  font-size: 69px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title h3 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title h3 {
    font-size: 28px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .top-title h4 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .top-title h4 {
    font-size: 17px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .left-graph-right-video-section {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 50px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .why-aesthetics-section .why-aesthetics-inner .left-graph-right-video-section {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .left-graph-right-video-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .left-graph-right-video-section .left-graphic-section img {
  width: 100%;
}
.why-aesthetics-section .why-aesthetics-inner .bottom-title-text p {
  font-size: 14px;
  color: #364045;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .bottom-title-text p {
    font-size: 13px;
    line-height: 22px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .left-wrapper h2 {
  font-size: 183px;
  margin-bottom: 0;
  font-weight: 400;
  color: #3A6A59;
  line-height: 204px;
  text-shadow: 18px 18px 0px rgba(255, 255, 255, 0.4);
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .left-wrapper h2 {
    font-size: 100px;
    line-height: 120px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .left-wrapper h2 {
    font-size: 60px;
    line-height: 50px;
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .right-wrapper {
  padding-top: 23px;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .right-wrapper {
    padding-top: 0;
  }
}
.why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .right-wrapper h5 {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
  color: #364045;
  line-height: 61px;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .right-wrapper h5 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .salon-industry-wrapper .right-wrapper h5 {
    font-size: 22px;
    line-height: 26px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper {
  padding-left: 90px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper {
    max-width: 100%;
    padding-left: 0;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper {
  gap: 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper {
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .content-wrapper p {
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 500;
  line-height: 50px;
  color: #364045;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .content-wrapper p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .content-wrapper p {
    font-size: 17px;
    line-height: 24px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .x-wrapper .x-inner {
  width: 181px;
  height: 181px;
  background-color: #3A6A59;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-delay: 2.7s !important;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .x-wrapper .x-inner {
    width: 90px;
    height: 90px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .x-wrapper .x-inner h4 {
  margin-bottom: 0;
  font-size: 103px;
  font-weight: 400;
  line-height: 116px;
  color: white;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .fourx-wrapper .x-wrapper .x-inner h4 {
    font-size: 50px;
    line-height: 60px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper {
  display: flex;
  flex-direction: row;
  align-items: end;
  padding-left: 200px;
  gap: 125px;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper {
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper {
    justify-content: center;
    align-content: center;
    gap: 20px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .x-wrapper .x-inner {
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3A6A59;
  border-radius: 50%;
  transition-delay: 1.4s !important;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .x-wrapper .x-inner {
    width: 66px;
    height: 66px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .x-wrapper .x-inner h4 {
  margin-bottom: 0;
  font-size: 74px;
  font-weight: 400;
  color: white;
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .x-wrapper .x-inner h4 {
    font-size: 32px;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .content-wrapper p {
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 500;
  line-height: 50px;
  color: #364045;
}
@media (max-width: 1750px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .content-wrapper p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .content-wrapper p {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .twox-wrapper .content-wrapper p br {
    display: none;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic img {
  position: absolute;
  left: 31%;
  top: 37%;
  z-index: -1;
  transition-delay: 1.8s !important;
}
@media (max-width: 1499px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic img {
    transform: rotate(-12deg);
  }
}
@media (max-width: 1399px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic img {
    left: 34%;
    top: 37%;
    transform: rotate(-12deg);
  }
}
@media (max-width: 1199px) {
  .why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic img {
    display: none;
  }
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic svg {
  width: 100%;
  height: 200px;
  stroke: #3A6F5C;
  stroke-width: 4;
  fill: none;
}
.why-aesthetics-section .why-aesthetics-inner .twox_fourx_wrapper .graphic .zigzag-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawZigZag 5s ease forwards;
  animation-delay: 0s;
  animation-play-state: paused;
}
@keyframes drawZigZag {
  to {
    stroke-dashoffset: 0;
  }
}
.why-aesthetics-section .why-aesthetics-inner .first-content-wrapper {
  transition-delay: 0.8s !important;
}
.why-aesthetics-section .why-aesthetics-inner .second-content-wrapper {
  transition-delay: 3.2s !important;
}
.why-aesthetics-section .why-aesthetics-video video {
  width: 100%;
}

.ageless-job-marketing-section .ageless-job-marketing-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 1750px) {
  .ageless-job-marketing-section .ageless-job-marketing-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-job-marketing-section .ageless-job-marketing-inner {
    grid-template-columns: 1fr;
    padding: 0 12px;
    padding-top: 50px;
  }
}
.ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 500;
  line-height: 66px;
  color: #364045;
}
@media (max-width: 1750px) {
  .ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation {
    font-size: 32px;
    line-height: 54px;
  }
}
@media (max-width: 991px) {
  .ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation {
    font-size: 22px;
    line-height: 32px;
  }
}
.ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation .cd-words-wrapper {
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation .cd-words-wrapper::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 2px);
  height: 90%;
  content: "";
  z-index: -1;
  background-color: #3A6A59;
  transform: translate(-50%, -50%);
}
.ageless-job-marketing-section .ageless-job-marketing-inner .left-content-section .new-text-animation .cd-words-wrapper b {
  font-weight: 500;
}
.ageless-job-marketing-section .ageless-job-marketing-inner .right-image-section {
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1750px) {
  .ageless-job-marketing-section .ageless-job-marketing-inner .right-image-section {
    min-width: 100%;
    max-width: 100%;
  }
}
.ageless-job-marketing-section .ageless-job-marketing-inner .right-image-section img {
  width: 100%;
}
.ageless-job-marketing-section .job-role-section {
  background-color: #E1F0E9;
  padding: 55px 0;
}
.ageless-job-marketing-section .job-role-section .job-role-inner {
  text-align: center;
}
.ageless-job-marketing-section .job-role-section .job-role-inner h4 {
  font-size: 55px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 61px;
  color: #3A6A59;
}
@media (max-width: 1750px) {
  .ageless-job-marketing-section .job-role-section .job-role-inner h4 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-job-marketing-section .job-role-section .job-role-inner h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
.ageless-job-marketing-section .job-role-section .job-role-inner h4 span {
  font-weight: bold;
}

.ageless-unique-section {
  padding: 80px 0 50px;
}
.ageless-unique-section .ageless-unique-inner .top-title {
  text-align: center;
  margin-bottom: 50px;
}
.ageless-unique-section .ageless-unique-inner .top-title h3 {
  margin-bottom: 0;
  font-size: 69px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 103px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .top-title h3 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .top-title h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.ageless-unique-section .ageless-unique-inner .left-right-inner-section {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 70px;
  margin-bottom: 80px;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .left-right-inner-section {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .left-right-inner-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper {
    max-width: 100%;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box {
    flex-direction: column;
    gap: 12px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #E1F0E9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .icon-box {
    width: 90px;
    height: 90px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .icon-box img {
  width: 55px;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .icon-box img {
    width: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .icon-box img {
    width: 35px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper {
  width: calc(100% - 120px);
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper {
    width: 100%;
    text-align: center;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 25px;
  color: #3A6A59;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper h5 {
    font-size: 20px;
  }
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper .content-wrapper {
  margin-left: auto;
  margin-right: auto;
}
.ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper .content-wrapper p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 24px;
  color: #364045;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper .content-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .unique-box-wrapper .unique-box .inner-box-wrapper .content-wrapper p {
    font-size: 16px;
  }
}
.ageless-unique-section .ageless-unique-inner .read-more-option {
  text-align: right;
  margin: 30px 0;
}
.ageless-unique-section .ageless-unique-inner .read-more-option a {
  font-size: 25px;
  font-weight: bold;
  line-height: 28px;
  text-decoration: none;
  color: #3A6A59;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .read-more-option a {
    font-size: 20px;
  }
}
.ageless-unique-section .ageless-unique-inner .read-more-option a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.ageless-unique-section .ageless-unique-inner .bottom-message {
  text-align: center;
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .bottom-message {
    margin-top: 50px;
  }
}
.ageless-unique-section .ageless-unique-inner .bottom-message h4 {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: 61px;
  color: #3A6A59;
}
@media (max-width: 1750px) {
  .ageless-unique-section .ageless-unique-inner .bottom-message h4 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .ageless-unique-section .ageless-unique-inner .bottom-message h4 {
    font-size: 26px;
    line-height: 32px;
  }
}

.learn-from-the-leaders-section {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.learn-from-the-leaders-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  content: "";
  background-color: #3C705E;
  height: 96%;
  z-index: -1;
}
.learn-from-the-leaders-section .learn-from-the-leaders-image-wrapper img {
  width: 100%;
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer {
  padding-top: 30px;
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .top-title {
  text-align: center;
  margin-bottom: 15px;
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .top-title h3 {
  font-size: 69px;
  font-weight: bold;
  margin-bottom: 0;
  color: white;
}
@media (max-width: 1750px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .top-title h3 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .top-title h3 {
    font-size: 28px;
  }
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .content-para {
  text-align: center;
  margin-bottom: 50px;
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .content-para p {
  font-size: 30px;
  font-weight: 400;
  color: #E1F0E9;
  line-height: 46px;
}
@media (max-width: 1750px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .content-para p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .content-para p span {
  font-weight: bold;
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper {
    max-width: 100%;
  }
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper {
  background-color: #E1F0E9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 12px 100px 0 100px;
}
@media (max-width: 1750px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper {
    padding: 12px 40px 0 40px;
  }
}
@media (max-width: 991px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper {
    flex-direction: column;
    padding: 12px;
    gap: 30px;
    padding-bottom: 0;
  }
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .left-content p {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 46px;
  color: #3A6A59;
}
@media (max-width: 1750px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .left-content p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .left-content p {
    font-size: 17px;
    line-height: 28px;
    text-align: center;
  }
}
.learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .right-image img {
  width: 207px;
}
@media (max-width: 1750px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .right-image img {
    width: 170px;
  }
}
@media (max-width: 991px) {
  .learn-from-the-leaders-section .learn-from-the-leaders-outer .learn-from-leaders-inner .east-west-wrapper .inner-wrapper .right-image img {
    width: 150px;
  }
}

.who-are-our-courses-section {
  margin-bottom: 50px;
}
.who-are-our-courses-section .who-are-our-courses-inner .top-title-para {
  text-align: center;
  margin-bottom: 30px;
}
.who-are-our-courses-section .who-are-our-courses-inner .top-title-para h3 {
  font-size: 69px;
  font-weight: bold;
  margin-bottom: 0;
  color: #3C705E;
  line-height: 103px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .top-title-para h3 {
    font-size: 42px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .top-title-para h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .top-title-para p {
  color: #3A6A59;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .top-title-para p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .top-title-para p {
    font-size: 18px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .content-para {
  text-align: center;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .content-para {
    max-width: 100%;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .content-para p {
  color: black;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .content-para p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .center-video-section {
  max-width: 863px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  margin-top: 50px;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper {
  border: 4px solid #CFE5DB;
  border-radius: 87px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 34px 165px 40px 165px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper {
    max-width: 100%;
    padding: 34px 80px 40px 80px;
  }
}
@media (max-width: 1199px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper {
    padding: 30px 15px 40px 15px;
    border-radius: 30px;
    overflow: hidden;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .tabs-top-title {
  text-align: center;
  margin-bottom: 35px;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .tabs-top-title h4 {
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 61px;
  color: #3A6A59;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .tabs-top-title h4 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .tabs-top-title h4 {
    font-size: 26px;
    line-height: 32px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav {
    gap: 10px;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: #E1F0E9;
  border-radius: 53px;
  padding: 7px;
  font-size: 28px;
  font-weight: bold;
  color: #364045;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link {
    justify-content: center;
    padding: 12px 15px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link {
    font-size: 18px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link .icon-wrapper {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link .icon-wrapper {
    display: none;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link .icon-wrapper img {
  width: 56px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link .icon-wrapper img {
    width: 30px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .nav-link:hover {
  background-color: #3C705E;
  color: white;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .nav .active {
  background-color: #3C705E;
  color: white;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 50px;
  padding-top: 30px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper {
    grid-template-columns: 1fr;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content {
  padding-right: 20px;
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content {
    padding-right: 0;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content h4 {
  font-size: 55px;
  font-weight: 500;
  line-height: 61px;
  color: #3A6A59;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content h4 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 25px;
  color: black;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content p {
    font-size: 16px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content .link-wrapper a {
  display: block;
  border: 1px solid #3C705E;
  border-radius: 117px;
  font-size: 29px;
  font-weight: 500;
  color: #3C705E;
  text-decoration: none;
  max-width: 216px;
  text-align: center;
  padding: 18px 15px;
  transition: 0.3s ease-in-out;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content .link-wrapper a:hover {
  background-color: #3C705E;
  color: white;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content .link-wrapper a {
    font-size: 22px;
    padding: 12px 10px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .left-side-content .link-wrapper a {
    font-size: 16px;
    padding: 10px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .right-side-content .image-wrapper {
  border-radius: 56px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .right-side-content .image-wrapper {
    border-radius: 30px;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .tabs-inner-content-wrapper .right-side-content .image-wrapper img {
  width: 100%;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper {
  margin-top: 20px;
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper a {
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 34px;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  color: white;
  font-size: 29px;
  font-weight: 500;
  padding: 18px 20px;
  transition: 0.3s ease-in-out;
  max-width: 390px;
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper a {
    max-width: 100%;
  }
}
.who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper a {
    font-size: 22px;
    padding: 12px 15px;
  }
}
@media (max-width: 991px) {
  .who-are-our-courses-section .who-are-our-courses-inner .ageless-home-tabs-section-wrapper .ageless-tabs-inner-wrapper .courses-tabs-wrapper .tab-content .explore-more-wrapper .link-wrapper a {
    font-size: 16px;
    padding: 10px;
    display: block;
  }
}

.upcoming-workshops-section .inner-container-wrapper {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .inner-container-wrapper {
    max-width: 100%;
  }
}
.upcoming-workshops-section .inner-container-wrapper .title-wrapper {
  text-align: center;
}
.upcoming-workshops-section .inner-container-wrapper .title-wrapper h3 {
  font-size: 69px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #3C705E;
  line-height: 103px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .inner-container-wrapper .title-wrapper h3 {
    font-size: 42px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .title-wrapper h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content {
  background-color: #F4F4F4;
  border-radius: 46px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
@media (max-width: 1199px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content {
    grid-template-columns: 1fr;
    padding: 30px 15px;
    border-radius: 30px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section h5 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section h5 {
    font-size: 18px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section p {
  font-size: 22px;
  color: black;
  margin-bottom: 0;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .left-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content {
  height: 452px;
}
@media (max-width: 1599px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content {
    height: 400px;
  }
}
@media (max-width: 1399px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content {
    height: 380px;
  }
}
@media (max-width: 1199px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content {
    height: unset;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a {
    border-radius: 15px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a img {
  width: 100%;
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a .thumbnail-image {
  transition: 0.5s ease-in-out;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 100px;
}
@media (max-width: 991px) {
  .upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a .video-icon {
    max-width: 50px;
  }
}
.upcoming-workshops-section .inner-container-wrapper .upcoming-workshops-content .right-section .upcoming-video-content a:hover .thumbnail-image {
  transform: scale(1.1);
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper {
  background-color: #E1F0E9;
  margin-top: 20px;
  padding: 30px 0;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container {
    max-width: 100%;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .title-wrapper {
  text-align: center;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .title-wrapper h3 {
  font-size: 55px;
  font-weight: 500;
  line-height: 61px;
  color: #3A6A59;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .title-wrapper h3 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .title-wrapper h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box {
  background-color: #F9F9F9;
  border-radius: 31px;
  padding: 20px;
}
@media (max-width: 767px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box {
    padding-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box {
    padding: 30px 15px;
    border-radius: 15px;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 22px;
  height: 294px;
}
@media (max-width: 1599px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a {
    height: 250px;
  }
}
@media (max-width: 1399px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a {
    height: 240px;
  }
}
@media (max-width: 1199px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a {
    height: 220px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a {
    height: unset;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a img {
  width: 100%;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a .thumbnail-image {
  transition: 0.5s ease-in-out;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 50px;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container a:hover .thumbnail-image {
  transform: scale(1.1);
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper {
  padding-top: 30px;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper h5 {
  font-size: 31px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper h5 {
    font-size: 18px;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: black;
  margin-bottom: 5px;
  font-weight: 500;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper p {
    font-size: 16px;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper p:last-child {
  margin-bottom: 0;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .upcoming-videos-inner-wrapper .upcoming-videos-box .top-videos-container .videos-content-wrapper p img {
  max-width: 14px;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .link-wrapper {
  text-align: center;
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .link-wrapper a {
  text-decoration: none;
  background-color: #E1F0E9;
  border-radius: 39px;
  text-align: center;
  padding: 19px 50px;
  font-size: 28px;
  font-weight: 400;
  color: #3C705E;
  transition: 0.3s ease-in-out;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .link-wrapper a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .link-wrapper a {
    font-size: 18px;
    width: 100%;
    padding: 15px 5px;
  }
}
.upcoming-workshops-section .upcoming-videos-outer-wrapper .upcoming-videos-container .link-wrapper a:hover {
  background-color: #3C705E;
  color: white;
}

.testimonial-section {
  margin: 50px 0;
}
.testimonial-section .testimonial-container {
  position: relative;
  z-index: 1;
  padding: 50px 30px;
}
.testimonial-section .testimonial-container::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  background-color: #E1F0E9;
  width: 91%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 71px;
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container::before {
    border-radius: 30px;
    width: 87%;
  }
}
.testimonial-section .testimonial-container .title-wrapper {
  text-align: center;
}
.testimonial-section .testimonial-container .title-wrapper h3 {
  font-size: 69px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #3C705E;
  line-height: 103px;
}
@media (max-width: 1750px) {
  .testimonial-section .testimonial-container .title-wrapper h3 {
    font-size: 42px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container .title-wrapper h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner {
  height: 330px;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner {
    height: 300px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner {
    height: 280px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner {
    height: unset;
  }
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner a {
  display: block;
  padding: 15px;
  width: 100%;
  height: 100%;
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 37px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .item .item-inner a img {
    border-radius: 10px;
  }
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav {
  margin: 0;
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav button {
  color: #3A6A59;
  margin: 0;
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav button span {
  font-size: 32px;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav button span {
    font-size: 28px;
  }
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav button:hover {
  background-color: transparent;
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav .owl-prev {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-section .testimonial-container .testimonials-slider-wrapper .testimonials-slider .owl-nav .owl-next {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.placements-section .placements-top-image img {
  width: 100%;
}
.placements-section .placements-content-wrapper {
  background-color: #3C705E;
  padding: 53px 0;
  text-align: center;
}
.placements-section .placements-content-wrapper h4 {
  color: white;
  font-weight: bold;
  font-size: 69px;
  line-height: 103px;
}
@media (max-width: 1750px) {
  .placements-section .placements-content-wrapper h4 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .placements-section .placements-content-wrapper h4 {
    font-size: 28px;
    line-height: 30px;
  }
}
.placements-section .placements-content-wrapper p {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
  color: white;
  line-height: 61px;
}
@media (max-width: 1750px) {
  .placements-section .placements-content-wrapper p {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .placements-section .placements-content-wrapper p {
    font-size: 28px;
    line-height: 30px;
  }
}

.meet-our-career-section {
  background-color: #E1F0E9;
  padding-top: 50px;
}
.meet-our-career-section .meet-our-career-inner {
  max-width: 79%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .meet-our-career-section .meet-our-career-inner {
    max-width: 100%;
  }
}
.meet-our-career-section .meet-our-career-inner h4 {
  font-size: 34px;
  font-weight: bold;
  line-height: 51px;
  color: #3C705E;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .meet-our-career-section .meet-our-career-inner h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
.meet-our-career-section .meet-our-career-inner .top-content-image-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .top-content-image-section {
    grid-template-columns: repeat(1, 1fr);
  }
}
.meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  color: #364045;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section p {
    font-size: 16px;
  }
}
.meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section p:last-child {
  margin-bottom: 0;
}
.meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section h4 {
  font-size: 34px;
  font-weight: bold;
  line-height: 51px;
  color: #3C705E;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .top-content-image-section .left-content-section h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
.meet-our-career-section .meet-our-career-inner .top-content-image-section .right-image-section .image-wrapper img {
  width: 100%;
}
.meet-our-career-section .meet-our-career-inner .home-video-section {
  margin-bottom: 50px;
}
.meet-our-career-section .meet-our-career-inner .home-video-section a {
  display: block;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  height: 680px;
}
@media (max-width: 1599px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a {
    height: 630px;
  }
}
@media (max-width: 1399px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a {
    height: unset;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a {
    border-radius: 15px;
  }
}
.meet-our-career-section .meet-our-career-inner .home-video-section a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.meet-our-career-section .meet-our-career-inner .home-video-section a img {
  width: 100%;
}
.meet-our-career-section .meet-our-career-inner .home-video-section a .thumbnail-image {
  transition: 0.5s ease-in-out;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.meet-our-career-section .meet-our-career-inner .home-video-section a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 100px;
}
@media (max-width: 991px) {
  .meet-our-career-section .meet-our-career-inner .home-video-section a .video-icon {
    max-width: 50px;
  }
}
.meet-our-career-section .meet-our-career-inner .home-video-section a:hover .thumbnail-image {
  transform: scale(1.1);
}
.meet-our-career-section .for-us-container {
  background-color: #3C705E;
}
.meet-our-career-section .for-us-container .our-seccess-banner-wrapepr {
  background-color: #3C705E;
  border-radius: 6px;
  text-align: center;
  padding: 29px 15px;
}
@media (max-width: 991px) {
  .meet-our-career-section .for-us-container .our-seccess-banner-wrapepr {
    padding: 29px 0;
  }
}
.meet-our-career-section .for-us-container .our-seccess-banner-wrapepr p {
  font-size: 40px;
  font-weight: 400;
  line-height: 60px;
  color: white;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 1750px) {
  .meet-our-career-section .for-us-container .our-seccess-banner-wrapepr p {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .meet-our-career-section .for-us-container .our-seccess-banner-wrapepr p {
    font-size: 26px;
    line-height: 28px;
  }
}
.meet-our-career-section .for-us-container .our-seccess-banner-wrapepr p span {
  font-weight: bold;
  color: #E1F0E9;
}

.footer-section {
  background-color: #E1F0E9;
  padding: 70px 0;
}
.footer-section .footer-inner {
  max-width: 79%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .footer-section .footer-inner {
    max-width: 100%;
  }
}
.footer-section .footer-inner .footer-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 991px) {
  .footer-section .footer-inner .footer-box-wrapper {
    gap: 30px;
    flex-direction: column;
  }
}
.footer-section .footer-inner .footer-box-wrapper .footer-box h5 {
  font-size: 28px;
  font-weight: 500;
  color: #364045;
  margin-bottom: 25px;
}
@media (max-width: 1750px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box h5 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.footer-section .footer-inner .footer-box-wrapper .footer-box ul {
  margin: 0;
  padding: 0;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box ul li {
  list-style: none;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box ul li {
    margin-bottom: 0;
  }
}
.footer-section .footer-inner .footer-box-wrapper .footer-box ul li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: #48555B;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box ul li a:hover {
  color: #3C705E;
  text-decoration: underline;
}
@media (max-width: 1750px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box ul li a {
    font-size: 16px;
  }
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .content-para {
  margin-bottom: 25px;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .content-para p {
  font-size: 20px;
  font-weight: 400;
  color: #48555B;
  margin-bottom: 0;
  max-width: 281px;
}
@media (max-width: 1750px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box .content-para p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-inner .footer-box-wrapper .footer-box .content-para p {
    max-width: 100%;
  }
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .social-link ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .social-link ul li {
  margin-bottom: 0;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .social-link ul li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(60, 112, 94, 0.1);
  font-size: 18px;
  color: #3C705E;
  border: 1px solid rgba(60, 112, 94, 0.1);
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .footer-box-wrapper .footer-box .social-link ul li a:hover {
  background-color: #3C705E;
  color: white;
  text-decoration: none;
}

.mobile-break {
  display: none;
}
@media (max-width: 991px) {
  .mobile-break {
    display: block;
  }
}

@media (max-width: 991px) {
  .desktop-break {
    display: none;
  }
}

.left-fixed-button-wrapper {
  position: fixed;
  left: 15px;
  bottom: 40px;
  z-index: 9;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.left-fixed-button-wrapper a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: center;
  background-color: white;
  border-radius: 37px;
  padding: 10px 20px;
  color: #3C705E;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
  -webkit-box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
  -moz-box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
}
@media (max-width: 991px) {
  .left-fixed-button-wrapper a {
    padding: 9px;
  }
}
@media (max-width: 991px) {
  .left-fixed-button-wrapper a .icon-wrapper img {
    max-width: 24px;
  }
}
@media (max-width: 991px) {
  .left-fixed-button-wrapper a span {
    display: none;
  }
}
.left-fixed-button-wrapper a:last-child {
  background-color: #3C705E;
  color: white;
}

.call-whatsapp-book-wrapper {
  position: fixed;
  right: 15px;
  bottom: 40px;
  z-index: 9;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-whatsapp-book-wrapper .contact-box:first-child {
  width: 130px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:first-child {
    width: unset;
  }
}
.call-whatsapp-book-wrapper .contact-box:first-child a img {
  max-width: 40px;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:first-child a img {
    max-width: 27px;
  }
}
.call-whatsapp-book-wrapper .contact-box:nth-child(2) {
  width: 170px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:nth-child(2) {
    width: unset;
  }
}
.call-whatsapp-book-wrapper .contact-box:nth-child(2) a {
  padding-left: 20px;
}
.call-whatsapp-book-wrapper .contact-box:nth-child(2) a img {
  max-width: 35px;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:nth-child(2) a img {
    max-width: 27px;
  }
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:nth-child(3) {
    width: unset;
  }
}
.call-whatsapp-book-wrapper .contact-box:nth-child(3) a {
  font-weight: 500;
  padding: 15px;
}
.call-whatsapp-book-wrapper .contact-box:nth-child(3) a img {
  max-width: 23px;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box:nth-child(3) a img {
    max-width: 20px;
  }
}
.call-whatsapp-book-wrapper .contact-box a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: center;
  background-color: white;
  border-radius: 32px;
  padding: 10px 15px;
  color: #3C705E;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
  -webkit-box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
  -moz-box-shadow: 0px 3px 11px 0px rgba(50, 87, 72, 0.2);
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box a {
    justify-content: center;
    gap: 0;
    width: 42px;
    height: 42px;
  }
}
.call-whatsapp-book-wrapper .contact-box a .left-box p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .call-whatsapp-book-wrapper .contact-box a .left-box p {
    display: none;
  }
}
.cutoff-text {
  --max-lines: 9;
  --line-height: 1.4;
  max-height: calc(var(--max-lines) * 1em * var(--line-height));
  line-height: var(--line-height);
  overflow: hidden;
  position: relative;
}
.cutoff-text:has(+ .expand-btn:not(:checked))::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(0.3em * var(--line-height));
  pointer-events: none;
  background-color: white;
}
@media (max-width: 991px) {
  .cutoff-text:has(+ .expand-btn:not(:checked))::before {
    height: calc(0.6em * var(--line-height));
  }
}
@media (max-width: 575px) {
  .cutoff-text:has(+ .expand-btn:not(:checked))::before {
    height: calc(0.7em * var(--line-height));
  }
}
.cutoff-text:has(+ .expand-btn:checked) {
  max-height: none;
}

.expands-btn {
  margin-top: 5px;
  cursor: pointer;
  background-color: #3C705E;
  color: white;
  font-size: 16px;
  padding: 2px 15px;
  border-radius: 21px;
  border: 1px solid #3C705E;
}
.expands-btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.scroll-play-video .video-container {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .scroll-play-video .video-container {
    border-radius: 20px;
  }
}
.scroll-play-video .video-container video {
  width: 100%;
  height: 100%;
  border-radius: 34px;
}
@media (max-width: 1199px) {
  .scroll-play-video .video-container video {
    border-radius: 20px;
  }
}
.scroll-play-video .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: none;
  cursor: pointer;
  display: none;
}
@media (max-width: 1199px) {
  .scroll-play-video .play-button-overlay {
    display: none;
  }
}
.scroll-play-video .play-button-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.scroll-play-video .play-button-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #008080;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .scroll-play-video .play-button-icon {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
}
.scroll-play-video .play-button-icon i {
  color: #008080;
  font-size: 30px;
  margin-left: 5px;
}
@media (max-width: 1199px) {
  .scroll-play-video .play-button-icon i {
    font-size: 16px;
    margin-left: 4px;
  }
}

.banner-section {
  padding-top: 96px;
}
@media (max-width: 991px) {
  .banner-section {
    padding-top: 90px;
  }
}
.banner-section .banner-image-wrapper img {
  width: 100%;
}
.courses-section {
  background-color: #F5FAFA;
}
.courses-section .tab-section-wrapper .tab-button-wrapper {
  background-color: #E1F0E9;
  padding-bottom: 30px;
}
.courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner {
    max-width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
  margin-bottom: 0;
  background-color: white;
  padding: 7px;
  border-radius: 44px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  max-width: 487px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
    max-width: 317px;
  }
}
.courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
  border-radius: 37px;
  padding: 22px 35px;
  transition: 0.3s ease-in-out;
}
.courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link:hover {
  background-color: #3C705E;
  color: white;
  box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -webkit-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -moz-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .active {
  background-color: #3C705E;
  color: white;
  box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -webkit-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -moz-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner {
    max-width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .breadcrubm-wrapper {
  padding: 15px 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .breadcrubm-wrapper h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  color: #3C705E;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .breadcrubm-wrapper h6 {
    font-size: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper {
    gap: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
  width: 20px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
    width: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .total-hours-wrapper h6 {
    font-size: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  gap: 28px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content {
  width: calc(100% - 400px);
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content {
    width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content p {
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .left-side-content p span {
  font-weight: bold;
  display: block;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box {
  width: 372px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box {
    width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box {
  background-color: #E1F0E9;
  border-radius: 37px;
  padding: 20px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box {
    border-radius: 24px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box {
    padding: 20px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box h5 {
  color: #3C705E;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box h5 {
    font-size: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box p {
  font-size: 18px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box p {
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box .link-wrapper a {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 27px;
  background-color: white;
  padding: 13px 10px;
  font-size: 24px;
  font-weight: 400;
  color: #3C705E;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box .link-wrapper a:hover {
  color: white;
  background-color: #3C705E;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box .link-wrapper a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box .link-wrapper a {
    font-size: 18px;
    padding: 8px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .content-para .right-side-box .inner-box .complementary-active a {
  background-color: #3C705E;
  color: white;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  gap: 28px;
  align-items: end;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper {
  background-color: #3C705E;
  padding: 5px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper {
    width: 48px;
    height: 48px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper img {
  width: 30px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper img {
    width: 26px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper .icon-wrapper img {
    width: 24px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper h5 {
  margin-bottom: 0;
  color: #3D6253;
  font-size: 38px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper h5 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content .icon-text-wrapper h5 {
    font-size: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content p {
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .left-side-content p span {
  font-weight: bold;
  display: block;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box {
  width: 372px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box {
    width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box {
  background-color: #E1F0E9;
  border-radius: 37px;
  padding: 20px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box {
    border-radius: 24px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box {
    padding: 20px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box h5 {
  color: #3C705E;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box h5 {
    font-size: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box p {
  font-size: 18px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box p {
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box .link-wrapper a {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 27px;
  background-color: white;
  padding: 13px 10px;
  font-size: 24px;
  font-weight: 400;
  color: #3C705E;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box .link-wrapper a:hover {
  color: white;
  background-color: #3C705E;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box .link-wrapper a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box .link-wrapper a {
    font-size: 18px;
    padding: 8px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .therapist-content-para .right-side-box .inner-box .complementary-active a {
  background-color: #3C705E;
  color: white;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .middle-text-wrapper {
  padding: 20px;
  background-color: #E1F0E9;
  border-radius: 22px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .middle-text-wrapper {
    padding: 20px 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .middle-text-wrapper p {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
  color: black;
  line-height: 38px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .middle-text-wrapper p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .overview-content .overview-inner .middle-text-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content {
  margin-top: 30px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner {
    max-width: 100%;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper {
  margin-bottom: 30px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #E1F0E9;
  border-radius: 71px;
  padding: 10px;
  gap: 30px;
  max-width: 505px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner {
    justify-content: space-between;
    gap: 10px;
    max-width: 310px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section {
    gap: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section .icon-wrapper {
  background-color: #3C705E;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section .icon-wrapper {
    width: 35px;
    height: 35px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section .icon-wrapper img {
  width: 38px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section .icon-wrapper img {
    width: 18px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section p {
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  color: #364045;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .left-section p {
    font-size: 14px;
    line-height: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .right-price h4 {
  margin-bottom: 0;
  font-size: 41px;
  font-weight: bold;
  color: #364045;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .course-price-wrapper .course-price-inner .right-price h4 {
    font-size: 18px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav {
    width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    margin-bottom: 0;
    padding-bottom: 70px;
    gap: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link {
  min-width: 461px;
  background-color: white;
  border: 3px solid #BFE6D4;
  border-radius: 20px;
  transition: 0s ease-in-out;
  padding: 0;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link {
    min-width: 306px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
  background-color: white;
  padding: 15px;
  z-index: 2;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
    padding: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  background-color: #E1F0E9;
  border-radius: 15px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
    gap: 5px;
    padding-right: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
  background-color: #3C705E;
  width: 68px;
  height: 68px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
  width: 100%;
  max-width: 38px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
    max-width: 28px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
    max-width: 24px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper {
  text-align: left;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #364045;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 14px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
  margin-bottom: 0;
  color: #3C705E;
  font-size: 31px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul {
  margin: 0;
  padding: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #3C705E;
  font-weight: 400;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li {
    font-size: 15px;
    gap: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li img {
  width: 17px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li img {
    width: 15px;
    margin-top: 7px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul .bold-font {
  font-weight: bold;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .active {
  position: relative;
  z-index: 1;
  border-color: #3C705E;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .active::before {
  background-color: #3C705E;
  content: "";
  width: 100%;
  height: calc(100% + 10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 20px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .inner-course-tab-section .nav .nav-item .active::after {
  position: absolute;
  content: "";
  border-top: 18px solid #3C705E;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  width: 36px;
  height: 18px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav {
    width: 100%;
    gap: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item {
  width: 100%;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link {
  width: 100%;
  min-width: 461px;
  background-color: white;
  border: 3px solid #BFE6D4;
  border-radius: 20px;
  transition: 0s ease-in-out;
  padding: 0;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link {
    min-width: 306px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
  background-color: white;
  padding: 15px;
  z-index: 2;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
    gap: 0;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper {
    padding: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background-color: #E1F0E9;
  border-radius: 15px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper {
    gap: 5px;
    padding-right: 10px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
  background-color: #3C705E;
  width: 68px;
  height: 68px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
  width: 100%;
  max-width: 38px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
    max-width: 28px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .icon-wrapper img {
    max-width: 24px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper {
  text-align: left;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #364045;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h6 {
    font-size: 14px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
  margin-bottom: 0;
  color: #3C705E;
  font-size: 31px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-course-price-wrapper .right-title-price-wrapper h4 {
    font-size: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper h5 {
  font-size: 31px;
  font-weight: bold;
  color: #3C705E;
  text-align: left;
  margin-bottom: 2px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper h5 {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper h5 {
    font-size: 18px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 767px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul {
    flex-direction: column;
    gap: 0;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #3C705E;
  font-weight: 400;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li {
    font-size: 15px;
    gap: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li img {
  width: 17px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul li img {
    width: 15px;
    margin-top: 7px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .nav-link .inner-tabs-button-wrapper .icon-title-wrapper ul .bold-font {
  font-weight: bold;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .active {
  position: relative;
  z-index: 1;
  border-color: #3C705E;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .single-course-tab-section .nav .nav-item .active::before {
  background-color: #3C705E;
  content: "";
  width: 100%;
  height: calc(100% + 10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 20px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper {
  padding: 70px 0;
  padding-top: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
  border-color: rgba(0, 0, 0, 0.06);
  border-top: 0px solid transparent !important;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
    min-width: 850px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
  background-color: white;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 15px;
  border-top: 0px solid transparent;
  vertical-align: middle;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 25px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 16px;
    padding: 10px 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  color: #364045;
  padding: 15px;
  vertical-align: middle;
  background-color: white;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 25px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:first-child a {
  margin-left: -10px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:first-child a {
    margin-left: -5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 15px;
    padding: 10px 5px;
    line-height: 25px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
  text-align: left;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:first-child a {
  border-radius: 9px;
  text-align: left;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
  background-color: #E1F0E9;
  text-decoration: none;
  border-radius: 32px;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 13px 24px;
  display: block;
  max-width: 275px;
  text-align: center;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
    font-size: 16px;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
  margin-left: 10px;
  width: 23px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
    width: 16px;
    height: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper {
    flex-direction: column;
    align-items: unset;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check {
  display: flex;
  align-items: center;
  padding: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check label {
  user-select: none;
  text-align: left;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input {
  margin-right: 10px;
  margin-left: 0;
  border-color: #C7C7C7;
  border-width: 2px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  transition: 0.3s ease-in-out;
  min-width: 20px;
  min-height: 20px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 700;
  font-size: 0px;
  color: white;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input:focus {
  box-shadow: none;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked {
  background-color: #3C705E;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox] {
  border-color: #3C705E;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox]::after {
  opacity: 1;
  font-size: 16px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:first-child .left-right-inner-wrapper {
  flex-direction: row;
  align-items: center;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper .table-bordered > :not(caption) > * > * {
  border-width: 2px 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper .table-bordered > :not(caption) > * {
  border-width: 0 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price {
  background-color: white;
  border-radius: 10px;
  max-width: 780px;
  margin-left: auto;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price {
    padding: 20px 8px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box {
    gap: 9px;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
  margin-bottom: 0;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
    font-size: 16px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
    font-size: 15px;
    font-weight: 500;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  text-align: right;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
    font-size: 16px;
    display: flex;
    justify-content: end;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
    font-size: 15px;
    font-weight: 500;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .discount h5 {
  color: #059D57;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .discount h6 {
  color: #059D57;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper {
    margin-top: 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn {
  width: 100%;
  border-radius: 43px;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  color: white;
  font-size: 24px;
  font-weight: 400;
  padding: 12px 15px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn img {
  max-width: 40px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn img {
    max-width: 28px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn:hover {
  opacity: 0.9;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item {
  border: none;
  margin-bottom: 30px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #E1F0E9;
  border-radius: 37px;
  font-size: 24px;
  font-weight: bold;
  color: #364045;
  text-transform: uppercase;
  padding: 22px 25px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\e5cf";
  font-family: "Material Icons";
  font-weight: 100 !important;
  background-image: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3A6A59;
  font-size: 36px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-header .accordion-button::after {
    font-size: 28px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body {
  background-color: rgba(225, 240, 233, 0.34);
  border-radius: 37px;
  border: none;
  padding: 32px 35px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body {
    padding: 15px 12px;
    border-radius: 20px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper {
    gap: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper .clock-wrapper img {
  width: 20px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper .clock-wrapper img {
    width: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .total-hours-wrapper h6 {
    font-size: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .content-para p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .content-para p span {
  font-weight: bold;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .link-wrapper {
  margin-top: 30px;
  text-align: center;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .accordion .accordion-item .accordion-body .overview-inner .link-wrapper a {
  border-radius: 32px;
  background-color: #3C705E;
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 500;
  display: block;
  max-width: 149px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  padding: 9px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .image-wrapper {
  border-radius: 31px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 330px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .image-wrapper {
    height: 220px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box h6 {
  color: #3D6253;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box h6 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box h6 {
    font-size: 18px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box ul {
  margin: 0;
  padding: 0;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #3C705E;
  font-weight: 600;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box ul li {
    font-size: 15px;
    gap: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box ul li img {
  width: 17px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box ul li img {
    width: 15px;
    margin-top: 7px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .course-details-para {
  margin-top: 10px;
  margin-bottom: 20px;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .course-details-para p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .course-details-para p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .course-details-para p {
    line-height: 26px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #3C705E;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  background-color: #BFE6D4;
  border-radius: 27px;
  padding: 14px 12px;
  transition: 0.3s ease-in-out;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a:hover {
  background-color: #3D6253;
  color: white;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a {
    font-size: 16px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a span {
  font-size: 28px;
}
@media (max-width: 1750px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a span {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane .courses-content .courses-bottom-content .courses-bottom-inner .therapist-couses-wrapper .therapist-course-box .link-wrapper a span {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
    min-width: 850px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
  padding-left: 25px;
}
@media (max-width: 991px) {
  .courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
    padding-left: 5px;
  }
}
.courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) .left-right-inner-wrapper .left-wrapper {
  width: 100%;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) .left-right-inner-wrapper .left-wrapper .form-check {
  justify-content: space-between;
}
.courses-section .tab-section-wrapper .tab-content .tab-pane:last-child .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:last-child {
  font-weight: 400;
}

.cut-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  transition: max-height 0.3s ease;
}

.cut-text.expanded {
  -webkit-line-clamp: unset;
}

.read-more-btn {
  color: #007BFF;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  margin-top: 8px;
}

.trichology-courses .icon-title-wrapper {
  background-color: #E1F0E9;
  padding-top: 30px;
  padding-bottom: 30px;
}
.trichology-courses .icon-title-wrapper .title-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1799px) {
  .trichology-courses .icon-title-wrapper .title-inner {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .trichology-courses .icon-title-wrapper .title-inner {
    gap: 9px;
  }
}
.trichology-courses .icon-title-wrapper .title-inner .left-icon .icon-wrapper {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: white;
  border: 4px solid #E1F0E9;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1699px) {
  .trichology-courses .icon-title-wrapper .title-inner .left-icon .icon-wrapper {
    width: 40px;
    height: 40px;
  }
}
.trichology-courses .icon-title-wrapper .title-inner .left-icon .icon-wrapper img {
  width: 30px;
}
@media (max-width: 1699px) {
  .trichology-courses .icon-title-wrapper .title-inner .left-icon .icon-wrapper img {
    width: 18px;
  }
}
.trichology-courses .icon-title-wrapper .title-inner h5 {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: bold;
  color: #3D6253;
}
@media (max-width: 1699px) {
  .trichology-courses .icon-title-wrapper .title-inner h5 {
    font-size: 24px;
  }
}
.trichology-courses .overview-content {
  background-color: #E1F0E9;
  padding-bottom: 30px;
}
.trichology-courses .overview-content .overview-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .trichology-courses .overview-content .overview-inner {
    max-width: 100%;
  }
}
.trichology-courses .overview-content .overview-inner .total-hours-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .trichology-courses .overview-content .overview-inner .total-hours-wrapper {
    gap: 5px;
  }
}
.trichology-courses .overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
  width: 20px;
}
@media (max-width: 1699px) {
  .trichology-courses .overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
    width: 16px;
  }
}
.trichology-courses .overview-content .overview-inner .total-hours-wrapper h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1699px) {
  .trichology-courses .overview-content .overview-inner .total-hours-wrapper h6 {
    font-size: 16px;
  }
}
.trichology-courses .overview-content .overview-inner .content-para p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1699px) {
  .trichology-courses .overview-content .overview-inner .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.trichology-courses .overview-content .overview-inner .content-para p span {
  font-weight: bold;
}
.trichology-courses .tab-section-wrapper {
  margin-top: 30px;
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper {
    max-width: 100%;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
  gap: 30px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
    width: 100%;
    display: flex;
    flex-direction: row !important;
    flex-wrap: unset;
    gap: 10px;
    padding-bottom: 30px;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item {
    width: 100%;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
  position: relative;
  z-index: 1;
  background-color: #E1F0E9;
  border-radius: 71px;
  padding: 10px 11px;
  padding-right: 30px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    width: 100%;
    padding-right: 10px;
    min-width: 310px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link::after {
  transition: 0.1s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 36px;
  height: 36px;
  background-color: #BFE6D4;
  content: "";
  z-index: -1;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link::after {
    width: 20px;
    height: 20px;
    bottom: -10px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .icon-wrapper {
    text-align: center;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .icon-wrapper .icon {
  background-color: #3C705E;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .icon-wrapper .icon {
    width: 35px;
    height: 35px;
    margin-left: auto;
    margin-right: auto;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .icon-wrapper .icon img {
  width: 38px;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .icon-wrapper .icon img {
    width: 18px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .course-name {
  min-width: 197px;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  color: #364045;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .course-name {
    min-width: unset;
    font-size: 14px;
    line-height: 20px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .price-box {
  font-size: 41px;
  font-weight: bold;
  color: #364045;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .price-box {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link .inner-button-wrapper .price-box {
    margin-left: auto;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link:hover {
  background-color: #BFE6D4;
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .active {
  background-color: #BFE6D4;
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .active::after {
  opacity: 1;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper {
    display: none;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn {
  border-radius: 43px;
  background-color: #3C705E;
  color: white;
  font-size: 32px;
  font-weight: 400;
  padding: 20px 25px 20px 15px;
  border: none;
  width: 100%;
  max-width: 368px;
  transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn:hover {
  background-color: #3D6253;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn {
    font-size: 16px;
    padding: 10px 20px;
    max-width: 200px;
  }
}
.trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn img {
  max-width: 40px;
  margin-left: 30px;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn img {
    max-width: 20px;
    margin-left: 9px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content {
  padding-bottom: 70px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner {
    max-width: 100%;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .data-tooltip p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .data-tooltip p {
    font-size: 18px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
  border-color: rgba(112, 112, 112, 0.23);
  border-top: 0px solid transparent !important;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
    min-width: 750px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
  background-color: #E1F0E9;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 15px;
  border-top: 0px solid transparent;
  vertical-align: middle;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 16px;
    padding: 10px 5px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th:nth-child(even) {
  background-color: rgba(225, 240, 233, 0.5);
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  color: #364045;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 15px;
    padding: 10px 5px;
    line-height: 25px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
    padding-left: 5px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:last-child {
  font-weight: bold;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
  background-color: #E1F0E9;
  text-decoration: none;
  border-radius: 29px;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 13px 24px;
  display: block;
  max-width: 275px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
    font-size: 16px;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
  margin-left: 10px;
  width: 23px;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
    width: 16px;
    height: 16px;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check {
  display: flex;
  align-items: center;
  padding: 0;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check label {
  user-select: none;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input {
  float: right;
  margin-left: 10px;
  border-color: #C7C7C7;
  border-width: 2px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  transition: 0.3s ease-in-out;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 700;
  font-size: 0px;
  color: #04BA52;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input:focus {
  box-shadow: none;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked {
  background-color: transparent;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox] {
  border-color: #04BA52;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox]::after {
  opacity: 1;
  font-size: 16px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper .table-bordered > :not(caption) > * > * {
  border-width: 2px 2px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
  margin-left: auto;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
  margin-bottom: 0;
  background-color: #E1F0E9;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  text-align: center;
  padding: 18px 15px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
  margin-bottom: 0;
  background-color: rgba(225, 240, 233, 0.5);
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  text-align: center;
  padding: 18px 15px;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper {
  text-align: right;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper {
    margin-top: 1rem;
  }
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn {
  border-radius: 32px;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 18px 45px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}
@media (max-width: 1699px) {
  .trichology-courses .tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.foundation-overview-content {
  padding-bottom: 30px;
  padding-top: 30px;
}
.foundation-overview-content .overview-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .foundation-overview-content .overview-inner {
    max-width: 100%;
  }
}
.foundation-overview-content .overview-inner .total-hours-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.foundation-overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
  width: 20px;
}
@media (max-width: 1699px) {
  .foundation-overview-content .overview-inner .total-hours-wrapper .clock-wrapper img {
    width: 16px;
  }
}
.foundation-overview-content .overview-inner .total-hours-wrapper h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1699px) {
  .foundation-overview-content .overview-inner .total-hours-wrapper h6 {
    font-size: 16px;
  }
}
.foundation-overview-content .overview-inner .content-para p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: #1B312B;
}
@media (max-width: 1699px) {
  .foundation-overview-content .overview-inner .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.foundation-overview-content .overview-inner .content-para p span {
  font-weight: bold;
}

.foundation-tab-section-wrapper {
  margin-top: 30px;
}
.foundation-tab-section-wrapper .tab-button-wrapper {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .foundation-tab-section-wrapper .tab-button-wrapper {
    max-width: 100%;
  }
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 30px;
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
  gap: 30px;
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav {
    width: 100%;
    gap: 10px;
    flex-direction: row !important;
    flex-wrap: unset;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item {
    width: 100%;
  }
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
  position: relative;
  z-index: 1;
  background-color: #E1F0E9;
  border-radius: 71px;
  padding: 17px 30px;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  transition: 0.3s ease-in-out;
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link:hover {
  background-color: #BFE6D4;
}
@media (max-width: 1699px) {
  .foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
  }
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link img {
  margin-left: 20px;
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .active {
  background-color: #BFE6D4;
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn {
  border-radius: 43px;
  background-color: #3C705E;
  color: white;
  font-size: 32px;
  font-weight: 400;
  padding: 20px 25px 20px 15px;
  border: none;
  width: 100%;
  max-width: 368px;
}
.foundation-tab-section-wrapper .tab-button-wrapper .tab-button-inner .right-add-to-cart-wrapper .submit_btn img {
  max-width: 40px;
  margin-left: 30px;
}
.foundation-tab-section-wrapper .tab-content {
  padding-bottom: 70px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner {
    max-width: 100%;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .data-tooltip p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner .data-tooltip p {
    font-size: 18px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
  border-color: rgba(112, 112, 112, 0.23);
  border-top: 0px solid transparent !important;
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
    min-width: 750px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
  background-color: #E1F0E9;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 15px;
  border-top: 0px solid transparent;
  vertical-align: middle;
}
@media (max-width: 1699px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 16px;
    padding: 10px 5px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th:nth-child(even) {
  background-color: rgba(225, 240, 233, 0.5);
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  color: #364045;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 1699px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    font-size: 15px;
    padding: 10px 5px;
    line-height: 25px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
    padding-left: 5px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
  background-color: #E1F0E9;
  text-decoration: none;
  border-radius: 29px;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  padding: 13px 24px;
  display: block;
  max-width: 275px;
}
@media (max-width: 1699px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
  margin-left: 10px;
  width: 23px;
}
@media (max-width: 1699px) {
  .foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td a img {
    width: 16px;
    height: 16px;
  }
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check {
  display: flex;
  align-items: center;
  padding: 0;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check label {
  user-select: none;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input {
  float: right;
  margin-left: 10px;
  border-color: #C7C7C7;
  border-width: 2px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  transition: 0.3s ease-in-out;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 700;
  font-size: 0px;
  color: #04BA52;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check input:focus {
  box-shadow: none;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked {
  background-color: transparent;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox] {
  border-color: #04BA52;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td .left-right-outer-wrapper .left-right-inner-wrapper .form-check .form-check-input:checked[type=checkbox]::after {
  opacity: 1;
  font-size: 16px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper .table-bordered > :not(caption) > * > * {
  border-width: 2px 2px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
  margin-left: auto;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h5 {
  margin-bottom: 0;
  background-color: #E1F0E9;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  text-align: center;
  padding: 18px 15px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .bottom-details-price .price-box h6 {
  margin-bottom: 0;
  background-color: rgba(225, 240, 233, 0.5);
  font-size: 22px;
  font-weight: bold;
  color: #364045;
  text-align: center;
  padding: 18px 15px;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper {
  text-align: right;
  margin-top: 2rem;
}
.foundation-tab-section-wrapper .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .submit-wrapper .submit_btn {
  border-radius: 32px;
  background-color: #3C705E;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 18px 45px;
  border: none;
  text-transform: uppercase;
}

.login-signup-section-wrapper {
  padding-top: 96px;
}
@media (max-width: 991px) {
  .login-signup-section-wrapper {
    padding-top: 90px;
  }
}
.login-signup-section-wrapper .login-signup-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 250px;
  padding: 70px 0;
}
@media (max-width: 1550px) {
  .login-signup-section-wrapper .login-signup-inner {
    padding: 50px 0px;
  }
}
@media (max-width: 1199px) {
  .login-signup-section-wrapper .login-signup-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 70px;
  }
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .logo-wrapper img {
  max-width: 152px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper {
  background-color: #e1f0e9;
  padding: 72px;
  border-radius: 5px;
  box-shadow: 0px 0px 6.7px 0px rgba(0, 0, 0, 0.1294117647);
}
@media (max-width: 1550px) {
  .login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper {
    padding: 50px 15px;
  }
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .title-wrapper {
  margin-bottom: 30px;
  padding-left: 30px;
}
@media (max-width: 1777px) {
  .login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .title-wrapper {
    padding-left: 0;
  }
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .title-wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .title-wrapper h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .title-wrapper p {
  color: #3a6a59;
  font-weight: 400;
  margin-bottom: 0;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .form-group {
  margin-bottom: 15px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .form-group:nth-child(2) {
  margin-bottom: 5px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #3a6a59;
  user-select: none;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .form-group input {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #3a6a59;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 19px;
  color: #3a6a59;
  font-weight: 400;
  border-radius: 5px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group {
  margin-bottom: 0;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check input {
  width: 13px;
  height: 13px;
  padding: unset;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 500;
  font-size: 0px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check input:focus {
  box-shadow: none;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check .form-check-input:checked {
  background-color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check .form-check-input:checked[type=checkbox]::after {
  opacity: 1;
  font-size: 10px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .left-remember .form-group .form-check label {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.37px;
  color: #3a6a59;
  user-select: none;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .right-forgot a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .remember-forgot-wrapper .right-forgot a:hover {
  text-decoration: underline;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .submit-wrapper {
  margin: 25px 0;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .submit-wrapper button {
  width: 100%;
  text-align: center;
  background-color: #3a6a59;
  border: 1px solid #3a6a59;
  font-size: 18px;
  font-weight: 600;
  color: #e1f0e9;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  padding: 10px 15px;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner form .submit-wrapper button:hover {
  background-color: transparent;
  color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper {
  text-align: center;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
  color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .login-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper p span {
  font-weight: 500;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper {
  background-color: #e1f0e9;
  padding: 72px;
  border-radius: 5px;
  box-shadow: 0px 0px 6.7px 0px rgba(0, 0, 0, 0.1294117647);
}
@media (max-width: 1550px) {
  .login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper {
    padding: 50px 15px;
  }
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .title-wrapper {
  margin-bottom: 30px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .title-wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .title-wrapper h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .title-wrapper p {
  color: #3a6a59;
  font-weight: 400;
  margin-bottom: 0;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .form-group {
  margin-bottom: 15px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #3a6a59;
  user-select: none;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .form-group input {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #3a6a59;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 19px;
  color: #3a6a59;
  font-weight: 400;
  border-radius: 5px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .form-group select {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #3a6a59;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 19px;
  color: #3a6a59;
  font-weight: 400;
  border-radius: 5px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .form-group textarea {
  min-height: 93px;
  resize: none;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #3a6a59;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 19px;
  color: #3a6a59;
  font-weight: 400;
  border-radius: 5px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .submit-wrapper {
  margin: 25px 0 0 0;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .submit-wrapper button {
  width: 100%;
  text-align: center;
  background-color: #3a6a59;
  border: 1px solid #3a6a59;
  font-size: 18px;
  font-weight: 600;
  color: #e1f0e9;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  padding: 10px 15px;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner form .submit-wrapper button:hover {
  background-color: transparent;
  color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper {
  text-align: center;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  font-weight: 400;
  color: #3a6a59;
}
.login-signup-section-wrapper .login-signup-inner .signup-section-wrapper .form-wrapper .form-inner .bottom-text-wrapper p span {
  font-weight: 500;
}

.courses-section-wrapper {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .courses-section-wrapper {
    padding-top: 90px;
  }
}
.courses-section-wrapper .courses-section-inner {
  padding: 0 50px;
}
@media (max-width: 1550px) {
  .courses-section-wrapper .courses-section-inner {
    padding: 0;
  }
}
.courses-section-wrapper .courses-section-inner .title-wrapper {
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .courses-section-wrapper .courses-section-inner .title-wrapper {
    padding-left: 0;
  }
}
.courses-section-wrapper .courses-section-inner .title-wrapper h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #DF6D1B;
  font-weight: 600;
  margin-bottom: 30px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box {
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid;
  border-image-source: radial-gradient(102.1% 102.1% at 17.33% 0%, #FFFFFF 0%, rgba(228, 228, 228, 0.750969) 63.85%, rgba(255, 255, 255, 0.61) 100%);
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box {
    flex-direction: column;
    gap: 30px;
  }
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-image-wrapepr {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 281px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-image-wrapepr .inner-image-border {
  border-radius: 21px;
  border: 5px solid #3a6a59;
  overflow: hidden;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-image-wrapepr .completed-text {
  display: none;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-image-wrapepr .image-wrapper {
  border: 2px solid #b5c7c1;
  border-radius: 16px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-image-wrapepr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: black;
  font-weight: 600;
  margin-bottom: 5px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 5px;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details h6 {
  font-size: 15px;
  color: black;
  font-weight: 500;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details p {
  font-size: 14px;
  font-weight: 500;
  color: black;
  line-height: 19.1px;
  margin-bottom: 12px;
  max-width: 80%;
}
@media (max-width: 1550px) {
  .courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details p {
    max-width: 100%;
  }
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details .date-hours-details h5 {
  color: black;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  flex-direction: row;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .courses-details .date-hours-details h5 span {
  font-weight: 500;
  min-width: 100px;
  display: block;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .receipt-course-button-wrapper {
  min-width: 250px;
  padding-top: 30px;
}
@media (max-width: 1024px) {
  .courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .receipt-course-button-wrapper {
    padding-top: 0;
  }
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .receipt-course-button-wrapper a {
  display: block;
  text-align: center;
  width: 100%;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #E1F0E9;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 7px 15px;
  margin-bottom: 15px;
  text-decoration: none;
  font-size: 14px;
  color: black;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .receipt-course-button-wrapper a .icon-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 100%;
  background-color: #3a6a59;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .courses-box .receipt-course-button-wrapper a:hover {
  background-color: #3a6a59;
  color: white;
}
.courses-section-wrapper .courses-section-inner .courses-wrapper .completed .courses-image-wrapepr .completed-text {
  display: block;
  margin-bottom: 0;
  background-color: #DF6D1B;
  color: #fff;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-45.12deg) translate(-32%, -150%);
  width: 100%;
}
@media (max-width: 991px) {
  .courses-section-wrapper .courses-section-inner .courses-wrapper .completed .courses-image-wrapepr .completed-text {
    transform: rotate(-45.12deg) translate(-32%, -180%);
  }
}

.courses-top-section {
  background-color: #E1F0E9;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .courses-top-section {
    padding-top: 90px;
  }
}
.courses-top-section .courses-top-inner {
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px) {
  .courses-top-section .courses-top-inner {
    flex-direction: column;
    gap: 15px;
    align-items: unset;
  }
}
.courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper {
  width: 60px;
  height: 60px;
  background-color: white;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1750px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper img {
  width: 30px;
}
@media (max-width: 1750px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper img {
    width: 28px;
  }
}
@media (max-width: 991px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper .image-wrapper img {
    width: 24px;
  }
}
.courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper h5 {
  margin-bottom: 0;
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
}
@media (max-width: 1750px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .courses-top-section .courses-top-inner .left-section .course-icon-title-wrapper h5 {
    font-size: 18px;
  }
}
.courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .tab {
  text-align: center;
  cursor: pointer;
  border: 2px solid #BFE6D4;
  border-radius: 30px;
  background-color: white;
  font-size: 24px;
  font-weight: 400;
  color: #3C705E;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .tab {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .tab {
    font-size: 16px;
    padding: 6px 10px;
  }
}
@media (max-width: 575px) {
  .courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .tab {
    padding: 3px 8px;
  }
}
.courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .tab:hover {
  background-color: #3C705E;
  color: white;
  border-color: #3C705E;
}
.courses-top-section .courses-top-inner .right-section .right-tabs-inner .tabs .active {
  background-color: #3C705E;
  color: white;
  border-color: #3C705E;
}

.courses-bottom-details-section {
  background-color: #F2F7F5;
  padding: 30px 0 100px 0;
}
.courses-bottom-details-section .courses-bottom-details-inner {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner {
    max-width: 90%;
  }
}
@media (max-width: 1299px) {
  .courses-bottom-details-section .courses-bottom-details-inner {
    max-width: 100%;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item {
  background-color: white;
  border-radius: 30px;
  padding: 20px;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item {
    padding: 20px 15px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .image-wrapper {
  width: 296px;
  height: 296px;
  overflow: hidden;
  border-radius: 31px;
}
@media (max-width: 1299px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .image-wrapper {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 575px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .image-wrapper {
    width: 180px;
    height: 180px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section {
  display: none;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section {
    display: block;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section p {
    font-size: 16px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .image-topics-wrapper .mobile-topics-section p:last-child {
  margin-bottom: 5px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  width: calc(100% - 220px);
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details {
    width: 100%;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .top-details h5 {
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .top-details h5 {
    font-size: 22px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .top-details h6 {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #8E8E8E;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .top-details h6 {
    font-size: 18px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .top-details .hours {
  font-size: 14px;
  font-weight: 400;
  color: #3C705E;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .progress-wrapper .complete-progress {
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 2px;
  color: #3C705E;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .progress-wrapper .progress {
  height: 4px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #E1F0E9;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .progress-wrapper .progress .progress-bar {
  background-color: #3C705E;
  border-radius: 34px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .complete-tags span {
  background-color: #3C705E;
  border-radius: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 15px;
  font-size: 15px;
  font-weight: 400;
  color: white;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .complete-tags span {
    font-size: 14px;
    padding: 4px 10px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .complete-tags span img {
  width: 30px;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .complete-tags span img {
    width: 24px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .view-course-wrapper {
  margin-top: 25px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .view-course-wrapper a {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  border-radius: 26px;
  padding: 10px 12px;
  font-size: 22px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .view-course-wrapper a {
    font-size: 18px;
    padding: 8px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .image-details-wrapper .items-details .bottom-details .view-course-wrapper a:hover {
  opacity: 0.7;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper {
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper {
    width: 100%;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section {
  text-align: right;
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section {
    display: none;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section p {
    font-size: 16px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .topics-section p:last-child {
  margin-bottom: 5px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button {
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn {
  background-color: #E1F0E9;
  border: none;
  padding: 8.3px 15px;
  box-shadow: 0px 1px 4.3px 0px #E1F0E9;
  font-size: 16px;
  color: #3A6A59;
  font-weight: 500;
  border-radius: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .name-icon-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .name-icon-wrapper img {
  width: 28px;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .name-icon-wrapper img {
    width: 20px;
    height: 23px;
    margin-top: 4px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .name-icon-wrapper h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn::after {
  display: none;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  margin-left: 12px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .image-wrapper {
  background-color: #E1F0E9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 5px;
}
@media (max-width: 1044px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .image-wrapper {
    margin-left: 0;
    margin-right: 0px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .image-wrapper img {
  width: 20px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .userdetails-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .userdetails-inner .user-image img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button .dropdown-btn .userdetails-inner .user-name h5 {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown button::after {
  display: none;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu {
  background-color: white;
  box-shadow: 0px 1px 4.9px 0px rgba(0, 0, 0, 0.2117647059);
  padding: 0;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
  border: none;
}
@media (max-width: 1044px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu {
    width: auto;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu li a {
  font-size: 13px;
  padding: 3px;
  background-color: white;
  font-weight: 400;
  line-height: 26px;
  color: #3C705E;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu li a img {
  margin-right: 10px;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu li a:hover {
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.1);
  background-color: #f5f6f8;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .dropdown .dropdown-menu li:last-child a {
  border-bottom: 0px solid #ddd;
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .view-receipt-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 26px;
  background-color: #E1F0E9;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  padding: 11px;
}
@media (max-width: 1750px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .view-receipt-btn {
    font-size: 18px;
    padding: 8px;
  }
}
@media (max-width: 991px) {
  .courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .view-receipt-btn {
    font-size: 16px;
  }
}
.courses-bottom-details-section .courses-bottom-details-inner .items .item .items-inner-wrapper .topics-receipt-wrapper .view-receipt-section .view-receipt-btn:hover {
  opacity: 0.8;
}

.chapter-theory-section-wrapper {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper {
    padding-top: 90px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper h2 {
    font-size: 28px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper h2::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background-color: #3a6a59;
  width: 92px;
  height: 3px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper .link-wrapper a {
  display: block;
  text-decoration: none;
  border: 2px solid #3a6a59;
  border-radius: 10px;
  padding: 9px 40px;
  font-size: 20px;
  color: #3a6a59;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper .link-wrapper a {
    font-size: 16px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .top-title-and-link-wrapper .link-wrapper a:hover {
  background-color: #3a6a59;
  color: white;
}
.chapter-theory-section-wrapper .chapter-theory-inner .paragraph-content p {
  font-size: 20px;
  font-weight: 500;
  color: black;
  line-height: 28px;
  max-width: 90%;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .paragraph-content p {
    max-width: 100%;
    font-size: 16px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper {
  margin-bottom: 50px;
  padding: 0 200px;
}
@media (max-width: 1199px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper {
    padding: 0;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner {
  margin: 85px 50px 50px 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner {
    margin: 70px 15px 50px 0;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner::before {
  position: absolute;
  left: 25px;
  top: -25px;
  content: "";
  background-color: #e1f0e9;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner::before {
    left: 15px;
    top: -15px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner a {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner a span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: white;
  font-size: 46px;
  border: 3px solid white;
  border-radius: 50%;
  padding: 7px;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner a span {
    font-size: 30px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner a img {
  width: 100%;
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .video-content-inner a:hover span {
  color: #3a6a59;
  border-color: #3a6a59;
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper {
    justify-content: center;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.48);
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 6px 18px;
  min-width: 111px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper a {
    font-size: 15px;
    min-width: 100px;
    padding: 4px 15px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper a:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper a:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #e1f0e9;
  color: #3a6a59;
}
.chapter-theory-section-wrapper .chapter-theory-inner .video-content-wrapper .previous-next-wrapper a:hover {
  background-color: #e1f0e9;
  color: #3a6a59;
}
.chapter-theory-section-wrapper .chapter-theory-inner .start-exam {
  padding-top: 20px;
  padding-bottom: 30px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .start-exam a {
  padding: 9px 40px;
  text-decoration: none;
  border-radius: 10px;
  background-color: #3a6a59;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #3a6a59;
  color: white;
  transition: 0.3s ease-in-out;
  display: block;
  text-align: center;
  max-width: 221px;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .start-exam a {
    font-size: 16px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .start-exam a:hover {
  background-color: transparent;
  color: #3a6a59;
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
  padding: 5px 10px;
  line-height: 21px;
}
@media (max-width: 991px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a {
    font-size: 15px;
    padding: 5px 10px;
  }
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper a:hover {
  background-color: #e1f0e9;
  color: #3a6a59;
}
.chapter-theory-section-wrapper .chapter-theory-inner .previour-next-wrapper .active {
  background-color: #e1f0e9;
  color: #3a6a59;
}

.empty-cart-section {
  padding: 300px 0;
}
@media (max-width: 991px) {
  .empty-cart-section {
    padding: 200px 0 150px 0;
  }
}
.empty-cart-section .empty-cart-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.empty-cart-section .empty-cart-inner h3 {
  font-size: 32px;
  color: #3a6a59;
  font-weight: 500;
}
@media (max-width: 991px) {
  .empty-cart-section .empty-cart-inner h3 {
    font-size: 28px;
  }
}
.empty-cart-section .empty-cart-inner p {
  font-size: 24px;
  font-weight: 400;
  color: #9f9a9a;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .empty-cart-section .empty-cart-inner p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .empty-cart-section .empty-cart-inner p br {
    display: none;
  }
}

.cart-section-wrapper {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cart-section-wrapper {
    padding-top: 90px;
  }
}
.cart-section-wrapper .cart-section-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container {
    max-width: 100%;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .title-wrapepr h4 {
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .title-wrapepr h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .title-wrapepr h4 {
    font-size: 18px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 1100px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr {
    flex-direction: column;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section {
  width: calc(100% - 530px);
}
@media (max-width: 1100px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section {
    width: 100%;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-count h6 {
  font-size: 25px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-count h6 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-count h6 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper {
  border: 1px solid #BFE6D4;
  border-radius: 25px;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box {
  padding: 20px;
  border-bottom: 1px solid #BFE6D4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 800px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box:last-child {
  border-bottom: 0px solid transparent;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 800px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper {
    flex-direction: column;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .image-box {
  width: 133px;
  height: 133px;
  border-radius: 31px;
  overflow: hidden;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h5 {
  color: black;
  font-size: 25px;
  font: 400;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h5 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h6 {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box h6 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box p {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .name-details-box-wrapper .name-details-box p {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .price-wrapper h5 {
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .price-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .price-wrapper h5 {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .price-wrapper h5 {
    margin-bottom: 0;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .remove {
  font-size: 22px;
  font-weight: 400;
  border: none;
  padding: 0;
  background-color: transparent;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .remove {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .remove {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .remove:focus {
  box-shadow: none;
  outline: none;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .delete {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .delete:focus {
  box-shadow: none;
  outline: none;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .delete i {
  font-size: 30px;
  color: #EF4444;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .delete i {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .left-section .items-wrapper .items-box .price-remove-deletion-wrapper .remove-deletion-wrapper .delete i {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section {
  width: 500px;
}
@media (max-width: 1100px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section {
    width: 100%;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-title-wrapper h6 {
  font-size: 25px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-title-wrapper h6 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-title-wrapper h6 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper {
  background-color: #E1F0E9;
  border-radius: 27px;
  padding: 30px;
}
@media (max-width: 800px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper {
    padding: 20px 15px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h5 {
  font-size: 25px;
  font-weight: 400;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h5 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h6 {
  font-size: 25px;
  font-weight: 700;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h6 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper h6 {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .checkout-button-wrapper .checkout_btn {
  width: 100%;
  background-color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 15px 12px;
  border: 1px solid #3C705E;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .checkout-button-wrapper .checkout_btn {
    font-size: 20px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .checkout-button-wrapper .checkout_btn {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .checkout-button-wrapper .checkout_btn:hover {
  color: #3C705E;
  background-color: transparent;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check {
  text-align: left;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check input {
  border: 1px solid #3C705E;
  width: 17px;
  height: 17px;
  margin-top: 6px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check input {
    width: 16px;
    height: 16px;
    margin-top: 7px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check input {
    width: 14px;
    height: 14px;
    margin-top: 8px;
  }
}
@media (max-width: 431px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check input {
    margin-top: 4px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check input:focus {
  box-shadow: none;
  outline: none;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check .form-check-input:checked {
  background-color: #3C705E;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check label {
  text-align: left;
  user-select: none;
  font-size: 14px;
  font-weight: 400;
  color: #3C705E;
  line-height: 22px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .order-details-box-wrapper .form-check label {
    font-size: 13px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .checkout-button-wrapper {
  margin-top: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .checkout-button-wrapper .checkout_btn {
  width: 100%;
  background-color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 15px 12px;
  border: 1px solid #3C705E;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .checkout-button-wrapper .checkout_btn {
    font-size: 20px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .checkout-button-wrapper .checkout_btn {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .cart-inner-wrapepr .right-section .checkout-button-wrapper .checkout_btn:hover {
  color: #3C705E;
  background-color: transparent;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper {
  margin-top: 50px;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .title-wrapepr h4 {
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .title-wrapepr h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .title-wrapepr h4 {
    font-size: 18px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper h5 {
  font-size: 28px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper h5 {
    font-size: 18px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .margin_top {
  margin-top: 30px;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group {
  margin-bottom: 15px;
  position: relative;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group label {
  text-align: left;
  display: block;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group label {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group input {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 45px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group input {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group input {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group input:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group textarea {
  background-color: #F7F7F7;
  border-radius: 23px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 45px;
  resize: none;
  height: 150px;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group textarea {
    font-size: 18px;
    height: 120px;
  }
}
@media (max-width: 1399px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group textarea {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group textarea {
    font-size: 16px;
    height: 100px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .form-group textarea:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .checkout-button-wrapper {
  margin-top: 30px;
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .checkout-button-wrapper .checkout_btn {
  width: 100%;
  background-color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 14.5px 12px;
  border: 1px solid #3C705E;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .checkout-button-wrapper .checkout_btn {
    font-size: 20px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .checkout-button-wrapper .checkout_btn {
    font-size: 16px;
  }
}
.cart-section-wrapper .cart-section-inner-container .cart-section-inner .billing-details-wrapper .personal-details-wrapper .checkout-button-wrapper .checkout_btn:hover {
  color: #3C705E;
  background-color: transparent;
}
.cart-section-wrapper .cart-section-inner .title-wrapper h2 {
  text-transform: uppercase;
  color: #3a6a59;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 50px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper {
  padding: 0 45px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper {
    padding: 0;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-right: 170px;
  padding-left: 125px;
  border-bottom: 1px solid rgb(195, 191, 191);
}
@media (max-width: 1199px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .title-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .title-wrapper h4 {
  font-size: 20px;
  color: black;
  font-weight: 500;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .title-wrapper h4:last-child {
    display: none;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
  border-bottom: 1px solid rgb(195, 191, 191);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper {
    gap: 20px;
    align-items: unset;
    flex-direction: column;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper:last-child {
  border-bottom: 0px solid transparent;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner {
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-image-wrapepr {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-image-wrapepr .inner-image-border {
  border-radius: 21px;
  border: 5px solid #3a6a59;
  overflow: hidden;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-image-wrapepr .completed-text {
  display: none;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-image-wrapepr .image-wrapper {
  border: 2px solid #b5c7c1;
  border-radius: 16px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-image-wrapepr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: black;
  font-weight: 600;
  margin-bottom: 5px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 5px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details h6 {
  font-size: 15px;
  color: black;
  font-weight: 500;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details p {
  font-size: 14px;
  font-weight: 500;
  color: black;
  line-height: 19.1px;
  margin-bottom: 12px;
  max-width: 65%;
}
@media (max-width: 1550px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details p {
    max-width: 100%;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details .date-hours-details h5 {
  color: black;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  flex-direction: row;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .cart-item .cart-item-inner .courses-details .date-hours-details h5 span {
  font-weight: 500;
  min-width: 100px;
  display: block;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn {
    gap: 10px;
    justify-content: space-between;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn h3 {
  margin-bottom: 0;
  font-size: 24px;
  color: black;
  font-weight: 500;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn h3 {
    font-size: 20px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn .delete {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(248, 37, 37, 0.29);
  border: 1px solid rgba(248, 37, 37, 0.29);
  color: rgb(255, 0, 0);
  font-size: 22px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn .delete {
    font-size: 18px;
    width: 36px;
    height: 36px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper .cart-table .table-wrapper .total-and-delete-btn .price-and-delete-btn .delete:hover {
  background-color: transparent;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price {
  max-width: 450px;
  margin-left: auto;
  padding: 20px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price {
    padding: 15px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price p {
  color: black;
  font-weight: 500;
  margin-bottom: 8px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form input {
  width: 100%;
  border: none;
  background-color: #e4f3ec;
  color: #3a6a59;
  padding: 11px 15px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form input:focus {
  box-shadow: none;
  outline: none;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form button {
  color: black;
  font-size: 20px;
  font-weight: 500;
  background-color: white;
  border: none;
  outline: none;
  padding-left: 15px;
  padding-right: 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form button {
    font-size: 17px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .coupon-form button:hover {
  background-color: #3a6a59;
  color: white;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .price-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .price-box h5 {
  font-size: 16px;
  color: black;
  font-weight: 500;
  margin-bottom: 0;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .price-box h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .price-box h6 {
    font-size: 18px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .total {
  border-top: 1px solid #c3bfbf;
  padding-top: 15px;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .total h5 {
  font-size: 20px;
}
@media (max-width: 991px) {
  .cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .total h5 {
    font-size: 18px;
  }
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .submit-wrapper .submit_btn {
  width: 100%;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  color: #e1f0e9;
  background-color: #3a6a59;
  border: 1px solid #3a6a59;
  padding: 14px 15px;
  transition: 0.3s ease-in-out;
}
.cart-section-wrapper .cart-section-inner .cart-table-wrapper form .bottom-details-price .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3a6a59;
}

.related-checkout-section-wrapper {
  margin-bottom: 50px;
}
.related-checkout-section-wrapper .related-checkout-section-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container {
    max-width: 100%;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .title-wrapper h5 {
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .title-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .title-wrapper h5 {
    font-size: 18px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box {
  border: 1px solid #BFE6D4;
  border-radius: 25px;
  padding: 15px;
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .image-wrapper {
  border-radius: 31px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 230px;
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .image-wrapper {
    height: 210px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h5 {
  color: black;
  font-size: 25px;
  font: 400;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h5 {
    font-size: 16px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h6 {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box h6 {
    font-size: 16px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box p {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box p {
    font-size: 16px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper h6 {
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 0px;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper h6 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper h6 {
    font-size: 18px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper .addtocart_btn {
  background-color: #3C705E;
  border: 1px solid #3C705E;
  border-radius: 43px;
  padding: 7px 15px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper .addtocart_btn {
    font-size: 18px;
    padding: 5px 10px;
  }
}
@media (max-width: 991px) {
  .related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper .addtocart_btn {
    font-size: 16px;
    padding: 2px 10px;
  }
}
.related-checkout-section-wrapper .related-checkout-section-inner-container .related-checkout-section-inner .related-box-wrapper .related-box .price-addtocart-wrapper .addtocart_btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.selection-section-wrapper {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .selection-section-wrapper {
    padding-top: 90px;
  }
}
.selection-section-wrapper .selection-section-inner {
  padding: 0 150px;
}
@media (max-width: 1199px) {
  .selection-section-wrapper .selection-section-inner {
    padding: 0;
  }
}
.selection-section-wrapper .selection-section-inner .title-wrapper {
  margin-bottom: 50px;
}
.selection-section-wrapper .selection-section-inner .title-wrapper h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .title-wrapper h2 {
    font-size: 28px;
  }
}
.selection-section-wrapper .selection-section-inner .title-wrapper h2::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background-color: #3a6a59;
  width: 92px;
  height: 3px;
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left p {
  color: black;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check {
    margin-bottom: 8px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check input {
  border: 2px solid black;
  position: relative;
  z-index: 1;
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 900;
  font-size: 0px;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check label {
  user-select: none;
  color: black;
  font-size: 20px;
  font-weight: 500;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check label {
    font-size: 16px;
    margin-left: 8px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input[type=radio] {
  border-radius: 0;
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input[type=radio] {
    width: 20px;
    height: 20px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input[type=radio]:focus {
  box-shadow: none;
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input:checked[type=radio] {
  background-image: none;
  background-color: transparent;
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input:checked[type=radio]::after {
  opacity: 1;
  font-size: 17px;
  color: black;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .selection-left .selection-wrapper .form-check-input:checked[type=radio]::after {
    font-size: 15px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .next-right a {
  text-transform: uppercase;
  border: 2px solid black;
  display: block;
  text-align: center;
  padding: 7px 50px;
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .next-right a {
    font-size: 16px;
    padding: 5px 40px;
  }
}
.selection-section-wrapper .selection-section-inner .selection-inner-next-wrapper .next-right a:hover {
  background-color: #3a6a59;
  border-color: #3a6a59;
  color: white;
}
.selection-section-wrapper .selection-section-inner .go-back-course-btn-wrapper a {
  display: block;
  border-radius: 10px;
  border: 2px solid #3a6a59;
  text-align: center;
  text-decoration: none;
  max-width: 250px;
  padding: 7px 10px;
  color: #3a6a59;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .selection-section-wrapper .selection-section-inner .go-back-course-btn-wrapper a {
    font-size: 16px;
    max-width: 100%;
  }
}
.selection-section-wrapper .selection-section-inner .go-back-course-btn-wrapper a:hover {
  background-color: #3a6a59;
  color: white;
}

.success-section-wrapper {
  padding: 196px 0 100px 0;
}
@media (max-width: 991px) {
  .success-section-wrapper {
    padding: 150px 0 70px 0;
  }
}
.success-section-wrapper .success-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.success-section-wrapper .success-inner .success-icon {
  max-width: 150px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner .success-icon {
    max-width: 90px;
    margin-bottom: 15px;
  }
}
.success-section-wrapper .success-inner .success-icon img {
  width: 100%;
}
.success-section-wrapper .success-inner h3 {
  font-weight: 500;
  color: #3a6a59;
  font-size: 32px;
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner h3 {
    font-size: 28px;
  }
}
.success-section-wrapper .success-inner p {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: #9f9a9a;
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner p {
    font-size: 17px;
    line-height: 26px;
  }
}
.success-section-wrapper .success-inner p .mobile-break {
  display: none;
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner p .mobile-break {
    display: block;
  }
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner p .desktop-break {
    display: none;
  }
}
.success-section-wrapper .success-inner h2 {
  color: #1f1f1f;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .success-section-wrapper .success-inner h2 {
    font-size: 23px;
    margin-bottom: 35px;
  }
}
.success-section-wrapper .success-inner .download-continue-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.success-section-wrapper .success-inner .download-continue-wrapper button {
  background-color: #3a6a59;
  border: 1px solid #3a6a59;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 5px 65px;
  color: white;
  transition: 0.3s ease-in-out;
}
.success-section-wrapper .success-inner .download-continue-wrapper button:hover {
  background-color: transparent;
  color: #3a6a59;
}
.success-section-wrapper .success-inner .download-continue-wrapper a {
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  display: block;
  max-width: 137px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: black;
  padding: 5px 35px;
  transition: 0.3s ease-in-out;
}
.success-section-wrapper .success-inner .download-continue-wrapper a:hover {
  background-color: #3a6a59;
  border-color: #3a6a59;
  color: white;
}

.checkout-section-wrapper {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper {
    padding-top: 90px;
  }
}
.checkout-section-wrapper .checkout-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
}
@media (max-width: 1499px) {
  .checkout-section-wrapper .checkout-inner {
    gap: 30px;
    grid-template-columns: 1.2fr 0.8fr;
  }
}
@media (max-width: 1199px) {
  .checkout-section-wrapper .checkout-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .checkout-section-wrapper .checkout-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .title-wrapper h3 {
  color: black;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section {
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  padding-bottom: 12px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section {
    padding: 15px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section .title-wrapper h4 {
  font-size: 20px;
  color: black;
  font-weight: 500;
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section .form-group {
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section .form-group label {
  font-size: 15px;
  color: black;
  font-weight: 500;
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section .form-group input {
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  font-size: 15px;
  color: black;
}
.checkout-section-wrapper .checkout-inner .checkout-left .billing-details-section .form-group textarea {
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  resize: none;
  font-size: 15px;
  color: black;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details {
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  background-color: #fcfcfc;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details {
    padding: 15px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .title-wrapper h4 {
  font-size: 20px;
  color: black;
  font-weight: 500;
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .payment-method-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .payment-method-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  padding: 3px 10px;
  min-width: 90px;
  transition: 0.3s ease-in-out;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .payment-method-wrapper a:hover {
  border-color: #3a6a59;
  background-color: #e1f0e9;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .payment-method-wrapper .active {
  border-color: #3a6a59;
  background-color: #e1f0e9;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .form-group {
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .form-group label {
  font-size: 15px;
  color: black;
  font-weight: 500;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .form-group input {
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  font-size: 15px;
  color: black;
  max-width: 50%;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details .form-group input {
    max-width: 100%;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .card-number-group .inner-wrapper {
  position: relative;
  z-index: 1;
  max-width: 60%;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details .card-number-group .inner-wrapper {
    max-width: 100%;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .card-number-group .inner-wrapper input {
  max-width: 100%;
  padding-right: 65px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .card-number-group .inner-wrapper img {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 45px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .expiration-cvv-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details .expiration-cvv-wrapper {
    gap: 15px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .expiration-cvv-wrapper input {
  max-width: 100%;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper a {
  text-decoration: none;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  color: black;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 36px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper a {
    padding: 9px 25px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper a:hover {
  background-color: #3a6a59;
  border-color: #3a6a59;
  color: white;
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper button {
  border: 1px solid #3a6a59;
  background-color: #3a6a59;
  border-radius: 5px;
  font-size: 15px;
  color: white;
  font-weight: 500;
  padding: 9px 59px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper button {
    padding: 9px 25px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-left .payment-details .back-confirm-payment-wrapper button:hover {
  background-color: transparent;
  color: #3a6a59;
}
.checkout-section-wrapper .checkout-inner .checkout-right .title-wrapper h3 {
  color: black;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box {
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  padding-right: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box {
    padding: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    align-items: flex-start;
    gap: 12px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .product-image-wrapper .image-wrapper {
  border-radius: 10px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .product-image-wrapper .image-wrapper img {
  width: 100%;
  min-width: 110px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper h5 {
  font-size: 20px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper h5 {
    font-size: 18px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper p {
  font-size: 15px;
  color: black;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper p {
    font-size: 13px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper h6 {
  color: #3a6a59;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 700;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper h6 {
    font-size: 13px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .details-wrapper h6 span {
  font-weight: 600;
  color: black;
  font-size: 13px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .price-box {
  margin-left: auto;
}
@media (max-width: 575px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .price-box {
    margin-left: unset;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .products-details-price-wrapper .product-price-box .price-box h2 {
  margin-bottom: 0;
  color: #3a6a59;
  font-size: 22px;
  font-weight: 600;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper {
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper {
    padding: 15px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .price-section {
  border-bottom: 1px solid #bababa;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .price-section p {
  margin-bottom: 0px;
  font-size: 13px;
  color: #1f1f1f;
  font-weight: 600;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .price-section h5 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #bababa;
  font-size: 13px;
  font-weight: 600;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .price-section h5 span {
  color: black;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .total-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .total-price-details-wrapper .total-price h3 {
  margin-bottom: 0;
  font-size: 20px;
  color: #1f1f1f;
  font-weight: 600;
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  padding: 5px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper {
    width: 70%;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper input {
  border: none;
  box-shadow: none;
  padding-left: 70px;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper input {
    padding-left: 50px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper input:focus {
  box-shadow: none;
  outline: none;
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper img {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper .coupon-code-wrapper img {
    left: 15px;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper button {
  width: 20%;
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: #070707;
  font-size: 18px;
  font-weight: 500;
  border: none;
  height: 46px;
  background-color: #fcfcfc;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper button {
    width: 30%;
  }
}
.checkout-section-wrapper .checkout-inner .checkout-right .coupon-apply-wrapper button:hover {
  background-color: #3a6a59;
  color: white;
}

.course-details-top-section {
  padding-top: 96px;
  padding-bottom: 70px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .course-details-top-section {
    padding-top: 90px;
  }
}
.course-details-top-section .course-details-top-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0px 1px 7.1px 0px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
}
@media (max-width: 991px) {
  .course-details-top-section .course-details-top-inner {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.course-details-top-section .course-details-top-inner .courses-image-wrapepr {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 281px;
}
.course-details-top-section .course-details-top-inner .courses-image-wrapepr .inner-image-border {
  border-radius: 21px;
  border: 5px solid #3a6a59;
  overflow: hidden;
}
.course-details-top-section .course-details-top-inner .courses-image-wrapepr .completed-text {
  display: none;
}
.course-details-top-section .course-details-top-inner .courses-image-wrapepr .image-wrapper {
  border: 2px solid #b5c7c1;
  border-radius: 16px;
}
.course-details-top-section .course-details-top-inner .courses-image-wrapepr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.course-details-top-section .course-details-top-inner .courses-details {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .course-details-top-section .course-details-top-inner .courses-details {
    padding-top: 0;
  }
}
.course-details-top-section .course-details-top-inner .courses-details h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3a6a59;
  margin-bottom: 10px;
}
.course-details-top-section .course-details-top-inner .courses-details h6 {
  font-size: 15px;
  color: black;
  font-weight: 500;
}
.course-details-top-section .course-details-top-inner .courses-details p {
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 24px;
  margin-bottom: 12px;
  max-width: 58%;
}
@media (max-width: 1550px) {
  .course-details-top-section .course-details-top-inner .courses-details p {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .course-details-top-section .course-details-top-inner .courses-details p {
    font-weight: 400;
    font-size: 15px;
  }
}
.course-details-top-section .course-details-top-inner .courses-details .date-hours-details h5 {
  color: black;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  flex-direction: row;
}
.course-details-top-section .course-details-top-inner .courses-details .date-hours-details h5 span {
  font-weight: 500;
  min-width: 158px;
  display: block;
  font-size: 16px;
}
.course-details-top-section .course-details-top-inner .right-download-certificate {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .course-details-top-section .course-details-top-inner .right-download-certificate {
    padding-top: 0;
  }
}
.course-details-top-section .course-details-top-inner .right-download-certificate a {
  display: block;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #e1f0e9;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: black;
  text-align: center;
  text-decoration: none;
  min-width: 221px;
  padding: 14px 10px;
  transition: 0.3s ease-in-out;
}
.course-details-top-section .course-details-top-inner .right-download-certificate a:hover {
  background-color: #3a6a59;
  color: white;
}

.course-details-section {
  margin-bottom: 70px;
}
.course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper {
    margin-bottom: 15px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav {
  gap: 15px;
}
@media (max-width: 991px) and (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav {
    width: 100%;
    display: flex;
    flex-direction: row !important;
    flex-wrap: unset;
    gap: 5px;
    padding-bottom: 10px;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
  border-radius: 12px;
  padding: 14px 20px;
  color: black;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    padding: 10px 9px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link:hover {
  background-color: #e1f0e9;
}
.course-details-section .course-details-inner .tab-section-inner .tab-button-wrapper .tab-button-inner .nav .nav-item .active {
  background-color: #e1f0e9;
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
  margin-bottom: 0;
  border-color: rgba(112, 112, 112, 0.23);
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table {
    min-width: 750px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
  background-color: #E1F0E9;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: black;
  padding: 15px;
  vertical-align: middle;
}
@media (max-width: 1699px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table thead tr th {
    font-size: 16px;
    padding: 10px 5px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: black;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td {
    padding: 10px 5px;
    line-height: 20px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: black;
  margin-bottom: 0;
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:nth-child(1) {
    padding-left: 5px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:last-child {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper table tbody tr td:last-child {
    padding-left: 5px;
  }
}
.course-details-section .course-details-inner .tab-section-inner .tab-content .courses-content .courses-bottom-content .courses-bottom-inner .courses-data-wrapper .courses-data-inner form .table-wrapper .table-bordered > :not(caption) > * > * {
  border-width: 1px 1px !important;
}

.banner-with-text-section {
  margin-top: 96px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-with-text-section .banner-text-bg {
  position: relative;
  z-index: 1;
}
.banner-with-text-section .banner-text-bg::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(43, 114, 90, 0.95) 0%, rgba(108, 165, 144, 0.6) 45%, rgba(191, 230, 212, 0) 100%);
  z-index: -1;
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper {
  min-height: 420px;
  padding: 100px 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1799px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper {
    padding: 50px 0;
    min-height: 300px;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper h3 {
  color: white;
  font-size: 38px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper h3 {
    font-size: 22px;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  line-height: 33px;
  max-width: 700px;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper p {
    font-size: 20px;
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper span {
  background-color: #BFE6D4;
  border-radius: 20px;
  padding: 6px 17px;
  color: #3C705E;
  font-size: 18px;
  font-weight: 600;
  display: block;
  width: fit-content;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper span {
    font-size: 16px;
    padding: 5px 15px;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper {
  margin-top: 30px;
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav {
  margin-bottom: 0;
  background-color: white;
  padding: 7px;
  border-radius: 44px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  width: fit-content;
}
@media (max-width: 575px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav {
    flex-wrap: nowrap;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
  border-radius: 37px;
  padding: 22px 35px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    width: 100%;
    line-height: 19px;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link:hover {
  background-color: #3C705E;
  color: white;
  box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -webkit-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -moz-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.banner-with-text-section .banner-text-bg .banner-title-tab-wrapper .tab-button-wrapper .tab-button-inner .nav .nav-item .active {
  background-color: #3C705E;
  color: white;
  box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -webkit-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
  -moz-box-shadow: 0px -7px 22px 0px rgba(50, 87, 72, 0.6) inset;
}
@media (max-width: 991px) {
  .banner-with-text-section {
    margin-top: 90px;
  }
}
.banner-with-text-section .banner-text-wrapper {
  padding: 250px 0px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  min-height: 734px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-wrapper {
    padding: 150px 0;
    min-height: 650px;
    max-width: 100%;
  }
}
@media (max-width: 1440px) {
  .banner-with-text-section .banner-text-wrapper {
    min-height: 550px;
  }
}
@media (max-width: 1399px) {
  .banner-with-text-section .banner-text-wrapper {
    padding: 130px 0;
    min-height: 525px;
  }
}
@media (max-width: 1199px) {
  .banner-with-text-section .banner-text-wrapper {
    min-height: 450px;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-wrapper {
    padding: 100px 0;
    min-height: unset;
  }
}
@media (max-width: 575px) {
  .banner-with-text-section .banner-text-wrapper {
    padding: 50px 0;
    min-height: 220px;
  }
}
.banner-with-text-section .banner-text-wrapper h4 {
  font-size: 44px;
  color: white;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-wrapper h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-wrapper h4 {
    font-size: 20px;
  }
}
.banner-with-text-section .banner-text-wrapper h2 {
  margin-bottom: 0;
  font-size: 69px;
  font-weight: bold;
  color: white;
}
@media (max-width: 1750px) {
  .banner-with-text-section .banner-text-wrapper h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .banner-with-text-section .banner-text-wrapper h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .banner-with-text-section .banner-text-wrapper h2 br {
    display: none;
  }
}

.our-legacy-section {
  background-color: #E1F0E9;
  padding: 70px 0;
}
.our-legacy-section .our-legacy-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container {
    max-width: 100%;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1299px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner {
    grid-template-columns: 1fr;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .left-image-section .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .left-image-section .image-wrapper {
    border-radius: 15px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .left-image-section .image-wrapper img {
  width: 100%;
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper h4 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
  text-transform: capitalize;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper h4 {
    font-size: 20px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  line-height: 33px;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .inner-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box {
    border-radius: 15px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box .icon-wrapper {
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box .icon-wrapper img {
  max-width: 40px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box .icon-wrapper img {
    max-width: 30px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box h5 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box h5 {
    font-size: 18px;
  }
}
.our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box p {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .our-legacy-inner .right-legacy-content-section .legacy-box-wrapper .legacy-box p {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box {
    border-radius: 15px;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box .icon-wrapper {
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box .icon-wrapper img {
  max-width: 40px;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box .icon-wrapper img {
    max-width: 30px;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box h5 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box h5 {
    font-size: 18px;
  }
}
.our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box p {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .our-legacy-section .our-legacy-container .legacy-box-wrapper .legacy-box p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ageless-clinic-section {
  background-color: #E1F0E9;
}
.ageless-clinic-section .top-image-section .image-wrapper img {
  width: 100%;
}
.ageless-clinic-section .about-ageless-clinic-container {
  position: relative;
  margin-top: -135px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .ageless-clinic-section .about-ageless-clinic-container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container {
    margin-top: 50px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section {
  background-color: #3C705E;
  border-radius: 46px;
  overflow: hidden;
  padding: 40px 60px 70px 60px;
  text-align: center;
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section {
    border-radius: 15px;
    padding: 40px 15px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section h4 {
  font-size: 44px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section h4 {
    font-size: 20px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section p {
  color: white;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .about-ageless-clinic-inner .why-ageless-banner-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section {
    grid-template-columns: 1fr;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section h4 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section h4 {
    font-size: 20px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section p {
  color: #3C705E;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .left-content-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .right-image-section .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .right-image-section .image-wrapper {
    border-radius: 15px;
  }
}
.ageless-clinic-section .about-ageless-clinic-container .our-philosophy-section .right-image-section .image-wrapper img {
  width: 100%;
}

.about-promise-section .top-promise-image-wrapper .image-wrapper img {
  width: 100%;
}
.about-promise-section .our-promise-section .our-promise-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .about-promise-section .our-promise-section .our-promise-inner-container {
    max-width: 100%;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner {
  margin-top: -240px;
  position: relative;
  background-color: white;
  border-radius: 46px;
  overflow: hidden;
  padding: 40px 60px 70px 60px;
  text-align: center;
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner {
    margin-top: 10px;
    padding: 40px 0px;
    border-radius: 15px;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner h4 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner h4 {
    font-size: 20px;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner p {
  color: #3C705E;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner p {
    font-size: 16px;
    line-height: 26px;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box {
  background-color: #E1F0E9;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box {
    padding: 40px 15px;
    border-radius: 15px;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box .icon-wrapper {
  margin-bottom: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box .icon-wrapper img {
  max-width: 40px;
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box .icon-wrapper img {
    max-width: 30px;
  }
}
.about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box h5 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .about-promise-section .our-promise-section .our-promise-inner-container .our-promise-inner .promise-box-wrapper .promise-box h5 {
    font-size: 18px;
  }
}

.join-us-section {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 40px;
}
.join-us-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-color: #3C705E;
  width: 100%;
  height: 75%;
  z-index: -1;
}
.join-us-section .join-us-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container {
    max-width: 100%;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .top-title-para-section {
  text-align: center;
}
.join-us-section .join-us-inner-container .join-us-inner .top-title-para-section h4 {
  font-size: 44px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .top-title-para-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .top-title-para-section h4 {
    font-size: 20px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .top-title-para-section .para-wrapper {
  padding-bottom: 30px;
  border-bottom: 1px solid #BFE6D4;
}
.join-us-section .join-us-inner-container .join-us-inner .top-title-para-section .para-wrapper p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0;
  color: white;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .top-title-para-section .para-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .top-title-para-section .para-wrapper p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section {
  padding-top: 50px;
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section h4 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: white;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section h4 {
    font-size: 20px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper {
  position: relative;
  z-index: 1;
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  background-color: #E1F0E9;
  height: calc(100% - 65px);
  border-radius: 30px;
  z-index: -1;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper::before {
    height: calc(100% - 45px);
    border-radius: 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .icon-wrapper {
  background-color: white;
  padding: 30px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .icon-wrapper {
    padding: 10px;
    width: 90px;
    height: 90px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .icon-wrapper img {
  max-width: 33px;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .icon-wrapper img {
    max-width: 30px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para {
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para {
    padding-top: 20px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para h5 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para h5 {
    font-size: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para h5 {
    font-size: 18px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  line-height: 30px;
  margin-bottom: 0;
  padding: 0 54px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para p {
    font-size: 18px;
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .mumbai-institute-section .join-content-box-wrapper .box-wrapper .content-para p {
    font-size: 16px;
    line-height: 26px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section {
  background-color: #E1F0E9;
  border-radius: 30px;
  margin-top: 30px;
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section {
    padding: 70px 15px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section {
    border-radius: 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner {
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner {
    max-width: 70%;
  }
}
@media (max-width: 1199px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner {
    max-width: 100%;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group {
    margin-bottom: 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group label {
    font-size: 16px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group input {
  border-radius: 33px;
  background-color: white;
  border: 2px solid #BFE6D4;
  color: black;
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  padding: 8px 25px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .form-group input {
    font-size: 16px;
    padding: 3px 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper {
    padding-top: 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper .submit_btn {
  text-align: center;
  width: 100%;
  border-radius: 33px;
  background-color: #3C705E;
  color: white;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: bold;
  border: 2px solid #3C705E;
  outline: none;
  transition: 0.3s ease-in-out;
  padding: 13px 25px;
}
@media (max-width: 1750px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper .submit_btn {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper .submit_btn {
    font-size: 18px;
    padding: 8px 15px;
  }
}
.join-us-section .join-us-inner-container .join-us-inner .join-us-form-section .join-us-inner form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.workshop-overview-section {
  position: relative;
  z-index: 1;
  margin-top: -210px;
  margin-bottom: 70px;
}
@media (max-width: 1750px) {
  .workshop-overview-section {
    margin-top: -192px;
  }
}
@media (max-width: 1499px) {
  .workshop-overview-section {
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section {
    margin-top: 70px;
  }
}
.workshop-overview-section .workshop-overview-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container {
    max-width: 100%;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #E1F0E9;
  gap: 50px;
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section {
    flex-direction: column;
    padding: 15px;
    padding-bottom: 0;
    align-items: unset;
  }
}
@media (max-width: 420px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section {
    padding-bottom: 15px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section {
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section {
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section {
    padding-left: 0;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .image-wrapper {
  border-radius: 9px;
  overflow: hidden;
  width: 154px;
  height: 154px;
}
@media (max-width: 1199px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .image-wrapper {
    width: 100px;
    height: 100px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .image-wrapper img {
  width: 100%;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details h4 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details h4 {
    font-size: 20px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    gap: 5px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper .box-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper .box-wrapper .icon-wrapper img {
  width: 14px;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper .box-wrapper p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  color: black;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .left-doctor-section .doctors-details .icon-details-wrapper .box-wrapper p {
    font-size: 16px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .right-facial-image {
  max-width: 338px;
  object-fit: cover;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .right-facial-image {
    max-width: 300px;
  }
}
@media (max-width: 420px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .right-facial-image {
    max-width: 100%;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .top-doctor-section .right-facial-image img {
  width: 100%;
  object-fit: cover;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  background-color: #E1F0E9;
  margin-top: 30px;
  padding: 30px;
}
@media (max-width: 1350px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content {
    padding: 30px 15px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section {
    padding-right: 0;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section h4 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section h4 {
    font-size: 18px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  color: black;
  margin-bottom: 25px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .left-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  padding-right: 0;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section {
    width: fit-content;
  }
}
@media (max-width: 420px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section {
    width: 100%;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content {
    gap: 5px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .main-price {
  color: #3C705E;
  font-size: 39px;
  font-weight: 400;
  line-height: 59px;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .main-price {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .main-price {
    font-size: 28px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price {
  background-color: #3C705E;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 3px 30px 3px 10px;
  font-size: 20px;
  font-weight: 400;
  color: #BFE6D4;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price {
    font-size: 17px;
  }
}
@media (max-width: 1350px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price {
    font-size: 15px;
    padding: 3px 10px;
    gap: 7px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price {
    font-size: 14px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price img {
  width: 20px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .price-top-content .limited-price img {
    width: 18px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper {
  margin-bottom: 15px;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background-color: #3C705E;
  border-radius: 43px;
  padding: 7px 30px 7px 11px;
  width: fit-content;
}
@media (max-width: 420px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon {
    width: calc(100% - 15px);
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon p {
  background-color: #E1F0E9;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 41px;
  color: #3C705E;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon p {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon p {
    font-size: 28px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon h4 {
  font-size: 41px;
  font-weight: bold;
  margin-bottom: 0;
  color: white;
  line-height: 47px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon h4 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon h4 {
    font-size: 32px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .discount-wrapper .rupee-icon h4 span {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  line-height: 26px;
  display: block;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section img {
  width: 36px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section img {
    width: 32px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section img {
    width: 28px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section h6 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section h6 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .top-price-section .seats-section h6 {
    font-size: 18px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section h4 {
    font-size: 18px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul {
  margin: 0;
  padding: 0;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 12px;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li:last-child {
  margin-bottom: 0;
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li img {
    width: 22px;
    height: 22px;
  }
}
.workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li p {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .workshop-overview-section .workshop-overview-inner-container .workshop-overview-inner .workshop-overview-content .right-offer-details-section .learn-list-section ul li p {
    font-size: 16px;
  }
}

.workshop-intro-section .workshop-intro-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container {
    max-width: 100%;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner {
    grid-template-columns: 1fr;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section h4 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section h4 {
    font-size: 18px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section p {
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .left-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a {
  display: block;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a {
    border-radius: 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a img {
  width: 100%;
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a .thumbnail-image {
  transition: 0.5s ease-in-out;
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 100px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a .video-icon {
    max-width: 50px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-intro-inner .right-video-section a:hover .thumbnail-image {
  transform: scale(1.1);
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner {
  margin-top: 70px;
  margin-bottom: 20px;
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner h4 {
  font-size: 28px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner h4 {
    font-size: 18px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box {
  background-color: #F4F4F4;
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 70px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box {
    padding: 20px 15px;
    flex-direction: column;
    gap: 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .left-time-section {
  min-width: 260px;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .left-time-section {
    min-width: 200px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .left-time-section h5 {
  font-size: 28px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .left-time-section h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .left-time-section h5 {
    font-size: 16px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details h6 {
  font-size: 28px;
  font-weight: bold;
  color: black;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details h6 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details h6 {
    font-size: 16px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details p {
  margin-bottom: 0;
  font-size: 28px;
  color: black;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .workshop-schedule-inner .schedule-box-wrapper .schedule-box .right-schedule-details p {
    font-size: 16px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section {
  background-color: #E1F0E9;
  border-radius: 22px;
  padding: 70px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section {
    padding: 50px 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .top-title-section {
  text-align: center;
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .top-title-section h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .top-title-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .top-title-section h4 {
    font-size: 18px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section {
  max-width: 64%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section {
    max-width: 70%;
  }
}
@media (max-width: 1199px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section {
    max-width: 100%;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group {
    margin-bottom: 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 16px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group input {
  border-radius: 33px;
  background-color: white;
  border: 2px solid #BFE6D4;
  color: black;
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  padding: 8px 25px;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 16px;
    padding: 3px 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper {
    padding-top: 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
  text-align: center;
  width: 100%;
  border-radius: 33px;
  background-color: #3C705E;
  color: white;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: bold;
  border: 2px solid #3C705E;
  outline: none;
  transition: 0.3s ease-in-out;
  padding: 13px 25px;
}
@media (max-width: 1750px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 18px;
    padding: 8px 15px;
  }
}
.workshop-intro-section .workshop-intro-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.upcoming-new-workshops-section {
  margin: 70px 0;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .top-title {
  text-align: center;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .top-title h4 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .top-title h4 {
    font-size: 20px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider {
  position: relative;
  padding: 0 70px;
}
@media (max-width: 991px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider {
    padding: 0 30px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a {
    border-radius: 10px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a img {
  width: 100%;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a .thumbnail-image {
  transition: 0.5s ease-in-out;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 70px;
}
@media (max-width: 1366px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a .video-icon {
    max-width: 50px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner a:hover .thumbnail-image {
  transform: scale(1.1);
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper {
  padding-top: 30px;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper h5 {
  font-size: 31px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper h5 {
    font-size: 18px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: black;
  margin-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper p {
    font-size: 16px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper p:last-child {
  margin-bottom: 0;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .item .item-inner .videos-content-wrapper p img {
  max-width: 14px;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav {
  margin: 0;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav button {
  color: #3A6A59;
  margin: 0;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav button span {
  font-size: 40px;
}
@media (max-width: 991px) {
  .upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav button span {
    font-size: 32px;
  }
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav button:hover {
  background-color: transparent;
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: 38%;
  transform: translateY(-50%);
}
.upcoming-new-workshops-section .upcoming-new-workshops-inner .upcoming-new-workshops-slider-wrapper .upcoming-new-workshops-slider .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  top: 38%;
  transform: translateY(-50%);
}

.placement-top-section {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .placement-top-section {
    padding-top: 70px;
  }
}
.placement-top-section::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 180px);
  background-color: #E1F0E9;
  z-index: -1;
  content: "";
}
@media (max-width: 1499px) {
  .placement-top-section::before {
    height: calc(100% - 100px);
  }
}
@media (max-width: 991px) {
  .placement-top-section::before {
    height: 100%;
  }
}
.placement-top-section .placement-top-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container {
    max-width: 100%;
  }
}
.placement-top-section .placement-top-inner-container .placement-top-inner {
  text-align: center;
  background-color: white;
  border-radius: 46px;
  padding: 30px;
  margin-top: -180px;
  margin-bottom: 50px;
}
@media (max-width: 1499px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner {
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner {
    padding: 25px 15px;
    margin-top: 0;
    border-radius: 15px;
  }
}
.placement-top-section .placement-top-inner-container .placement-top-inner h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner h4 {
    font-size: 20px;
  }
}
.placement-top-section .placement-top-inner-container .placement-top-inner p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .placement-top-inner p {
    font-size: 16px;
    line-height: 26px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section {
  display: grid;
  grid-template-columns: 1fr;
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section {
  padding-right: 110px;
}
@media (max-width: 1499px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section {
    padding-right: 0px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section h4 {
    font-size: 20px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 33px;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box {
  background-color: white;
  border-radius: 20px;
  padding: 20px 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box {
    flex-direction: column;
    text-align: center;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
  background-color: #E1F0E9;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .icon-wrapper img {
  width: 30px;
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper {
  width: calc(100% - 110px);
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper {
    width: 100%;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 16px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .program-matters-section .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 16px;
  }
}
.placement-top-section .placement-top-inner-container .program-matters-section .right-image-section img {
  width: 100%;
}
.placement-top-section .placement-top-inner-container .left-right-content-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box {
  background-color: white;
  border-radius: 20px;
  padding: 20px 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box {
    flex-direction: column;
    text-align: center;
  }
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .icon-wrapper {
  background-color: #E1F0E9;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .icon-wrapper img {
  width: 30px;
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper {
  width: calc(100% - 110px);
}
@media (max-width: 575px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper {
    width: 100%;
  }
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper h6 {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 16px;
  }
}
.placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .placement-top-section .placement-top-inner-container .left-right-content-section .left-section-wrapper .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 16px;
  }
}

.professional-support-section {
  margin: 70px 0;
}
.professional-support-section .professional-support-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .professional-support-section .professional-support-inner-container {
    max-width: 100%;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .top-title {
  text-align: center;
}
.professional-support-section .professional-support-inner-container .professional-support-inner .top-title h4 {
  margin-bottom: 70px;
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .top-title h4 {
    font-size: 20px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box {
  background-color: #E1F0E9;
  border-radius: 20px;
  text-align: center;
  padding: 50px 15px;
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box {
    padding: 15px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .icon-wrapper {
  margin-bottom: 20px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .icon-wrapper {
    margin-bottom: 10px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .icon-wrapper img {
  width: 50px;
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .icon-wrapper img {
    width: 40px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .counter-number h3 {
  font-size: 44px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .counter-number h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box .counter-number h3 {
    font-size: 26px;
  }
}
.professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box p {
  margin-bottom: 0;
  color: #3C705E;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 1750px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .professional-support-section .professional-support-inner-container .professional-support-inner .professional-support-box-wrapper .professional-support-box p {
    font-size: 16px;
    line-height: 22px;
  }
}

.career-starts-section {
  background-color: #3C705E;
  padding: 50px 0;
}
.career-starts-section .career-starts-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container {
    max-width: 100%;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .top-title {
  text-align: center;
}
.career-starts-section .career-starts-inner-container .career-starts-inner .top-title h4 {
  margin-bottom: 70px;
  font-size: 44px;
  font-weight: bold;
  color: white;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .top-title h4 {
    font-size: 28px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .top-title h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper {
    gap: 80px;
  }
}
@media (max-width: 1499px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-image-section img {
  width: 100%;
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section {
  padding-right: 110px;
}
@media (max-width: 1499px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section {
    padding-right: 0;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h6 {
  font-size: 22px;
  font-weight: bold;
  color: white;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h6 {
    font-size: 16px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section h4 {
    font-size: 20px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section p {
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 33px;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box {
  background-color: white;
  border-radius: 20px;
  padding: 20px 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 575px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box {
    flex-direction: column;
    text-align: center;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
  background-color: #E1F0E9;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .icon-wrapper img {
  width: 30px;
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper {
  width: calc(100% - 110px);
}
@media (max-width: 575px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper {
    width: 100%;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper h6 {
    font-size: 16px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .career-starts-inner-wrapper .left-section .program-matter-box-wrapper .program-box .details-wrapper p {
    font-size: 16px;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .link-wrapper {
  margin-top: 50px;
}
.career-starts-section .career-starts-inner-container .career-starts-inner .link-wrapper a {
  width: fit-content;
  text-align: center;
  background-color: white;
  border: 1px solid white;
  text-decoration: none;
  color: #3C705E;
  font-size: 44px;
  font-weight: bold;
  border-radius: 69px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 35px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .link-wrapper a {
    font-size: 28px;
    padding: 25px 30px;
  }
}
@media (max-width: 991px) {
  .career-starts-section .career-starts-inner-container .career-starts-inner .link-wrapper a {
    font-size: 16px;
    padding: 15px 5px;
    width: 100%;
  }
}
.career-starts-section .career-starts-inner-container .career-starts-inner .link-wrapper a:hover {
  background-color: transparent;
  color: white;
}

.upcoming-workshops-list-section {
  margin: 50px 0 100px 0;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container {
    max-width: 100%;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box {
  padding: 0px 0 30px 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box {
    border: 1px solid #3C705E;
    border-radius: 22px;
    padding-top: 22px;
    padding-right: 15px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: calc(100% - 35px);
  border: 1px solid #3C705E;
  z-index: -1;
  border-radius: 22px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box::before {
    height: calc(100% - 30px);
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box::before {
    height: calc(100% - 25px);
  }
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box::before {
    display: none;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper {
  background-color: #3C705E;
  border-radius: 36px;
  border: 1px solid #707070;
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper {
    margin-bottom: 20px;
    gap: 5px;
    padding: 7px 12px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper .icon-wrapper img {
  width: 32px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper .icon-wrapper img {
    width: 26px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper .icon-wrapper img {
    width: 18px;
  }
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper .icon-wrapper img {
    width: 14px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper h5 {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: bold;
  color: white;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .top-date-wrapper h5 {
    font-size: 16px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper {
  max-width: 270px;
}
@media (max-width: 420px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper {
    max-width: 100%;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a {
    border-radius: 10px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a img {
  width: 100%;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a .thumbnail-image {
  transition: 0.5s ease-in-out;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 70px;
}
@media (max-width: 1366px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a .video-icon {
    max-width: 50px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .video-box-wrapper a:hover .thumbnail-image {
  transform: scale(1.1);
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper h5 {
  font-size: 35px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper h5 {
    font-size: 18px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: black;
  margin-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper p {
    font-size: 16px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper p:last-child {
  margin-bottom: 0;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .left-side-wrapper .videos-content-wrapper p img {
  max-width: 14px;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}
@media (max-width: 1100px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper {
    align-items: unset;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
  background-color: #3C705E;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 3px 30px 3px 10px;
  font-size: 20px;
  font-weight: 400;
  color: #BFE6D4;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
    font-size: 17px;
  }
}
@media (max-width: 1350px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
    font-size: 15px;
    padding: 3px 10px;
    gap: 7px;
  }
}
@media (max-width: 1100px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
    position: absolute;
    right: 0;
    top: 87px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price {
    top: 26px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price img {
  width: 20px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .limited-price img {
    width: 18px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper {
  padding-right: 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper {
    gap: 5px;
    padding-right: 0;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper a {
  font-size: 26px;
  border: 2px solid #3C705E;
  border-radius: 33px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  padding: 10px 30px;
}
@media (max-width: 1750px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper a {
    font-size: 22px;
    padding: 10px 25px;
  }
}
@media (max-width: 991px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper a {
    font-size: 18px;
    padding: 8px 20px;
  }
}
@media (max-width: 575px) {
  .upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper a {
    font-size: 16px;
    padding: 5px 15px;
  }
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper .read-more-btn {
  font-weight: 400;
  color: #3C705E;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper .read-more-btn:hover {
  background-color: #3C705E;
  color: white;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper .register-now-btn {
  background-color: #3C705E;
  color: white;
}
.upcoming-workshops-list-section .upcoming-workshops-list-container .upcoming-workshops-list-inner .upcoming-workshops-box .details-box-wrapper .right-wrapper .link-wrapper .register-now-btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.scholarship-top-section {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .scholarship-top-section {
    padding-top: 70px;
  }
}
.scholarship-top-section::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 180px);
  background-color: #E1F0E9;
  z-index: -1;
  content: "";
}
@media (max-width: 1499px) {
  .scholarship-top-section::before {
    height: calc(100% - 100px);
  }
}
@media (max-width: 991px) {
  .scholarship-top-section::before {
    height: 100%;
  }
}
.scholarship-top-section .scholarship-top-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container {
    max-width: 100%;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner {
  text-align: center;
  background-color: white;
  border-radius: 46px;
  padding: 30px;
  margin-top: -180px;
  margin-bottom: 50px;
}
@media (max-width: 1499px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner {
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner {
    padding: 25px 15px;
    margin-top: 0;
    border-radius: 15px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner h4 {
    font-size: 20px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 33px;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-top-inner p {
    font-size: 16px;
    line-height: 26px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .top-title {
  text-align: center;
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .top-title h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .top-title h4 {
    font-size: 20px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper {
    gap: 30px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper {
    grid-template-columns: 1fr;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box {
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 37px);
  content: "";
  background-color: white;
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box::before {
    height: calc(100% - 30px);
  }
}
@media (max-width: 767px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box::before {
    grid-template-columns: 1fr;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper {
  background-color: #3C705E;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper img {
  width: 30px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper img {
    width: 24px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
  font-size: 32px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
    font-size: 18px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 30px;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper {
  padding: 0 30px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper {
    padding: 0;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box {
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box {
    padding: 30px 15px;
    padding-top: 0;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 37px);
  content: "";
  background-color: white;
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box::before {
    height: calc(100% - 30px);
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .icon-wrapper {
  background-color: #3C705E;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .icon-wrapper img {
  width: 30px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .icon-wrapper img {
    width: 24px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper h5 {
  font-size: 32px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper h5 {
    font-size: 18px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper p {
  font-size: 32px;
  font-weight: 400;
  color: #3C705E;
  line-height: 48px;
}
@media (max-width: 1750px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  grid-column-gap: 150px;
  margin: 25px 0;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper {
    grid-template-columns: 1fr;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper .icon-content-box {
  background-color: #E1F0E9;
  border-radius: 38px;
  padding: 15px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper .icon-content-box .icon-box img {
  width: 35px;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper .icon-content-box .icon-box img {
    width: 28px;
  }
}
.scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper .icon-content-box h6 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: bold;
  color: black;
}
@media (max-width: 991px) {
  .scholarship-top-section .scholarship-top-inner-container .scholarship-about-program-section .scholarship-program-grid-section .one-grid-section-wrapper .one-grid-box .details-wrapper .icon-content-wrapper .icon-content-box h6 {
    font-size: 18px;
  }
}

.scholarship-beyond-support-section .top-image-wrapper img {
  width: 100%;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container {
    max-width: 100%;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner {
    padding: 0;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section {
  background-color: #3C705E;
  padding: 50px 100px 250px 100px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  margin-top: -150px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section {
    margin-top: 50px;
    padding: 30px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section h4 {
  font-size: 44px;
  color: white;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section h4 {
    font-size: 20px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section p {
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 33px;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section p {
    font-size: 18px;
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .top-bg-section p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section {
  background-color: #E1F0E9;
  border-radius: 51px;
  padding: 30px;
  padding-bottom: 70px;
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -210px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section {
    margin-top: 50px;
    max-width: 100%;
    border-radius: 15px;
    padding: 30px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper {
  background-color: white;
  border-radius: 20px;
  padding: 80px 15px;
  text-align: center;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper {
    padding: 50px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper img {
  width: 45px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper img {
    width: 30px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper h5 {
  font-size: 26px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper h5 {
    font-size: 18px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .top-box-wrapper .box-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper {
  text-align: center;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h4 {
    font-size: 20px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  line-height: 33px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper p {
    font-size: 18px;
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h5 {
  font-size: 36px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h5 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper h5 br {
    display: none;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper .link-wrapper {
  margin-top: 50px;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper .link-wrapper a {
  width: fit-content;
  text-align: center;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  text-decoration: none;
  color: white;
  font-size: 44px;
  border-radius: 69px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 60px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper .link-wrapper a {
    font-size: 28px;
    padding: 25px 30px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper .link-wrapper a {
    font-size: 16px;
    padding: 15px 5px;
    width: 100%;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .scholarship-beyond-support-inner .scholarship-box-program-matters-section .details-wrapper .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section {
  background-color: #E1F0E9;
  border-radius: 22px;
  padding: 70px;
  margin: 50px 0;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section {
    padding: 50px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .top-title-section {
  text-align: center;
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .top-title-section h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .top-title-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .top-title-section h4 {
    font-size: 18px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section {
  max-width: 64%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section {
    max-width: 70%;
  }
}
@media (max-width: 1199px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section {
    max-width: 100%;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group {
    margin-bottom: 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 16px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group input {
  border-radius: 33px;
  background-color: white;
  border: 2px solid #BFE6D4;
  color: black;
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  padding: 8px 25px;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 16px;
    padding: 3px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper {
    padding-top: 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
  text-align: center;
  width: 100%;
  border-radius: 33px;
  background-color: #3C705E;
  color: white;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: bold;
  border: 2px solid #3C705E;
  outline: none;
  transition: 0.3s ease-in-out;
  padding: 13px 25px;
}
@media (max-width: 1750px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 18px;
    padding: 8px 15px;
  }
}
.scholarship-beyond-support-section .scholarship-beyond-support-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.information-top-section {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .information-top-section {
    padding-top: 70px;
  }
}
.information-top-section::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 180px);
  background-color: #E1F0E9;
  z-index: -1;
  content: "";
}
@media (max-width: 1499px) {
  .information-top-section::before {
    height: calc(100% - 100px);
  }
}
@media (max-width: 991px) {
  .information-top-section::before {
    height: 100%;
  }
}
.information-top-section .information-top-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container {
    max-width: 100%;
  }
}
.information-top-section .information-top-inner-container .information-top-inner {
  text-align: center;
  background-color: white;
  border-radius: 46px;
  padding: 30px;
  margin-top: -180px;
  margin-bottom: 30px;
}
@media (max-width: 1499px) {
  .information-top-section .information-top-inner-container .information-top-inner {
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-top-inner {
    padding: 25px 15px;
    margin-top: 0;
    border-radius: 15px;
  }
}
.information-top-section .information-top-inner-container .information-top-inner h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-top-inner h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-top-inner h4 {
    font-size: 20px;
  }
}
.information-top-section .information-top-inner-container .information-top-inner p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 33px;
  max-width: 76%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-top-inner p {
    font-size: 18px;
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-top-inner p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section {
  background-color: #3C705E;
  border-radius: 20px;
  padding: 50px;
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section {
    padding: 30px 15px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .top-title {
  text-align: center;
}
.information-top-section .information-top-inner-container .information-about-program-section .top-title h4 {
  font-size: 44px;
  color: white;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-about-program-section .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .top-title h4 {
    font-size: 20px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper {
    grid-template-columns: 1fr;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box {
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box {
    padding: 30px 15px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper {
  background-color: #3C705E;
  width: 74px;
  height: 74px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper {
    width: 60px;
    height: 60px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper img {
  width: 30px;
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .icon-wrapper img {
    width: 24px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
  font-size: 32px;
  font-weight: bold;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper h5 {
    font-size: 18px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: black;
  line-height: 30px;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .two-grid-section-wrapper .icon-grid-box .details-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details {
  text-align: center;
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details h5 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details h5 {
    font-size: 18px;
  }
}
.information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details p {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
  color: white;
}
@media (max-width: 1750px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .information-top-section .information-top-inner-container .information-about-program-section .information-program-grid-section .bottom-details p br {
    display: none;
  }
}

.information-session-matters-section {
  margin-bottom: 70px;
}
.information-session-matters-section .top-image-wrapper img {
  width: 100%;
}
.information-session-matters-section .information-session-matters-inner-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container {
    max-width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner {
    padding: 0;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section {
  padding: 50px 100px 250px 100px;
  padding-top: 0;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -300px;
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 69px);
  content: "";
  z-index: -1;
  background-color: #3C705E;
  border-radius: 22px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section::before {
    height: calc(100% - 45px);
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section {
    margin-top: 50px;
    padding: 50px 15px;
    padding-top: 0;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section .icon-wrapper {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #E1F0E9;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section .icon-wrapper {
    width: 90px;
    height: 90px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section .icon-wrapper img {
  width: 66px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section .icon-wrapper img {
    width: 35px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section h4 {
  font-size: 44px;
  color: white;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section h4 {
    font-size: 20px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section p {
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 33px;
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section p {
    font-size: 18px;
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .top-bg-section p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section {
  background-color: #E1F0E9;
  border-radius: 51px;
  padding: 30px;
  padding-bottom: 70px;
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  margin-top: -210px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section {
    margin-top: 50px;
    padding: 30px 15px;
    border-radius: 20px;
    max-width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-title {
  text-align: center;
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-title h4 {
  color: #3C705E;
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-title h4 {
    font-size: 20px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper {
  background-color: white;
  border-radius: 20px;
  padding: 80px 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper {
    padding: 50px 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper {
  margin-bottom: 30px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper img {
  width: 45px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper .icon-wrapper img {
    width: 30px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper h5 {
  font-size: 26px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper h5 {
    font-size: 18px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .top-box-wrapper .box-wrapper p {
    font-size: 16px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper {
  text-align: center;
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h4 {
  font-size: 44px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h4 {
    font-size: 20px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper p {
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  line-height: 33px;
  max-width: 68%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper p {
    font-size: 18px;
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h5 {
  font-size: 36px;
  color: #3C705E;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h5 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper h5 {
    font-size: 20px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper .link-wrapper {
  margin-top: 50px;
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper .link-wrapper a {
  width: fit-content;
  text-align: center;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  text-decoration: none;
  color: white;
  font-size: 44px;
  border-radius: 69px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 60px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper .link-wrapper a {
    font-size: 28px;
    padding: 25px 30px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper .link-wrapper a {
    font-size: 16px;
    padding: 15px 5px;
    width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .information-session-matters-inner .information-box-program-matters-section .details-wrapper .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section {
  background-color: #E1F0E9;
  border-radius: 22px;
  padding: 70px;
  margin: 50px 0;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section {
    padding: 50px 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .top-title-section {
  text-align: center;
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .top-title-section h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .top-title-section h4 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .top-title-section h4 {
    font-size: 18px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section {
  max-width: 64%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section {
    max-width: 70%;
  }
}
@media (max-width: 1199px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section {
    max-width: 100%;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group {
    margin-bottom: 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group label {
    font-size: 16px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group input {
  border-radius: 33px;
  background-color: white;
  border: 2px solid #BFE6D4;
  color: black;
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  padding: 8px 25px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .form-group input {
    font-size: 16px;
    padding: 3px 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper {
    padding-top: 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
  text-align: center;
  width: 100%;
  border-radius: 33px;
  background-color: #3C705E;
  color: white;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: bold;
  border: 2px solid #3C705E;
  outline: none;
  transition: 0.3s ease-in-out;
  padding: 13px 25px;
}
@media (max-width: 1750px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn {
    font-size: 18px;
    padding: 8px 15px;
  }
}
.information-session-matters-section .information-session-matters-inner-container .register-now-section .register-form-section form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.login-section .login-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #E1F0E9;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .login-section .login-inner {
    height: unset;
  }
}
@media (max-width: 1024px) {
  .login-section .login-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .login-section .login-inner .left-side-image-wrapper {
    display: none;
  }
}
.login-section .login-inner .left-side-image-wrapper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.login-section .login-inner .right-side-login-section {
  padding: 100px;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section {
    padding: 50px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section {
    padding: 30px 15px;
  }
}
@media (max-width: 1100px) {
  .login-section .login-inner .right-side-login-section {
    height: unset;
  }
}
@media (max-width: 1024px) {
  .login-section .login-inner .right-side-login-section {
    min-height: 100vh;
  }
}
.login-section .login-inner .right-side-login-section .top-logo-wrapper {
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .top-logo-wrapper {
    margin-bottom: 5px;
  }
}
.login-section .login-inner .right-side-login-section .top-logo-wrapper img {
  max-width: 203px;
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .top-logo-wrapper img {
    max-width: 150px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section {
  background-color: white;
  border-radius: 30px;
  padding: 50px 50px 70px 50px;
  width: 660px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section {
    width: 480px;
    padding: 30px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section {
    padding: 20px 15px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section .login-form-section {
    width: 80%;
    padding: 20px 15px;
  }
}
@media (max-width: 1024px) {
  .login-section .login-inner .right-side-login-section .login-form-section {
    width: 100%;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section .top-title h4 {
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  color: #3D6253;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section .top-title h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section .top-title h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section .login-form-section .top-title h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form {
  max-width: 366px;
  margin-left: auto;
  margin-right: auto;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-group label {
  text-align: left;
  display: block;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group label {
    font-size: 16px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-group input {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 45px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group input {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group input {
    font-size: 16px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-group input:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-group i {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #3C705E;
  font-size: 20px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group i {
    font-size: 18px;
    top: 54px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group i {
    top: 48px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-group i {
    top: 45px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-check {
  text-align: left;
  padding-left: 39px;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-check input {
  border: 1px solid #3C705E;
  width: 18px;
  height: 18px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-check input {
    width: 16px;
    height: 16px;
    margin-top: 6px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-check input {
    width: 14px;
    height: 14px;
    margin-top: 7px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-check input:focus {
  box-shadow: none;
  outline: none;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-check .form-check-input:checked {
  background-color: #3C705E;
}
.login-section .login-inner .right-side-login-section .login-form-section form .form-check label {
  text-align: left;
  user-select: none;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-left: 5px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-check label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .form-check label {
    font-size: 16px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper {
    margin-top: 15px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
  padding: 14px 12px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn {
    font-size: 22px;
    padding: 11.11px 12px;
  }
}
@media (max-width: 1399px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn {
    font-size: 20px;
    padding: 5.11px 12px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn {
    font-size: 18px;
  }
}
.login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}
.login-section .login-inner .right-side-login-section .login-form-section form .submit-wrapper .submit_btn:focus {
  box-shadow: none;
  outline: none;
}
.login-section .login-inner .right-side-login-section .bottom-wrapper {
  margin-top: 25px;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .bottom-wrapper {
    margin-top: 15px;
  }
}
@media (max-width: 1199px) {
  .login-section .login-inner .right-side-login-section .bottom-wrapper {
    margin-top: 10px;
  }
}
.login-section .login-inner .right-side-login-section .bottom-wrapper p {
  margin-bottom: 0;
  font-size: 22px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .login-section .login-inner .right-side-login-section .bottom-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .login-section .login-inner .right-side-login-section .bottom-wrapper p {
    font-size: 15px;
  }
}
.login-section .login-inner .right-side-login-section .bottom-wrapper p a {
  color: #3C705E;
}
.login-section .login-inner .right-side-login-section .bottom-wrapper p a:hover {
  text-decoration: none;
}

.create-account-section {
  background-color: #E1F0E9;
  min-height: 100vh;
}
.create-account-section .create-account-inner {
  padding-top: 30px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
@media (max-width: 575px) {
  .create-account-section .create-account-inner {
    align-items: unset;
    min-height: unset;
  }
}
.create-account-section .create-account-inner .top-logo-wrapper {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .top-logo-wrapper {
    margin-bottom: 5px;
  }
}
.create-account-section .create-account-inner .top-logo-wrapper img {
  max-width: 203px;
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .top-logo-wrapper img {
    max-width: 150px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner {
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  min-height: 681px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner {
    min-height: 617px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner {
    min-height: 576px;
  }
}
@media (max-width: 1299px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner {
    width: 100%;
    min-height: unset;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner {
    padding: 25px 15px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .top-title h4 {
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  color: #3D6253;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .top-title h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .top-title h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .top-title h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media (max-width: 575px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav {
    gap: 12px;
    width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link {
  padding-top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 24px;
  font-weight: 400;
  color: #3C705E;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link {
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 7px;
  }
}
@media (max-width: 575px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link {
    min-width: 161px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 32px;
  content: "";
  height: 8px;
  background-color: #E1F0E9;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link::before {
    height: 5px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link::before {
    height: 3px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link .right-sign-wrapper {
  width: 25px;
  height: 25px;
  border: 1px solid #6BB577;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link .right-sign-wrapper {
    width: 16px;
    height: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link .right-sign-wrapper span {
  font-size: 18px;
  color: #6BB577;
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .nav-link .right-sign-wrapper span {
    font-size: 12px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .active {
  color: #3D6253;
  font-weight: bold;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .nav .nav-item .active::before {
  background-color: #9AD1B8;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner {
  margin-top: 30px;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group {
  margin-bottom: 15px;
  position: relative;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group label {
  text-align: left;
  display: block;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group label {
    font-size: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group input {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3C705E;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group input {
    padding: 6px 12px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group input {
    font-size: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group input:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group textarea {
  background-color: #F7F7F7;
  border-radius: 23px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
  resize: none;
  height: 120px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group textarea {
    font-size: 18px;
    height: 100px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group textarea {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group textarea {
    font-size: 16px;
    height: 80px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group textarea:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group select {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3C705E;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
  -webkit-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23666d81" d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"/></svg>') right 1rem center/40px 15px no-repeat;
  background-repeat: no-repeat;
  background-position: right;
  background-color: #F7F7F7;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group select {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group select {
    padding: 6px 12px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group select {
    font-size: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group select:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group i {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #3C705E;
  font-size: 20px;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group i {
    font-size: 18px;
    top: 54px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group i {
    top: 48px;
  }
}
@media (max-width: 1199px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group i {
    top: 45px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group .password-right-sign {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #6BB577;
  font-size: 18px;
  width: 25px;
  height: 25px;
  border: 1px solid #6BB577;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group .password-right-sign {
    font-size: 18px;
    top: 54px;
  }
}
@media (max-width: 1399px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group .password-right-sign {
    top: 48px;
  }
}
@media (max-width: 1199px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group .password-right-sign {
    top: 45px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .form-group .password-right-sign {
    font-size: 12px;
    width: 16px;
    height: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group {
  position: relative;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date] {
  position: relative;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date]:before {
  color: transparent;
  background: none;
  display: block;
  font-family: "FontAwesome";
  content: "\f073";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #3A6A59;
  cursor: pointer;
}
@media (max-width: 767px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date]:before {
    right: 15px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date]:invalid + span:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.6);
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input[type=date]:focus:invalid + span:after {
  display: none;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .date-group input:not(:focus):invalid {
  color: transparent;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 25px;
  text-decoration: none;
  border: none;
  font-size: 22px;
  font-weight: 500;
  border-radius: 40px;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  border: 1px solid transparent;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper a {
    font-size: 16px;
  }
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper .btnNext {
  background-color: #3C705E;
  color: white;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper .btnNext:hover {
  border-color: #3C705E;
  color: #3C705E;
  background-color: transparent;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper .btnPrevious {
  color: #3C705E;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .field-inner .next-prev-wrapper .btnPrevious:hover {
  border-color: #3C705E;
  background-color: #3C705E;
  color: white;
}
.create-account-section .create-account-inner .create-account-tab-section .create-account-tab-inner .tab-section-inner-wrapper .tab-content .create-account-content .password-field .form-group {
  max-width: 528px;
  margin-left: auto;
  margin-right: auto;
}
.create-account-section .create-account-inner .bottom-wrapper {
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .bottom-wrapper {
    margin-top: 15px;
  }
}
@media (max-width: 1199px) {
  .create-account-section .create-account-inner .bottom-wrapper {
    margin-top: 10px;
  }
}
.create-account-section .create-account-inner .bottom-wrapper p {
  margin-bottom: 0;
  font-size: 22px;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .create-account-section .create-account-inner .bottom-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .create-account-section .create-account-inner .bottom-wrapper p {
    font-size: 15px;
  }
}
.create-account-section .create-account-inner .bottom-wrapper p a {
  color: #3C705E;
}
.create-account-section .create-account-inner .bottom-wrapper p a:hover {
  text-decoration: none;
}

.welcome-section {
  background-color: #E1F0E9;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 50px;
}
.welcome-section .welcome-inner .top-logo-wrapper {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .welcome-section .welcome-inner .top-logo-wrapper {
    margin-bottom: 5px;
  }
}
.welcome-section .welcome-inner .top-logo-wrapper img {
  max-width: 203px;
}
@media (max-width: 1399px) {
  .welcome-section .welcome-inner .top-logo-wrapper img {
    max-width: 150px;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper {
  background-color: white;
  border-radius: 30px;
  padding: 50px 65px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .welcome-section .welcome-inner .welcome-text-wrapper {
    padding: 40px 15px;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper h5 {
  font-size: 38px;
  font-weight: bold;
  color: #3D6253;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 1750px) {
  .welcome-section .welcome-inner .welcome-text-wrapper h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .welcome-section .welcome-inner .welcome-text-wrapper h5 {
    font-size: 20px;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper p {
  text-align: center;
  font-size: 33px;
  font-weight: 400;
  color: #3D6253;
  line-height: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .welcome-section .welcome-inner .welcome-text-wrapper p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .welcome-section .welcome-inner .welcome-text-wrapper p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper {
    max-width: 95%;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper a {
  background-color: #3C705E;
  border-radius: 40px;
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 10px;
  display: block;
  text-align: center;
  border: 1px solid #3C705E;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper a {
    font-size: 20px;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper a {
    font-size: 16px;
    padding: 6px;
  }
}
.welcome-section .welcome-inner .welcome-text-wrapper .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}

.profile-top-link-wrapper {
  background-color: rgba(225, 240, 233, 0.39);
  margin-bottom: 50px;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .profile-top-link-wrapper {
    padding-top: 90px;
  }
}
.profile-top-link-wrapper .profile-top-link-inner {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
}
@media (max-width: 1299px) {
  .profile-top-link-wrapper .profile-top-link-inner {
    max-width: 100%;
  }
}
.profile-top-link-wrapper .profile-top-link-inner ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.profile-top-link-wrapper .profile-top-link-inner ul li {
  list-style: none;
}
.profile-top-link-wrapper .profile-top-link-inner ul li a {
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 22px;
  color: #3C705E;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .profile-top-link-wrapper .profile-top-link-inner ul li a {
    font-size: 18px;
    padding: 8px 20px;
  }
}
@media (max-width: 991px) {
  .profile-top-link-wrapper .profile-top-link-inner ul li a {
    font-size: 16px;
    padding: 6px 18px;
  }
}
.profile-top-link-wrapper .profile-top-link-inner ul li a:hover {
  background-color: #E1F0E9;
}
.profile-top-link-wrapper .profile-top-link-inner ul li a img {
  max-width: 28px;
}
.profile-top-link-wrapper .profile-top-link-inner ul li:first-child a {
  background-color: #E1F0E9;
  font-weight: bold;
}

.profile-details-section {
  margin-bottom: 50px;
}
.profile-details-section .profile-details-inner {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1299px) {
  .profile-details-section .profile-details-inner {
    max-width: 100%;
  }
}
.profile-details-section .profile-details-inner form .upload-suluation-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .profile-details-section .profile-details-inner form .upload-suluation-row {
    flex-direction: column-reverse;
  }
}
.profile-details-section .profile-details-inner form h5 {
  font-size: 28px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form h5 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form h5 {
    font-size: 18px;
  }
}
.profile-details-section .profile-details-inner form .margin_top {
  margin-top: 30px;
}
.profile-details-section .profile-details-inner form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.profile-details-section .profile-details-inner form .form-group label {
  text-align: left;
  display: block;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .profile-details-section .profile-details-inner form .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .form-group label {
    font-size: 16px;
  }
}
.profile-details-section .profile-details-inner form .form-group input {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3C705E;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .profile-details-section .profile-details-inner form .form-group input {
    padding: 6px 12px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .form-group input {
    font-size: 16px;
  }
}
.profile-details-section .profile-details-inner form .form-group input:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.profile-details-section .profile-details-inner form .form-group textarea {
  background-color: #F7F7F7;
  border-radius: 23px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
  resize: none;
  height: 120px;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group textarea {
    font-size: 18px;
    height: 100px;
  }
}
@media (max-width: 1399px) {
  .profile-details-section .profile-details-inner form .form-group textarea {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .form-group textarea {
    font-size: 16px;
    height: 80px;
  }
}
.profile-details-section .profile-details-inner form .form-group textarea:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.profile-details-section .profile-details-inner form .form-group select {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3C705E;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 20px;
  -webkit-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23666d81" d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"/></svg>') right 1rem center/40px 15px no-repeat;
  background-repeat: no-repeat;
  background-position: right;
  background-color: #F7F7F7;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group select {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .profile-details-section .profile-details-inner form .form-group select {
    padding: 6px 12px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .form-group select {
    font-size: 16px;
  }
}
.profile-details-section .profile-details-inner form .form-group select:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.profile-details-section .profile-details-inner form .form-group i {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #3C705E;
  font-size: 20px;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group i {
    font-size: 18px;
    top: 54px;
  }
}
@media (max-width: 1399px) {
  .profile-details-section .profile-details-inner form .form-group i {
    top: 48px;
  }
}
@media (max-width: 1199px) {
  .profile-details-section .profile-details-inner form .form-group i {
    top: 45px;
  }
}
.profile-details-section .profile-details-inner form .form-group .password-right-sign {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #6BB577;
  font-size: 18px;
  width: 25px;
  height: 25px;
  border: 1px solid #6BB577;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .form-group .password-right-sign {
    font-size: 18px;
    top: 54px;
  }
}
@media (max-width: 1399px) {
  .profile-details-section .profile-details-inner form .form-group .password-right-sign {
    top: 48px;
  }
}
@media (max-width: 1199px) {
  .profile-details-section .profile-details-inner form .form-group .password-right-sign {
    top: 45px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .form-group .password-right-sign {
    font-size: 12px;
    width: 16px;
    height: 16px;
  }
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper {
  position: relative;
  z-index: 1;
  width: 299px;
  margin-left: auto;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper {
    margin-right: auto;
  }
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper::before {
  background-color: #F7F7F7;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  content: "";
  border-radius: 40px;
  z-index: -1;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: inline-block;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .file-upload {
  display: none;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .circle {
  border-radius: 50%;
  overflow: hidden;
  width: 166px;
  height: 166px;
  border: 8px solid #E1F0E9;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper img {
  max-width: 100%;
  height: auto;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .p-image {
  background-color: #E1F0E9;
  border-radius: 22px;
  padding: 8px 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .p-image .upload-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .p-image .upload-button p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: #3A6A59;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .p-image:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .upload-button {
  font-size: 1.2em;
}
.profile-details-section .profile-details-inner form .form-group .profile-upload-wrapper .upload-button:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #999;
}
.profile-details-section .profile-details-inner form .date-group {
  position: relative;
}
.profile-details-section .profile-details-inner form .date-group input[type=date] {
  position: relative;
}
.profile-details-section .profile-details-inner form .date-group input[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
}
.profile-details-section .profile-details-inner form .date-group input[type=date]:before {
  color: transparent;
  background: none;
  display: block;
  font-family: "FontAwesome";
  content: "\f073";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #3A6A59;
  cursor: pointer;
}
@media (max-width: 767px) {
  .profile-details-section .profile-details-inner form .date-group input[type=date]:before {
    right: 15px;
  }
}
.profile-details-section .profile-details-inner form .date-group input[type=date]:invalid + span:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.6);
}
.profile-details-section .profile-details-inner form .date-group input[type=date]:focus:invalid + span:after {
  display: none;
}
.profile-details-section .profile-details-inner form .date-group input:not(:focus):invalid {
  color: transparent;
}
.profile-details-section .profile-details-inner form .checkout-button-wrapper {
  margin-top: 30px;
  text-align: right;
}
@media (max-width: 767px) {
  .profile-details-section .profile-details-inner form .checkout-button-wrapper {
    margin-top: 15px;
  }
}
.profile-details-section .profile-details-inner form .checkout-button-wrapper .checkout_btn {
  width: fit-content;
  background-color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 14.5px 50px;
  border: 1px solid #3C705E;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .profile-details-section .profile-details-inner form .checkout-button-wrapper .checkout_btn {
    font-size: 20px;
    padding: 10px 45px;
  }
}
@media (max-width: 991px) {
  .profile-details-section .profile-details-inner form .checkout-button-wrapper .checkout_btn {
    font-size: 16px;
    padding: 8px 40px;
  }
}
.profile-details-section .profile-details-inner form .checkout-button-wrapper .checkout_btn:hover {
  color: #3C705E;
  background-color: transparent;
}

.my-courses-details-top-section {
  background-color: #f2faf7;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .my-courses-details-top-section {
    padding-top: 90px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner {
  padding: 20px 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner {
    max-width: 100%;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper {
    flex-direction: column;
    align-items: unset;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .image-wrapper {
  width: 224px;
  height: 224px;
  overflow: hidden;
  border-radius: 31px;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .image-wrapper {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .image-wrapper {
    width: 160px;
    height: 160px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section {
  width: calc(100% - 254px);
}
@media (max-width: 1024px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section {
    width: 100%;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h6 {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h6 {
    font-size: 16px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h4 {
  font-size: 33px;
  font-weight: bold;
  color: #3D6253;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section h4 {
    font-size: 18px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1024px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr {
    flex-direction: column;
    align-items: unset;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 80%;
}
@media (max-width: 1024px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: unset;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .complete-progress {
  font-size: 17px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .complete-progress {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .complete-progress {
    font-size: 14px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .progress {
  min-width: 80%;
  background-color: #BFE6D4;
  border-radius: 100px;
  height: 10px;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .progress {
    height: 8px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .progress {
    height: 6px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .progress-wrapper .progress .progress-bar {
  background-color: #3C705E;
  border-radius: 100px;
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper {
  background-color: #22C55E;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper {
    width: 22px;
    height: 22px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper span {
  font-size: 16px;
  color: white;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper span {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper .icon-wrapper span {
    font-size: 14px;
  }
}
.my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper p {
  margin-bottom: 0;
  color: #3C705E;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-top-section .my-courses-details-top-inner .image-title-progress-wrapper .right-details-section .progress-completed-wrapepr .completed-wrapper p {
    font-size: 16px;
  }
}

.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner {
  padding: 15px 0;
  background-color: #E1F0E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper {
    max-width: 100%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link {
  border-radius: 30px;
  border: 2px solid #BFE6D4;
  background-color: transparent;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link {
    font-size: 18px;
    padding: 8px 14px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link {
    font-size: 16px;
    padding: 7px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link:hover {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link .courses-tabs-button-inenr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
  width: 16px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-details-tabs-button-inner .inner-wrapper .nav .active {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner {
    max-width: 100%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr {
  margin: 50px 0;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper {
  margin-bottom: 70px;
  border: 1px solid #BFE6D4;
  border-radius: 25px;
  max-width: 1036px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  text-align: center;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper {
    max-width: 80%;
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper {
    max-width: 100%;
    padding: 30px 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .top-icon-wrapper img {
  max-width: 90px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .top-icon-wrapper img {
    max-width: 80px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .top-icon-wrapper img {
    max-width: 70px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .tracking-link-wrapepr {
  margin: 25px 0 35px 0;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .tracking-link-wrapepr a {
  font-size: 22px;
  font-weight: 500;
  color: white;
  background-color: #3C705E;
  text-align: center;
  text-decoration: none;
  padding: 9px 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
  border: 1px solid #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .tracking-link-wrapepr a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .tracking-link-wrapepr a {
    font-size: 15px;
    padding: 8px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .tracking-link-wrapepr a:hover {
  background-color: transparent;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .track-id-wrapper p {
  margin-bottom: 0;
  color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .track-id-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .tracking-material-wrapper .track-id-wrapper p {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper a {
  text-align: center;
  display: block;
  text-decoration: none;
  background-color: #3C705E;
  font-size: 32px;
  font-weight: bold;
  color: white;
  border-radius: 100px;
  padding: 16px 12px;
  transition: 0.3s ease-in-out;
  border: 1px solid #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper a {
    font-size: 16px;
    padding: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper button {
  width: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
  background-color: #3C705E;
  font-size: 32px;
  font-weight: bold;
  color: white;
  border-radius: 100px;
  padding: 16px 12px;
  transition: 0.3s ease-in-out;
  border: 1px solid #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper button {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper button {
    font-size: 16px;
    padding: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .link-wrapper button:hover {
  background-color: transparent;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .course-title-wrapper h5 {
  font-size: 25px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .course-title-wrapper h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .course-title-wrapper h5 {
    font-size: 18px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section {
  background-color: #E1F0E9;
  border-radius: 25px;
  padding: 1px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section {
    border-radius: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  gap: 5px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper {
    padding: 12px 10px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper {
    padding: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper h6 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: bold;
  color: #364045;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper h6 {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper p {
  margin-bottom: 0;
  font-size: 22px;
  color: #364045;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section .top-title-wrapper p {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table {
  margin-bottom: 0;
  background-color: white;
  width: 100%;
  border: 1px solid #BFE6D4;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #ccc;
  table-layout: fixed;
  width: 100%;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table {
    min-width: 700px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr:nth-child(even) {
  background-color: #F4F8F6;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 15px 30px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td:nth-child(3) {
  text-align: center;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .steps {
  color: #364045;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .steps {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .steps {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: black;
  font-size: 19px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-text img {
    width: 22px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-text img {
    width: 18px;
  }
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-text {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .link-wrapper {
  text-decoration: none;
  background-color: #E1F0E9;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .link-wrapper {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .link-wrapper {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .completed-link {
  background-color: #3C705E;
  color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper {
  color: #00C43C;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper span {
  background-color: #22C55E;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 15px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper span {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .icon-wrapper span {
    font-size: 20px;
    font-size: 20px;
    font-size: 13px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .lock-icon-wrapper {
  color: #9CA3AF;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .table-data-wrapper .table-details-section table tr td .pending-icon-wrapper {
  color: #F2B100;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper {
  margin-top: 50px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper {
    margin-top: 30px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper a {
  font-size: 26px;
  font-weight: bold;
  color: white;
  background-color: #3C705E;
  text-decoration: none;
  border-radius: 30px;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 40px;
  transition: 0.3s ease-in-out;
  border: 1px solid #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper a {
    font-size: 20px;
    padding: 12px 30px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper a {
    font-size: 16px;
    padding: 8px 25px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .tab-content-wrapepr .bottom-link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper {
  margin-top: 0;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper {
  position: relative;
  z-index: 1;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: calc(111% + 100px);
  height: 100%;
  content: "";
  background-color: rgba(225, 240, 233, 0.7);
  z-index: -1;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper::before {
    width: calc(100% + 100px);
  }
}
@media (max-width: 1366px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper::before {
    width: calc(100% + 24px);
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .left-time-remaining-wrapper .inner-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .left-time-remaining-wrapper .inner-wrapper .image-wrapper img {
    width: 18px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .left-time-remaining-wrapper .inner-wrapper h5 {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .left-time-remaining-wrapper .inner-wrapper h5 {
    font-size: 18px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link {
  border-radius: 30px;
  border: 1px solid white;
  background-color: transparent;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link {
    font-size: 18px;
    padding: 8px 14px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link {
    font-size: 16px;
    padding: 7px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link:hover {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link .courses-tabs-button-inenr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link .courses-tabs-button-inenr .image-wrapper img {
  width: 16px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav {
    flex-direction: column;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link {
  border-radius: 30px;
  border: 2px solid #BFE6D4;
  background-color: transparent;
  font-size: 22px;
  font-weight: 500;
  color: #3C705E;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link {
    font-size: 18px;
    padding: 8px 14px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link {
    font-size: 16px;
    padding: 7px 12px;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link {
    width: 100%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link:hover {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link .courses-tabs-button-inenr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
  width: 16px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link .courses-tabs-button-inenr .image-wrapper img {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .nav-link:focus {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .top-inner-tabs-time-button-wrapper .right-side-viewBooking-buyMoreHours-section .nav .active {
  background-color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper {
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper .left-title h3 {
  font-size: 41px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper .left-title h3 {
    font-size: 19px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper .right-view-wrapper .nav-link .courses-tabs-button-inenr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper .right-view-wrapper .nav-link .courses-tabs-button-inenr .image-wrapper img {
  width: 26px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .top-title-view-wrapper .right-view-wrapper .active {
  background-color: transparent;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .zabuto-calendar {
  table-layout: fixed;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 25px;
  background-color: #EFF4F2;
  border-radius: 20px;
  padding: 25px;
  padding-bottom: 50px;
}
@media (max-width: 1499px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper {
    padding: 20px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  min-height: 310px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar {
    padding: 20px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr td {
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.1s ease-in-out;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr td::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: -1;
  transition: 0.1s ease-in-out;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr td:hover::before {
  background-color: #DCF4E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--empty::before {
  display: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today {
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.1s ease-in-out;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  transition: 0.1s ease-in-out;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: -1;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today:hover::before {
  background-color: #DCF4E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar tbody tr .selected::before {
  background-color: #DCF4E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation {
  position: relative;
  border-bottom: 10px solid transparent;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev {
  position: absolute;
  right: 70px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev {
    font-size: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev span {
  font-size: 16px;
  user-select: none;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev span {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next {
  font-size: 16px;
  position: absolute;
  right: 20px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next span {
    font-size: 13px !important;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next span {
  font-size: 16px;
  user-select: none;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next span {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation__item--header {
  text-align: left;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation__item--header span {
  font-size: 18px;
  font-weight: 500;
  margin-left: -47px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation__item--header span {
    margin-left: -25px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week__item {
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week__item {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__day {
    font-size: 13px !important;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__day span {
    font-size: 13px !important;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__day--today {
    font-size: 13px !important;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__day--today span {
    font-size: 13px !important;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .slots-unavailable span {
  color: #374151;
  font-size: 16px;
  font-weight: 400;
  width: 32px;
  height: 32px;
  background-color: #E1F0E9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .slots-available span {
  color: white;
  font-size: 16px;
  font-weight: 400;
  width: 32px;
  height: 32px;
  background-color: #3C705E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .scheduled span {
  color: #374151;
  font-size: 16px;
  font-weight: 400;
  width: 32px;
  height: 32px;
  background-color: #22C55E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .day-view-calendar .zabuto-calendar__day--today span {
  color: #374151;
  font-weight: 400;
  font-size: 16px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper {
    gap: 5px;
    padding-left: 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper p {
  margin-bottom: 0;
  padding: 0px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper p {
    font-size: 9px;
    padding: 0 6px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper .slots-unavailable {
  background-color: #E1F0E9;
  color: #364045;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper .slots-available {
  background-color: #3C705E;
  color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .outer-day-view-calendar-wrapper .legends-wrapper .scheduled {
  color: white;
  background-color: #22C55E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E1F0E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: #3C705E;
  z-index: -1;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .day-title {
  padding: 15px 25px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .day-title {
    padding: 12px 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .day-title h3 {
  margin-bottom: 0;
  font-size: 28px;
  color: white;
  font-weight: bold;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .day-title h3 {
    font-size: 19px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table {
  width: 100%;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr {
  border-bottom: 1px solid #BFE6D4;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr:last-child {
  border-bottom: 0px solid transparent;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr td {
  padding: 15px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr td {
    padding: 5px 6px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr td:first-child {
  min-width: 110px;
  color: #3C705E;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr td:first-child {
    font-size: 14px;
    min-width: 70px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr td:last-child {
  padding-left: 2px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .scheduled {
  padding: 2px;
  background-color: #DCF4E9;
  border-radius: 11px;
  padding-left: 15px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details {
  padding: 5px 10px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details p {
  margin-bottom: 0;
  padding: 0px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 10px;
  width: fit-content;
  line-height: 20px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details p {
    font-size: 8px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details .scheduled-text {
  color: white;
  background-color: #22C55E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h6 {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  text-transform: uppercase;
  align-items: center;
  font-size: 12px;
  gap: 8px;
  color: #3C705E;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h6 {
    font-size: 9px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h6 span {
  font-size: 14px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h6 span {
    font-size: 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: #3C705E;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .schedule-details h5 {
    font-size: 8px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-unavailable span {
  padding: 3px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  margin-right: 5px;
  background-color: #E1F0E9;
  color: #364045;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-unavailable span {
    font-size: 8px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available span {
  padding: 3px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  margin-right: 5px;
  background-color: #3C705E;
  color: #fff;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available span {
    font-size: 8px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available i {
  color: #3C705E;
  margin-right: 2px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available i {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available .fa-user {
  font-size: 19px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .day-schedule-wrapper .date-schedule-wrapper table tr .slots-available .fa-user {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper {
  background-color: white;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper {
    padding: 10px 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper label {
  font-size: 18px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper label {
    font-size: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper select {
  color: #3C705E;
  font-weight: 500;
  border-radius: 28px;
  border-color: #BFE6D4;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper select {
    padding-right: 32px;
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper {
  margin-top: 20px;
  margin-bottom: 15px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper {
  text-transform: uppercase;
  border: 1px solid #BFE6D4;
  border-radius: 40px;
  padding: 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #3C705E;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper {
    padding: 2px;
    gap: 5px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper .time-wrapper input {
  border: 1px solid #BFE6D4;
  border-radius: 22px;
  color: #3C705E;
  padding: 5px 15px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper .time-wrapper input {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper .time-wrapper input:focus {
  border-color: #BFE6D4;
  outline: none;
  box-shadow: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper span {
  font-size: 14px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .slot-timing-wrapper .slot-inner-wrapper span {
    font-size: 11px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .total-hrs-wrapper p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .total-hrs-wrapper h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  color: #3C705E;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper .total-hrs-wrapper h4 {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper button {
  background-color: #3C705E;
  color: white;
  border-radius: 27px;
  text-align: center;
  width: 100%;
  margin-top: 25px;
  border: none;
  outline: none;
  transition: 0.3s ease-in-out;
  font-size: 18px;
  text-transform: uppercase;
  padding: 12px 15px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper button {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper form .inner-wrapper .topic-time-wrapper .topic-inner-wrapper button:hover {
  opacity: 0.9;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation {
  vertical-align: middle;
  border-bottom: 20px solid transparent;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev {
  text-align: left;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev span {
  color: #3C705E;
  font-size: 22px;
  user-select: none;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--prev span {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--header span {
  font-size: 22px;
  color: #3C705E;
  font-weight: 400;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--header span {
    font-size: 18px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next {
  text-align: right;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next span {
  color: #3C705E;
  font-weight: 400;
  font-size: 22px;
  user-select: none;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__navigation .zabuto-calendar__navigation__item--next span {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week {
  background-color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week th {
  color: white;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week th {
    font-size: 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week th:first-child {
  border-top-left-radius: 9px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar .zabuto-calendar__days-of-week th:last-child {
  border-top-right-radius: 9px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr {
  border-color: #E1F0E9;
  border-width: 1px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr td {
  border-color: #E1F0E9;
  border-width: 1px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day {
  text-align: left;
  height: 100px;
  vertical-align: baseline;
  padding: 15px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day {
    padding: 2px;
    font-size: 10px;
    height: unset;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today {
    font-size: 10px !important;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today span {
    font-size: 10px !important;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .slots-unavailable span {
  background-color: #E1F0E9;
  color: #364045;
  padding: 8px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  display: block;
  width: fit-content;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .slots-unavailable span {
    font-size: 5px;
    padding: 6px 2px;
    margin-top: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .slots-available {
  background-color: #E1F0E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .slots-available span {
  background-color: #3C705E;
  color: white;
  padding: 8px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  display: block;
  width: fit-content;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .slots-available span {
    font-size: 5px;
    padding: 6px 2px;
    margin-top: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .scheduled p {
  margin-bottom: 0;
  background-color: #E2E2AF;
  border-radius: 11px;
  padding: 5px;
  font-size: 12px;
  color: #3C705E;
  font-weight: 400;
  line-height: 18px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .scheduled p {
    font-size: 5px;
    padding: 6px 2px;
    line-height: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .scheduled p span {
  background-color: #22C55E;
  color: white;
  padding: 6px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 400;
  display: block;
  width: fit-content;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .scheduled p span {
    font-size: 5px;
    padding: 6px 2px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today {
  text-align: left;
  vertical-align: baseline;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .day-view-calendar tbody tr .zabuto-calendar__day--today span {
  font-size: 16px;
  color: #212529;
  font-weight: 400;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper {
    gap: 5px;
    padding-left: 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper p {
  margin-bottom: 0;
  padding: 0px 10px;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper p {
    font-size: 9px;
    padding: 0 6px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper .slots-unavailable {
  background-color: #E1F0E9;
  color: #364045;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper .slots-available {
  background-color: #3C705E;
  color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .calendar-view-wrapper .tab-content-wrapper .inner-calendar-wrapper .legends-wrapper .scheduled {
  color: white;
  background-color: #22C55E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive {
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #E1F0E9;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive {
    overflow: auto;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table {
  margin-bottom: 0;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  position: relative;
}
@media (max-width: 1599px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table {
    table-layout: unset;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table::before {
  background-color: #3C705E;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table {
    border-radius: 10px;
  }
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table {
    min-width: 1050px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr:last-child td {
  border: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr:nth-child(2) td:first-child {
  border-top-left-radius: 25px;
  overflow: hidden;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr:nth-child(2) td:last-child {
  border-top-right-radius: 25px;
  overflow: hidden;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr th {
  padding: 15px 30px;
  background-color: #3C705E;
  color: white;
  border-bottom-width: 0px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr th {
    padding: 10px 15px;
  }
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr th {
    font-size: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td {
  padding: 15px 30px;
  background-color: white;
  vertical-align: middle;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td {
    padding: 10px 15px;
  }
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td {
    font-size: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td span {
  font-weight: 500;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td a {
  display: block;
  text-decoration: none;
  border: 1px solid #BFE6D4;
  border-radius: 30px;
  padding: 3px 15px;
  color: #3C705E;
  font-weight: 400;
  width: fit-content;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td a {
    font-size: 15px;
    padding: 3px 9px;
    min-width: 125px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td a:hover {
  background-color: #3C705E;
  color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .steps {
  color: #364045;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .steps {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .steps {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: black;
  font-size: 19px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-text img {
    width: 22px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-text img {
    width: 18px;
  }
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-text {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .link-wrapper {
  text-decoration: none;
  background-color: #E1F0E9;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .link-wrapper {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .link-wrapper {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .completed-link {
  background-color: #3C705E;
  color: white;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper {
  color: #00C43C;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper {
    font-size: 14px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper span {
  background-color: #22C55E;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 15px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper span {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .icon-wrapper span {
    font-size: 20px;
    font-size: 20px;
    font-size: 13px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .lock-icon-wrapper {
  color: #9CA3AF;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .table-responsive table tr td .pending-icon-wrapper {
  color: #F2B100;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content {
  margin-top: 50px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table::before {
  height: 90px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table::before {
    height: 70px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr td .information-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr td .information-wrapper img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr td .schedule-reschedule-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr td .schedule-reschedule-wrapper .links-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr td .schedule-now-wrapper .links-wrapper {
  padding-left: 29px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr:nth-child(2) {
  background-color: #E1F0E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr:nth-child(2) td {
  background-color: transparent;
  border: none;
  margin-top: 4px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr:nth-child(2) td:first-child {
  border-bottom-left-radius: 25px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .table-responsive table tr:nth-child(2) td:last-child {
  border-bottom-right-radius: 25px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper {
    flex-direction: column;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper h5 {
  margin-bottom: 0;
  color: #3C705E;
  font-weight: bold;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper h5 {
    font-size: 18px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper a {
  border: 2px solid #BFE6D4;
  border-radius: 30px;
  padding: 7px 19px;
  text-decoration: none;
  color: #3C705E;
  font-weight: 500;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper a {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .practical-hours-tab-content .bottom-reschedule-wrapper a:hover {
  background-color: #3C705E;
  color: white;
  border-color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
  padding-right: 50px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .modal-header {
    padding-right: 20px;
    padding-top: 20px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .modal-header .btn-close {
  opacity: 1;
  background: none;
  color: #3C705E;
  border: 1px solid #3C705E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .modal-header .btn-close:focus {
  box-shadow: none;
  outline: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper .title-wrapper {
  margin-bottom: 20px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper .title-wrapper h5 {
  font-size: 22px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group label {
  text-align: left;
  display: block;
  padding-left: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group label {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group input {
  background-color: #F7F7F7;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 45px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group input {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group input {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group input {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group input:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group textarea {
  background-color: #F7F7F7;
  border-radius: 23px;
  font-size: 22px;
  font-weight: 500;
  color: #3A6A59;
  padding: 12px;
  border: 1px solid transparent;
  padding-right: 45px;
  resize: none;
  height: 150px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group textarea {
    font-size: 18px;
    height: 120px;
  }
}
@media (max-width: 1399px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group textarea {
    padding: 6px 12px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group textarea {
    font-size: 16px;
    height: 100px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .form-group textarea:focus {
  border-color: #3C705E;
  outline: none;
  box-shadow: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .submit-wrapper {
  text-align: center;
  margin-top: 30px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .submit-wrapper .submit_btn {
  width: fit-content;
  background-color: #3C705E;
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 12px 40px;
  border: 1px solid #3C705E;
  border-radius: 32px;
  transition: 0.3s ease-in-out;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .submit-wrapper .submit_btn {
    font-size: 20px;
    padding: 8px 30px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .submit-wrapper .submit_btn {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .modal .reschedule-form-wrapper form .submit-wrapper .submit_btn:hover {
  color: #3C705E;
  background-color: transparent;
}
@media (min-width: 576px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog {
    max-width: 66%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content {
  border-radius: 74px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content {
    border-radius: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content .modal-header {
  padding-right: 50px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content .modal-header {
    padding-right: 20px;
    padding-top: 20px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content .modal-body {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper .rescheduleModal .modal-dialog .modal-content .modal-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 576px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog {
    max-width: 80%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .modal-content {
  background-color: #F5F9F7;
  border-radius: 43px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .modal-content {
    border-radius: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .modal-header h5 {
  font-size: 33px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .modal-header h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .modal-header h5 {
    font-size: 19px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-course-title {
  background-color: #3C705E;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-course-title h5 {
  margin-bottom: 0;
  color: white;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-course-title h5 {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form {
    flex-direction: column;
    gap: 30px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check {
  display: flex;
  align-items: center;
  padding: 4px;
  padding-right: 15px;
  border-radius: 9px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check:hover {
  background-color: #E1F0E9;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check label {
  user-select: none;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  width: 100%;
  font-size: 22px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check label {
    font-size: 15px;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check label span {
    min-width: 40px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check input {
  margin-right: 10px;
  margin-left: 0;
  border-color: #C7C7C7;
  border-width: 2px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  transition: 0.3s ease-in-out;
  min-width: 20px;
  min-height: 20px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check input::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e876";
  font-family: "Material Icons";
  font-weight: 700;
  font-size: 0px;
  color: white;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check input:focus {
  box-shadow: none;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check .form-check-input:checked {
  background-color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check .form-check-input:checked[type=checkbox] {
  border-color: #3C705E;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .left-select-course-wrapper .form-check .form-check-input:checked[type=checkbox]::after {
  opacity: 1;
  font-size: 16px;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course {
    padding: 20px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course h5 {
  color: #3C705E;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course h5 {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course .course-wrapper-details .course-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 25px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course .course-wrapper-details .course-details {
    gap: 50px;
    margin-bottom: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course .course-wrapper-details .course-details h6 {
  margin-bottom: 0;
  color: #364045;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course .course-wrapper-details .course-details h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .selected-course .course-wrapper-details .course-details h6 {
    min-width: 40px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper {
  margin-top: 25px;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper {
    padding: 20px 12px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .inner-wrapper .total-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 25px;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .inner-wrapper .total-box {
    gap: 50px;
    margin-bottom: 10px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .inner-wrapper .total-box:first-child h6 {
  color: #059D57;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .inner-wrapper .total-box h6 {
  margin-bottom: 0;
  color: #364045;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .inner-wrapper .total-box h6 {
    font-size: 16px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .submit-wrapper .submit_btn {
  width: 100%;
  border-radius: 43px;
  background-color: #3C705E;
  border: 1px solid #3C705E;
  color: white;
  font-size: 24px;
  font-weight: 400;
  padding: 12px 15px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .submit-wrapper .submit_btn img {
  max-width: 40px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .submit-wrapper .submit_btn img {
    max-width: 28px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .submit-wrapper .submit_btn:hover {
  opacity: 0.9;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1750px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBuyPractical .modal-dialog .select-practical-hours-form form .right-selected-course-wrapper .totals-wrapper .submit-wrapper .submit_btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook {
  text-align: center;
}
@media (min-width: 576px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-dialog {
    max-width: 50%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-dialog .modal-content {
  border-radius: 74px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-dialog .modal-content {
    border-radius: 15px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .icon-wrapper {
  background-color: #22C55E;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .icon-wrapper {
    width: 50px;
    height: 50px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .icon-wrapper span {
  font-size: 42px;
  color: white;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .icon-wrapper span {
    font-size: 28px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook h3 {
  font-size: 41px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook h3 br {
    display: none;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook p {
  font-size: 22px;
  color: #000000;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook p {
    font-size: 16px;
    max-width: 100%;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook h6 {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 50px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook h6 {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-footer {
  border: none;
  justify-content: center;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-footer {
    padding-bottom: 20px;
  }
}
.my-courses-details-tabs-button-wrapepr .my-courses-tab-content-wrapepr .my-courses-tab-content-inner .schedule-tab-content-wrapper .schedule-session-content-wrapper #staticBackdropBook .modal-footer button {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: #3C705E;
  text-transform: uppercase;
  color: white;
  border-radius: 27px;
  text-align: center;
  padding: 8px 60px;
}

#schedule-contents-section {
  display: none;
}

#view-your-bookings {
  display: none;
}

.view-bookings-schedule-wrapper .table-responsive {
  margin-top: 50px;
}

.exams-section-wrapper {
  background-color: #F0F5F3;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .exams-section-wrapper {
    padding-top: 90px;
  }
}
.exams-section-wrapper .exams-section-inner {
  padding: 50px 0;
}
.exams-section-wrapper .exams-section-inner .exams-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-title {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    align-items: baseline;
  }
}
.exams-section-wrapper .exams-section-inner .exams-title h4 {
  font-size: 45px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 0px;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-title h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-title h4 {
    font-size: 22px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 {
  color: #3C705E;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 {
    font-size: 22px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 img {
  max-width: 41px;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 img {
    width: 30px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-title .time-wrapper h5 img {
    font-size: 24px;
  }
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper {
  margin-bottom: 15px;
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .question-number-wrapper ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
  }
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper ul li {
  list-style: none;
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper ul li a {
  text-decoration: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E1F0E9;
  color: #8FB0A3;
  font-size: 18px;
  border: 1px solid transparent;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .question-number-wrapper ul li a {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .question-number-wrapper ul li a {
    font-size: 13px;
  }
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper ul li .skipped {
  background-color: white;
  border-color: #3C705E;
}
.exams-section-wrapper .exams-section-inner .question-number-wrapper ul li .answered {
  background-color: #3C705E;
  color: white;
  border-color: #3C705E;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper {
  background-color: white;
  border-radius: 31px;
  padding: 30px;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper {
    padding: 30px 25px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper {
    padding: 30px 10px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper p {
  font-size: 25px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper p {
    font-size: 16px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper h5 {
  color: #3C705E;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper h5 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper h5 {
    font-size: 16px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper .form-check {
  position: relative;
  margin-bottom: 12px;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper .form-check:last-child {
  margin-bottom: 0;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper input[type=radio] {
  visibility: hidden;
  position: absolute;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper input {
  border: 2px solid #D1D5DB;
  width: 24px;
  height: 24px;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper input:focus {
  box-shadow: none;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper label {
  font-size: 25px;
  font-weight: 400;
  color: #3C705E;
  margin-left: 10px;
  cursor: pointer;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper label {
    font-size: 16px;
    margin-left: 5px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper .check {
  cursor: pointer;
  display: block;
  position: absolute;
  border: 2px solid #D1D5DB;
  border-radius: 100%;
  height: 24px;
  width: 24px;
  top: 2px;
  left: 0;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper .check {
    width: 22px;
    height: 22px;
    top: 3px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper .check {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .bg-wrapper input[type=radio]:checked ~ .check {
  background-color: #3C705E;
  border-color: #3C705E;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side p {
  margin-bottom: 0;
  font-size: 14px;
  color: #3C705E;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side p:last-child span {
  background-color: transparent;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side p span {
  display: block;
  width: 29px;
  height: 29px;
  background-color: #3C705E;
  border-radius: 50%;
  border: 1px solid #3C705E;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side p span {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .left-side p span {
    font-size: 22px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .btn-btn {
  border: 1px solid #3C705E;
  background-color: #3C705E;
  border-radius: 30px;
  color: white;
  padding: 9px 40px;
  text-align: center;
  min-width: 145px;
  font-size: 26px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .btn-btn {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .btn-btn {
    font-size: 16px;
    padding: 6px 15px;
  }
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .btn-btn:hover {
  background-color: transparent;
  color: #3C705E;
}
.exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .right-side {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .exams-section-wrapper .exams-section-inner .exams-questions-wrapper .button-wrapper .right-side {
    gap: 5px;
  }
}

.exam-success-section {
  background-color: #F0F5F3;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .exam-success-section {
    padding-top: 90px;
  }
}
.exam-success-section .inner-wrapper {
  padding: 50px 0;
}
.exam-success-section .inner-wrapper .exam-success-inner {
  background-color: white;
  border-radius: 31px;
  padding: 50px;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  text-align: center;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner {
    padding: 30px 25px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner {
    padding: 30px 10px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #22C55E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper span {
  font-size: 80px;
  color: white;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper span {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner .icon-wrapper span {
    font-size: 35px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner h4 {
  color: #3C705E;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner h5 {
  color: #3C705E;
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 68px;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner h5 {
    font-size: 28px;
    line-height: unset;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .image-wrapper {
  margin-top: 45px;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner .image-wrapper {
    margin-top: 30px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .image-wrapper img {
  width: 130px;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner .image-wrapper img {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner .image-wrapper img {
    width: 60px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .link-wrapper a {
  display: block;
  background-color: #3C705E;
  color: white;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
  border: 1px solid #3C705E;
  padding: 8px 35px;
  text-decoration: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 31px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .exam-success-section .inner-wrapper .exam-success-inner .link-wrapper a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .exam-success-section .inner-wrapper .exam-success-inner .link-wrapper a {
    font-size: 16px;
    padding: 5px 30px;
  }
}
.exam-success-section .inner-wrapper .exam-success-inner .link-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}

#staticBackdropskipped .modal-content {
  background-color: #E1F0E9;
  border-radius: 19px;
  text-align: center;
}
#staticBackdropskipped .modal-content .modal-body {
  padding: 20px;
  padding-top: 50px;
}
#staticBackdropskipped .modal-content .modal-body p {
  font-size: 17px;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1750px) {
  #staticBackdropskipped .modal-content .modal-body p {
    font-size: 16px;
  }
}
#staticBackdropskipped .modal-content .modal-footer {
  justify-content: center;
  border: none;
  padding: 20px;
  padding-top: 0;
  padding-bottom: 50px;
}
#staticBackdropskipped .modal-content .modal-footer .attempt-btn {
  text-decoration: none;
  color: white;
  background-color: #3C705E;
  border-radius: 35px;
  text-align: center;
  font-size: 15px;
  transition: 0.3s ease-in-out;
  margin: 0;
  padding: 7px 20px;
}
@media (max-width: 1750px) {
  #staticBackdropskipped .modal-content .modal-footer .attempt-btn {
    font-size: 14px;
  }
}
#staticBackdropskipped .modal-content .modal-footer .attempt-btn:hover {
  background-color: transparent;
  color: #3C705E;
}

@media (min-width: 576px) {
  #staticBackdropconfirmsubmit .modal-dialog {
    max-width: 1099px;
  }
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content {
  border-radius: 31px;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body {
  padding: 20px;
  padding-top: 50px;
  text-align: center;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body h4 {
  font-size: 45px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0px;
}
@media (max-width: 1750px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body h4 {
    font-size: 22px;
  }
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body p {
  font-size: 45px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 30px;
  line-height: 68px;
}
@media (max-width: 1750px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body p {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-body p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer {
  justify-content: center;
  border: none;
  padding: 20px;
  padding-top: 0;
  padding-bottom: 50px;
  gap: 10px;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer button {
  margin: 0;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  padding: 7px 30px;
  border-radius: 31px;
  text-align: center;
  border: 1px solid #3C705E;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer button {
    font-size: 18px;
    padding: 7px 20px;
  }
}
@media (max-width: 991px) {
  #staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer button {
    font-size: 16px;
    padding: 7px 15px;
  }
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer .cancel-btn {
  background-color: transparent;
  color: #3C705E;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer .cancel-btn:hover {
  background-color: #3C705E;
  color: white;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer .submit-btn {
  background-color: #3C705E;
}
#staticBackdropconfirmsubmit .modal-dialog .modal-content .modal-footer .submit-btn:hover {
  background-color: transparent;
  color: #3C705E;
}

@media (min-width: 576px) {
  #staticBackdropsubmit .modal-dialog {
    max-width: 1099px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content {
  border-radius: 31px;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body {
  padding: 20px;
  padding-top: 50px;
  text-align: center;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #22C55E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper {
    width: 55px;
    height: 55px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper span {
  font-size: 80px;
  color: white;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper span {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .icon-wrapper span {
    font-size: 35px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body h4 {
  font-size: 45px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0px;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body h4 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body h4 {
    font-size: 22px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body p {
  font-size: 45px;
  font-weight: 400;
  color: #3C705E;
  margin-bottom: 30px;
  line-height: 68px;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body p {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper {
    margin-bottom: 0;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  color: #3C705E;
  border: 1px solid #3C705E;
  background-color: #BFE6D4;
  border-radius: 31px;
  padding: 9px 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper a {
    font-size: 18px;
    padding: 7px 20px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper a {
    font-size: 16px;
    padding: 7px 15px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-body .link-wrapper a:hover {
  background-color: #3C705E;
  color: white;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer {
  justify-content: center;
  border: none;
  padding: 20px;
  padding-top: 0;
  padding-bottom: 50px;
  gap: 10px;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer button {
  margin: 0;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  padding: 7px 30px;
  border-radius: 31px;
  text-align: center;
  border: 1px solid #3C705E;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-footer button {
    font-size: 18px;
    padding: 7px 20px;
  }
}
@media (max-width: 991px) {
  #staticBackdropsubmit .modal-dialog .modal-content .modal-footer button {
    font-size: 16px;
    padding: 7px 15px;
  }
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer .cancel-btn {
  background-color: transparent;
  color: #3C705E;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer .cancel-btn:hover {
  background-color: #3C705E;
  color: white;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer .submit-btn {
  background-color: #3C705E;
}
#staticBackdropsubmit .modal-dialog .modal-content .modal-footer .submit-btn:hover {
  background-color: transparent;
  color: #3C705E;
}

.progress-statistics-section .progress {
  width: 130px;
  height: 130px;
  line-height: 130px;
  background: none;
  box-shadow: none;
  position: relative;
  justify-content: center;
}
@media (max-width: 1199px) {
  .progress-statistics-section .progress {
    width: 105px;
    height: 105px;
  }
}
@media (max-width: 767px) {
  .progress-statistics-section .progress {
    margin: 0 auto;
  }
}
.progress-statistics-section .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.progress-statistics-section .progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress-statistics-section .progress .progress-left {
  left: 0;
}
.progress-statistics-section .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #22C55E;
}
@media (max-width: 1199px) {
  .progress-statistics-section .progress .progress-bar {
    border-width: 7px;
  }
}
.progress-statistics-section .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress-statistics-section .progress .progress-right {
  right: 0;
}
.progress-statistics-section .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 65px;
  border-bottom-left-radius: 65px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.progress-statistics-section .progress .progress-value {
  display: flex;
  border-radius: 50%;
  font-size: 37px;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #3C705E;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .progress-statistics-section .progress .progress-value {
    font-size: 22px;
  }
}
.progress-statistics-section .progress .progress-value span {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .progress-statistics-section .progress .progress-value span {
    font-size: 16px;
  }
}

/* This for loop creates the 	necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1s linear forwards;
}
.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1s linear forwards;
}
.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1s linear forwards;
}
.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1s linear forwards;
}
.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1s linear forwards 1s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1s linear forwards 1s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1s linear forwards 1s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1s linear forwards 1s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1s linear forwards;
}
.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1s linear forwards 1s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.answer-full-section {
  background-color: #F0F5F3;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 991px) {
  .answer-full-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.answer-full-section .go-back-wrapper {
  padding-top: 30px;
  margin-bottom: 25px;
}
.answer-full-section .go-back-wrapper a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  background-color: #3C705E;
  border-radius: 31px;
  border: 1px solid #3C705E;
  width: fit-content;
  padding: 8px 20px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .answer-full-section .go-back-wrapper a {
    padding: 7px 15px;
  }
}
.answer-full-section .go-back-wrapper a:hover {
  background-color: transparent;
  color: #3C705E;
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: white;
  border-radius: 31px;
  padding: 20px;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .top-details-section {
    flex-direction: column;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section .icon-wrapper {
  width: 106px;
  height: 106px;
  background-color: #E1F0E9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .top-details-section .icon-wrapper {
    width: 80px;
    height: 80px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section .icon-wrapper img {
  width: 50px;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .top-details-section .icon-wrapper img {
    width: 40px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section .right-details-wrapper div:first-child {
  margin-bottom: 15px;
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section .right-details-wrapper div h6 {
  font-size: 17px;
  color: #3C705E;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .top-details-section .right-details-wrapper div h6 {
    font-size: 16px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .top-details-section .right-details-wrapper div h5 {
  font-size: 20px;
  font-weight: 500;
  color: #242A2E;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .top-details-section .right-details-wrapper div h5 {
    font-size: 17px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: white;
  border-radius: 31px;
  padding: 20px;
  gap: 30px;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
}
@media (max-width: 767px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 5px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section {
  text-align: center;
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper {
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper {
    min-height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper span {
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper span {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper img {
  width: 30px;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section .icon-wrapper img {
    width: 20px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section h4 {
  font-size: 35px;
  color: black;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section h4 {
    font-size: 22px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section p {
  color: #3C705E;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .answers-time-section p {
    font-size: 14px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .correct-answer-statistics .icon-wrapper span {
  background-color: #22C55E;
}
.answer-full-section .answer-key-section .answer-key-inner .answer-statistics-section .wrong-answer-statistics .icon-wrapper span {
  background-color: #F44336;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section {
  background-color: white;
  border-radius: 31px;
  padding: 20px;
  gap: 30px;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.09);
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .title-wrapper {
  margin-bottom: 20px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .title-wrapper h4 {
  font-size: 24px;
  font-weight: bold;
  color: #3C705E;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .title-wrapper h4 {
    font-size: 22px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper {
  background-color: white;
  border-radius: 17px;
  border: 1px solid #BFE6D4;
  margin-bottom: 10px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .question-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .question-wrapper h5 {
  color: black;
  font-size: 17px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .question-wrapper h5 {
    font-size: 16px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .question-wrapper h5 span {
  font-weight: 400;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .question-wrapper .answer-icon span {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .answers-option {
  background-color: white;
  padding: 15px;
  border-radius: 17px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .answers-option h6 {
  font-size: 17px;
  font-weight: bold;
  color: #3A6A59;
}
@media (max-width: 1199px) {
  .answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .answers-option h6 {
    font-size: 16px;
  }
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .question-answers-wrapper .answers-option h6 span {
  font-weight: 400;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .correct-answer .question-wrapper .answer-icon span {
  background-color: #22C55E;
  font-size: 14px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .correct-answer .answers-option {
  padding-top: 0;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .wrong-answer {
  background-color: #FDDFD6;
  border-color: #FDDFD6;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .wrong-answer .question-wrapper .answer-icon span {
  background-color: #F44336;
  font-size: 14px;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .wrong-answer .answers-option h6:first-child span {
  color: #FF003B;
  text-decoration-line: line-through;
}
.answer-full-section .answer-key-section .answer-key-inner .detailed-results-section .wrong-answer .answers-option h6:last-child span {
  color: #22C55E;
  font-weight: bold;
}

.get-in-touch-section {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .get-in-touch-section {
    margin-top: 70px;
  }
}
.get-in-touch-section .get-in-touch-container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container {
    max-width: 100%;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section {
  background-color: #E1F0E9;
  border-radius: 46px;
  padding: 70px 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  margin-top: -180px;
}
@media (max-width: 1499px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section {
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section {
    margin-top: 0;
    padding: 50px 12px;
    border-radius: 15px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .title-wrapper {
  text-align: center;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .title-wrapper h2 {
  font-weight: bold;
  color: #3C705E;
  font-size: 44px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .title-wrapper h2 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .title-wrapper h2 {
    font-size: 20px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 50px;
}
@media (max-width: 1199px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  height: 100%;
}
@media (max-width: 1199px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper .icon-wrapper {
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper .icon-wrapper {
    margin-bottom: 8px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper .icon-wrapper img {
  width: 100%;
  max-width: 66px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper .icon-wrapper img {
    max-width: 55px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper .icon-wrapper img {
    max-width: 40px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper p {
  font-size: 28px;
  font-weight: 400;
  color: black;
  margin-bottom: 8px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper a {
  font-size: 28px;
  font-weight: bold;
  color: black;
  display: block;
  width: fit-content;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper a {
    font-size: 16px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .call-email-time-schedule-section .addresses-box-wrapper .box-wrapper a:hover {
  color: #3C705E;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper {
  background-color: white;
  border-radius: 46px;
  padding: 50px;
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper {
    padding: 50px 12px;
    border-radius: 15px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group {
  margin-bottom: 20px;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group label {
  font-size: 20px;
  font-weight: 400;
  color: #3C705E;
  text-transform: uppercase;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group label {
    font-size: 16px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group input {
  border-radius: 33px;
  border: 2px solid #BFE6D4;
  font-size: 26px;
  color: black;
  font-weight: 400;
  padding: 11px 25px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group input {
    font-size: 18px;
    padding: 9px 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group input {
    font-size: 16px;
    padding: 8px 18px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group input:focus {
  box-shadow: none;
  outline: none;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group textarea {
  border-radius: 33px;
  border: 2px solid #BFE6D4;
  font-size: 26px;
  color: black;
  font-weight: 400;
  padding: 11px 25px;
  height: 290px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group textarea {
    font-size: 18px;
    padding: 9px 20px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group textarea {
    font-size: 16px;
    padding: 8px 18px;
    height: 150px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .form-group textarea:focus {
  box-shadow: none;
  outline: none;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .submit-wrapper .submit_btn {
  background-color: #3C705E;
  color: white;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  border: 1px solid #3C705E;
  border-radius: 33px;
  padding: 17px 75px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .submit-wrapper .submit_btn {
    font-size: 20px;
    padding: 9px 25px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .submit-wrapper .submit_btn {
    font-size: 18px;
    padding: 8px 25px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .top-section .inner-wrapper .form-wrapper .form-inner form .submit-wrapper .submit_btn:hover {
  background-color: transparent;
  color: #3C705E;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section {
  background-color: #E1F0E9;
  border-radius: 46px;
  overflow: hidden;
  padding: 50px 15px 10px 15px;
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section {
    border-radius: 15px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address {
  text-align: center;
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address p {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address p {
    font-size: 16px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address h6 {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin-bottom: 30px;
  line-height: 40px;
}
@media (max-width: 1750px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address h6 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address h6 {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1499px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .top-address h6 br {
    display: none;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .map-inner {
  border-radius: 36px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .map-inner {
    border-radius: 15px;
  }
}
.get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .map-inner iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
@media (max-width: 991px) {
  .get-in-touch-section .get-in-touch-container .get-in-touch-inner-wrapper .bottom-map-section .bottom-map-inner .map-inner iframe {
    min-height: 300px;
  }
}

.ultherapy-hero-section {
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  overflow: hidden;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .ultherapy-hero-section {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.ultherapy-hero-section .bg-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  min-height: 99vh;
  position: relative;
  z-index: 1;
  padding-left: 8%;
  padding-bottom: 9%;
}
@media (max-width: 1760px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 6%;
  }
}
@media (max-width: 1680px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 1%;
    padding-bottom: 9.5%;
  }
}
@media (max-width: 1600px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-bottom: 9%;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-top: 25px;
    padding-left: 9%;
  }
}
@media (max-width: 1280px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 4%;
  }
}
@media (max-width: 1199px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 3%;
  }
}
@media (max-width: 1024px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .ultherapy-hero-section .bg-wrapper {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper {
    min-height: unset;
  }
}
.ultherapy-hero-section .bg-wrapper .top-logo-wrapper {
  text-align: right;
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .top-logo-wrapper {
    text-align: center;
  }
}
.ultherapy-hero-section .bg-wrapper .top-logo-wrapper a img {
  width: 205px;
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  align-items: center;
}
@media (max-width: 991px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner {
    padding-top: 50px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 {
  font-weight: 300;
  color: white;
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 span {
  font-weight: 500;
  text-transform: uppercase;
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-50 {
  font-size: 50px;
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-50 {
    font-size: 40px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-50 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-50 {
    font-size: 22px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-47 {
  font-size: 47px;
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-47 {
    font-size: 37px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-47 {
    font-size: 31px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .font-47 {
    font-size: 22px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 {
  color: #FFDEA5;
  font-weight: 600;
  font-size: 141px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 {
    font-size: 110px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 {
    font-size: 93px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h2 {
    font-size: 46px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section p {
  font-size: 32px;
  font-weight: 300;
  color: white;
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section p {
    font-size: 26px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section p {
    font-size: 22px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h3:first-of-type {
  margin-top: 25px;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section h3:first-of-type {
    margin-top: 20px;
    color: #fff;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .ultherapy-logo {
  margin-bottom: 15px;
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .ultherapy-logo img {
  width: 100%;
  max-width: 714px;
}
@media (max-width: 1499px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .ultherapy-logo img {
    max-width: 580px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .ultherapy-logo img {
    max-width: 485px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .ultherapy-logo img {
    max-width: 300px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper {
  margin-top: 40px;
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper {
    margin-top: 30px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  background-color: #FFDEA5;
  border-radius: 32px;
  padding: 9.5px 46px;
  color: #7A5030;
  font-size: 38px;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a {
    font-size: 20px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a span {
  font-size: 45px;
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a span {
    font-size: 26px;
  }
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .left-content-section .link-wrapper a:hover {
  background-color: white;
}
.ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
  width: 1015px;
  position: absolute;
  right: 6%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1760px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 960px;
  }
}
@media (max-width: 1599px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 900px;
  }
}
@media (max-width: 1440px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 800px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 735px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 700px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    width: 600px;
  }
}
@media (max-width: 991px) {
  .ultherapy-hero-section .bg-wrapper .ultherapy-hero-inner .right-image-section img {
    position: unset;
    right: unset;
    bottom: unset;
    width: 100%;
  }
}

.ultherapy-provider-clinic-section {
  margin-bottom: 50px;
}
.ultherapy-provider-clinic-section .ultherapy-provider-container {
  max-width: 1388px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner {
  overflow: hidden;
  padding: 50px;
  border-radius: 76px;
  border: 1px solid #C5986E;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner {
    border-radius: 40px;
    padding: 50px 15px;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section h2 {
  font-size: 51px;
  font-weight: 500;
  color: #7A5030;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section h2 {
    font-size: 24px;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p {
  color: #190B00;
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p {
    font-size: 27px;
    line-height: 41px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p {
    font-size: 24px;
    line-height: 38px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .left-content-section p br {
    display: none;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section {
    grid-template-columns: 1.4fr 1fr;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section {
    grid-template-columns: 1fr;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .left-image-section {
  text-align: right;
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .left-image-section {
    text-align: center;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .left-image-section .image-wrapper img {
  max-width: 313px;
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .left-image-section .image-wrapper img {
    width: 100%;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .right-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .right-image-section {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .right-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .right-image-section .image-wrapper {
    text-align: center;
  }
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .right-image-section .image-wrapper img {
  max-width: 125px;
}
.ultherapy-provider-clinic-section .ultherapy-provider-container .ultherapy-provider-inner .right-side-image-section .inner-image-section .image-wrapper img {
  width: 100%;
}

.ultherapy-gold-standard-section {
  margin-bottom: 60px;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container {
  max-width: 1475px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper {
  text-align: center;
  margin-bottom: 15px;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper h2 {
  font-size: 52px;
  font-weight: 500;
  color: #7A5030;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper h2 {
    font-size: 24px;
  }
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper p {
  color: black;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 38px;
}
@media (max-width: 1366px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .top-title-para-wrapper p br {
    display: none;
  }
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1440px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper::before {
  border: 1px solid #7A5030;
  border-radius: 29px;
  width: 100%;
  height: calc(100% - 50px);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .image-wrapper {
  background-color: white;
  padding: 15px;
  text-align: center;
  min-height: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper {
  padding: 40px;
  padding-top: 0;
  padding-bottom: 20px;
}
@media (max-width: 1440px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper {
    padding: 30px 15px;
    padding-top: 0;
  }
}
.ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper p {
  font-size: 20px;
  font-weight: 300;
  color: black;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ultherapy-gold-standard-section .ultherapy-gold-standard-container .ultherapy-gold-standard-inner .gold-standard-skin-box-wrapper .box-wrapper .content-wrapper p {
    line-height: 26px;
  }
}

.global-secret-section {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.global-secret-section .global-secret-container {
  max-width: 1531px;
  margin-left: auto;
  margin-right: auto;
}
.global-secret-section .global-secret-container .global-secret-inner {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}
.global-secret-section .global-secret-container .global-secret-inner::before {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1447px;
  content: "";
  z-index: -1;
  height: 100%;
  border-radius: 76px;
  background-image: linear-gradient(to bottom, #fff2e5, #fff3ef, #fff7f9, #fffbfe, #ffffff);
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner::before {
    border-radius: 40px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .top-section {
  text-align: center;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner .top-section {
    padding: 0 15px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .top-section h2 {
  font-size: 52px;
  font-weight: 500;
  color: #7A5030;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .global-secret-section .global-secret-container .global-secret-inner .top-section h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .global-secret-section .global-secret-container .global-secret-inner .top-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner .top-section h2 {
    font-size: 24px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 59px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper {
    background-image: unset !important;
    background-position: unset;
    background-size: unset;
    border-radius: 40px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .mobile-image-wrapper {
  display: none;
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .mobile-image-wrapper img {
  width: 100%;
}
@media (max-width: 991px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .mobile-image-wrapper {
    display: block;
    width: 100%;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper {
  padding: 40px 0;
  padding-left: 46%;
  padding-right: 2%;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper {
    background-color: #efe5ce;
    padding: 30px 0;
    padding-left: 15px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 {
  font-size: 44px;
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  line-height: 67px;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 {
    font-size: 34px;
    line-height: 57px;
  }
}
@media (max-width: 1366px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 1024px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 {
    font-size: 16px;
    line-height: 27px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper h3 span {
  font-weight: 500;
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper {
  text-align: right;
  padding-right: 17%;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper {
    padding-right: 15px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper img {
  width: 100%;
  max-width: 220px;
  margin-top: -5%;
  z-index: -1;
}
@media (max-width: 1366px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper img {
    max-width: 190px;
  }
}
@media (max-width: 1024px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper img {
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .sign-wrapper img {
    max-width: 100px;
    margin-top: 0;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper {
  padding-left: 15%;
}
@media (max-width: 767px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper {
    padding-left: 0px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper h6 {
  font-size: 30px;
  font-weight: 400;
  color: black;
}
@media (max-width: 1366px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper h6 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper h6 {
    font-size: 18px;
  }
}
.global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper p {
  font-size: 25px;
  font-style: italic;
  font-weight: 300;
  color: black;
  margin-bottom: 0;
  line-height: 38px;
}
@media (max-width: 1366px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1024px) {
  .global-secret-section .global-secret-container .global-secret-inner .global-secret-review-section .bg-wrapper .inner-content-wrapper .bottom-designation-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.global-secret-section .graphics-wrapper .left-graphics {
  position: absolute;
  right: 0;
  top: 0;
  width: 607px;
  right: -350px;
  z-index: -1;
}
@media (max-width: 991px) {
  .global-secret-section .graphics-wrapper .left-graphics {
    display: none;
  }
}
.global-secret-section .graphics-wrapper .right-graphics {
  position: absolute;
  bottom: -400px;
  width: 622px;
  left: -350px;
  z-index: -1;
}
@media (max-width: 991px) {
  .global-secret-section .graphics-wrapper .right-graphics {
    display: none;
  }
}

.ultherapy-prime-section {
  margin-bottom: 100px;
}
.ultherapy-prime-section .bg-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container {
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  align-items: center;
}
@media (max-width: 991px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section h1 {
  font-size: 55px;
  font-weight: 500;
  color: white;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section h1 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section h1 {
    font-size: 24px;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper {
  position: relative;
  z-index: 1;
  padding: 15px;
  padding-left: 0;
  padding-right: 58px;
}
@media (max-width: 1280px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper {
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper {
    border: 3px solid #FFC895;
    border-radius: 25px;
    padding: 20px;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper::before {
  position: absolute;
  left: -45px;
  top: 0;
  width: 140%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 38px;
  border: 3px solid #FFC895;
}
@media (max-width: 1280px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper::before {
    left: -30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper::before {
    left: -25px;
  }
}
@media (max-width: 991px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper::before {
    display: none;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p {
  font-size: 24px;
  font-weight: 300;
  color: white;
  line-height: 35px;
}
@media (max-width: 1366px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p {
    font-size: 19px;
    line-height: 30px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p:last-child {
  margin-bottom: 0;
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p span {
  float: left;
  font-size: 70px;
  line-height: 70px;
  padding-right: 8px;
  font-weight: 300;
}
@media (max-width: 1366px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p span {
    font-size: 58px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .content-para-wrapper p span {
    font-size: 50px;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content {
  margin-top: 10px;
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content p {
  margin-bottom: 0;
  font-size: 25px;
  font-style: italic;
  font-weight: 500;
  color: white;
}
@media (max-width: 1366px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content p {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .left-section .bottom-content p br {
    display: none;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section {
  padding: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section {
    padding: 0;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 244px;
  height: 159px;
  content: "";
  border-radius: 25px;
  border: 3px solid #FFC895;
  z-index: -1;
}
@media (max-width: 991px) {
  .ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section::before {
    display: none;
  }
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section .image-wrapper {
  border-radius: 31px;
  overflow: hidden;
}
.ultherapy-prime-section .bg-wrapper .ultherapy-prime-container .ultherapy-prime-inner .right-image-section .image-wrapper img {
  width: 100%;
  border-radius: 31px;
}

.why-love-ultherapy-prime-section {
  margin-bottom: 0px;
}
@media (max-width: 1280px) {
  .why-love-ultherapy-prime-section {
    margin-bottom: 50px;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .title-wrapper {
  text-align: center;
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .title-wrapper h2 {
  font-size: 60px;
  font-weight: 400;
  color: #87533E;
  margin-bottom: 35px;
}
@media (max-width: 1366px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .title-wrapper h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .title-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .title-wrapper h2 {
    font-size: 24px;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section {
  display: grid;
  grid-template-columns: 0.3fr 0.4fr 0.3fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section {
    padding-top: 0;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper {
  text-align: right;
}
@media (max-width: 991px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper {
    text-align: left;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper h6 {
  font-size: 40px;
  font-weight: 400;
  color: #87533E;
  line-height: 40px;
}
@media (max-width: 1440px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper h6 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 1366px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper h6 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper h6 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper h6 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper p {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 300;
  color: black;
  line-height: 35px;
  padding-left: 65px;
}
@media (max-width: 1440px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1366px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1024px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper p {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .left-content-section .box-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .right-content-section {
    margin-top: -25px;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .right-content-section .box-wrapper {
  text-align: left;
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .right-content-section .box-wrapper p {
  padding-left: 0;
  padding-right: 55px;
}
@media (max-width: 1024px) {
  .why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .right-content-section .box-wrapper p {
    padding-right: 0;
  }
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .center-image-section {
  position: relative;
  z-index: 1;
}
.why-love-ultherapy-prime-section .ultherapy-prime-container .ultherapy-prime-inner .left-right-content-center-image-section .center-image-section .image-wrapper img {
  width: 100%;
}
.why-ultherapy-section {
  margin-bottom: 50px;
}
.why-ultherapy-section .bg-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container {
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
}
@media (max-width: 1024px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper h2 {
  font-size: 60px;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper h2 {
    font-size: 24px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper p {
  font-size: 45px;
  font-weight: 300;
  color: white;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper p {
    font-size: 31px;
  }
}
@media (max-width: 1024px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper p {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .title-wrapper p {
    font-size: 18px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper {
    grid-template-columns: 1fr;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 110px;
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 311px;
  height: 100%;
  content: "";
  background-image: url(../assets/images/ultherapy/why-smarter-bg.png);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .left-image-section {
  width: 75px;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .left-image-section {
    width: 60px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .left-image-section img {
  width: 100%;
  max-width: 60px;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .left-image-section img {
    width: 50px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section {
  width: calc(100% - 60px);
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section h6 {
  font-size: 21px;
  font-weight: 500;
  color: white;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section h6 {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section h6 {
    font-size: 17px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section p {
  color: white;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 24px;
  max-width: 78%;
}
@media (max-width: 1440px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .left-section .why-ultherapy-box-wrapper .box-wrapper .right-content-section p {
    font-size: 16px;
    max-width: 90%;
    line-height: 22px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .right-image-section {
  border-radius: 74px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .right-image-section {
    border-radius: 40px;
  }
}
.why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .right-image-section img {
  width: 100%;
  border-radius: 74px;
}
@media (max-width: 767px) {
  .why-ultherapy-section .bg-wrapper .why-ultherapy-container .why-ultherapy-inner .right-image-section img {
    border-radius: 40px;
  }
}

.ultherapy-how-it-works-section {
  margin-bottom: 50px;
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container {
  max-width: 1549px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner {
  background: #FFF2E5;
  background: linear-gradient(90deg, rgb(255, 242, 229) 0%, rgba(255, 242, 229, 0.32) 100%);
  padding: 50px 30px;
  border-radius: 76px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner {
    border-radius: 40px;
    padding: 50px 15px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .title-wrapper {
  text-align: center;
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .title-wrapper h3 {
  margin-bottom: 35px;
  font-size: 55px;
  font-weight: 500;
  color: #976A40;
}
@media (max-width: 1366px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .title-wrapper h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .title-wrapper h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .title-wrapper h3 {
    font-size: 24px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section {
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
}
@media (max-width: 1024px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1366px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section {
    gap: 25px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .image-wrapper {
  border-radius: 34px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .image-wrapper {
    border-radius: 15px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .image-wrapper img {
  width: 100%;
  max-width: 85%;
  border-radius: 34px;
}
@media (max-width: 1024px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .image-wrapper img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .image-wrapper img {
    border-radius: 15px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section h6 {
  font-size: 30px;
  font-weight: 500;
  color: #976A40;
  max-width: 90%;
}
@media (max-width: 1366px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section h6 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section h6 {
    font-size: 18px;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section p {
  font-size: 22px;
  font-weight: 300;
  color: black;
  margin-bottom: 0;
  line-height: 40px;
  max-width: 90%;
}
@media (max-width: 1440px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section p {
    font-size: 19px;
    line-height: 34px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section p {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .left-content-section .box-wrapper .bottom-content-section p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .right-side-image-section .image-wrapper {
    text-align: center;
  }
}
.ultherapy-how-it-works-section .ultherapy-how-it-works-container .ultherapy-how-it-works-inner .left-side-content-right-image-section .right-side-image-section .image-wrapper img {
  width: 100%;
  max-width: 509px;
}

.ultherapy-benefits-section .ultherapy-benefits-container {
  max-width: 1447px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner {
  background: #FFF2E5;
  background: linear-gradient(180deg, rgb(255, 242, 229) 0%, rgba(255, 242, 229, 0.13) 50%, rgba(255, 242, 229, 0.01) 100%);
  padding: 35px;
  border-radius: 76px;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner {
    padding: 35px 20px;
  }
}
@media (max-width: 767px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner {
    border-radius: 40px;
    padding: 30px 15px;
  }
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .title-wrapper {
  text-align: center;
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .title-wrapper h4 {
  margin-bottom: 35px;
  color: #9B6E44;
  font-size: 55px;
  font-weight: 500;
}
@media (max-width: 1366px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .title-wrapper h4 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .title-wrapper h4 {
    font-size: 32px;
  }
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper {
  text-align: center;
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper .image-wrapper {
  margin-bottom: 15px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media (max-width: 767px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper .image-wrapper {
    margin-bottom: 7px;
  }
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper .image-wrapper img {
  width: 100%;
  max-width: 85px;
}
@media (max-width: 1366px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper .image-wrapper img {
    max-width: 75px;
  }
}
.ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper p {
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  color: black;
}
@media (max-width: 1366px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .ultherapy-benefits-section .ultherapy-benefits-container .ultherapy-benefits-inner .benefits-box-wrapper .box-wrapper p {
    font-size: 16px;
  }
}

.ultherapy-statistics-section {
  margin-bottom: 50px;
  background: #976A40;
  background: linear-gradient(180deg, rgb(151, 106, 64) 0%, rgb(197, 152, 110) 100%);
  padding: 20px 0;
  min-height: 260px;
}
.ultherapy-statistics-section .border-section {
  border-top: 2px solid #EBB06C;
  border-bottom: 2px solid #EBB06C;
  padding: 32px 0;
}
.ultherapy-statistics-section .ultherapy-statistics-container {
  max-width: 1247px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 90px;
}
@media (max-width: 1024px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper::before {
  position: absolute;
  right: -47px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 80%;
  content: "";
  background-color: white;
}
@media (max-width: 1024px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper::before {
    right: -37px;
  }
}
@media (max-width: 991px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper::before {
    display: none;
  }
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper:last-child::before {
  display: none;
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper h6 {
  font-size: 85px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
  min-height: 119px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1366px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper h6 {
    font-size: 70px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper h6 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper h6 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper h6 {
    min-height: unset;
  }
}
.ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  color: white;
  line-height: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper p {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-statistics-section .ultherapy-statistics-container .ultherapy-statistics-inner .statistics-box-wrapper p {
    font-size: 16px;
    line-height: 22px;
  }
}

.ultherapy-upgrade-section {
  margin-bottom: 100px;
}
.ultherapy-upgrade-section .ultherapy-upgrade-container {
  max-width: 1447px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper {
  text-align: center;
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h3 {
  color: #976A40;
  font-size: 67px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h3 {
    font-size: 24px;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h3 {
  font-size: 40px;
  font-weight: 400;
  color: #976A40;
  margin-bottom: 10px;
}
@media (max-width: 1366px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h6 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h6 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper h6 {
    font-size: 18px;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper p {
  color: #976A40;
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 80px;
}
@media (max-width: 1366px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper p {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .title-para-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 400px;
  border-radius: 32px;
  padding: 20px;
  background: #F3F3F3;
  background: linear-gradient(90deg, rgb(243, 243, 243) 0%, rgb(255, 255, 255) 50%, rgb(243, 243, 243) 100%);
  min-height: 148px;
}
@media (max-width: 1366px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper {
    min-height: 138px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper {
    min-height: 120px;
  }
}
@media (max-width: 991px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper {
    gap: 200px;
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: unset;
    background-color: unset;
    background: unset !important;
    padding: 0;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  color: black;
  line-height: 35px;
}
@media (max-width: 1366px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p {
    padding: 15px;
    border-radius: 15px;
    background: #F3F3F3;
    background: linear-gradient(90deg, rgb(243, 243, 243) 0%, rgb(255, 255, 255) 50%, rgb(243, 243, 243) 100%);
  }
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p br {
    display: none;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p:first-child {
  text-align: right;
}
@media (max-width: 767px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .ultherapy-upgrade-box-wrapper .box-wrapper p:first-child {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .top-image-wrapper {
    text-align: center;
  }
}
.ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .top-image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 323px;
}
@media (max-width: 1024px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .top-image-wrapper img {
    width: 270px;
  }
}
@media (max-width: 991px) {
  .ultherapy-upgrade-section .ultherapy-upgrade-container .ultherapy-upgrade-inner .image-content-section .top-image-wrapper img {
    position: unset;
    left: unset;
    top: unset;
    transform: unset;
  }
}

.ultherapy-treatment-featured-section {
  margin-bottom: 50px;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container {
  max-width: 1447px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner {
  border-top-left-radius: 76px;
  border-top-right-radius: 76px;
  background: #FFF2E5;
  padding: 40px;
  background: linear-gradient(180deg, rgb(255, 242, 229) 0%, rgba(255, 242, 229, 0.13) 60%, rgba(255, 242, 229, 0.01) 100%);
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 40px 15px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .title-wrapper h4 {
  text-align: center;
  font-size: 2rem;
  color: #000000;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .title-wrapper h3 {
  color: #976A40;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .title-wrapper h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .title-wrapper h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .title-wrapper h3 {
    font-size: 24px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos {
  margin-bottom: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  max-width: 1139px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos .image-wrapper {
  text-align: center;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos .image-wrapper img {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .featured-treatment-logos .image-wrapper img {
    max-width: 130px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 150px;
}
@media (max-width: 1024px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: center;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .image-wrapper img {
  width: 100%;
  max-width: 64px;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper p {
  font-size: 33px;
  font-weight: 300;
  color: #040504;
  margin-bottom: 0;
  line-height: 40px;
}
@media (max-width: 1366px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper p {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper p {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper p {
    font-size: 18px;
    line-height: 25px;
  }
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper .devider {
  display: block;
  width: 136px;
  height: 1px;
  background-color: #39190B;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper .devider::before {
  position: absolute;
  right: 0;
  width: 12px;
  height: 12px;
  content: "";
  background-color: #39190B;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper h6 {
  font-size: 33px;
  font-weight: 400;
  margin-bottom: 0;
  color: #040504;
  line-height: 40px;
}
@media (max-width: 1366px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper h6 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper h6 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-treatment-featured-section .ultherapy-treatment-featured-container .ultherapy-treatment-featured-inner .awards-recognition-section .inner-box-wrapper .box-wrapper .center-content-wrapper h6 {
    font-size: 18px;
    line-height: 25px;
  }
}

.ultherapy-luxury-glow-section {
  background: #976A40;
  background: linear-gradient(180deg, rgb(151, 106, 64) 0%, rgb(197, 152, 110) 100%);
  padding: 50px 0;
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container {
  max-width: 1355px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper h3 {
  font-size: 55px;
  font-weight: 500;
  color: white;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper h3 {
    font-size: 24px;
  }
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper p {
  font-size: 30px;
  font-weight: 300;
  color: white;
  margin-bottom: 0;
  line-height: 46px;
}
@media (max-width: 1366px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .title-wrapper p br {
    display: none;
  }
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1440px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper {
    gap: 101px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper {
    gap: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper {
  text-align: center;
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper .image-wrapper {
  margin-bottom: 15px;
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper .image-wrapper img {
  width: 100%;
  max-width: 282px;
}
@media (max-width: 1024px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper .image-wrapper img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper .image-wrapper img {
    max-width: 200px;
  }
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p {
  margin-bottom: 0;
  color: white;
  font-weight: 300;
  font-size: 27px;
  line-height: 35px;
}
@media (max-width: 1440px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p {
    font-size: 16px;
  }
}
.ultherapy-luxury-glow-section .ultherapy-luxury-glow-container .ultherapy-luxury-glow-inner .ultherapy-glow-box-wrapper .box-wrapper p span {
  font-weight: 500;
}

.ultherapy-before-after-section .bg-wrapper {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner {
  text-align: center;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .title-wrapper {
  text-align: center;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .title-wrapper h2 {
  font-size: 55px;
  font-weight: 500;
  color: #976A40;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .title-wrapper h2 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .title-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .title-wrapper h2 {
    font-size: 24px;
  }
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container {
  position: relative;
  width: 100%;
  max-width: 859px;
  height: 75vh;
  max-height: 690px;
  border-radius: 38px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .before-image,
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .after-image {
  clip-path: inset(0 50% 0 0);
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 100%;
  background-color: white;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: transparent;
  border: 5px solid white;
  border-radius: 50%;
  cursor: grab;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s ease;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.1);
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::before, .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::before {
  left: 8px;
  border-width: 16px 20px 16px 0;
  border-color: transparent #fff transparent transparent;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::after {
  right: 8px;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent #fff;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: auto;
  z-index: 15;
  pointer-events: none;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels .label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  font-size: 35px;
  font-weight: 300;
  padding: 0 30px;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels .label.before {
  text-align: left;
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels .label.after {
  text-align: right;
}
@media (max-width: 768px) {
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container {
    height: 350px;
    max-height: 350px;
    border-radius: 15px;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-line {
    width: 3px;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::before, .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::after {
    border-width: 6px 8px 6px 0;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .slider-handle::after {
    border-width: 6px 0 6px 8px;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels {
    padding: 0 20px;
    bottom: 15px;
  }
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .before-after-container .image-wrapper .labels .label {
    font-size: 18px;
  }
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .bottom-disclaimer-wrapper {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .bottom-disclaimer-wrapper {
    max-width: 97%;
  }
}
.ultherapy-before-after-section .bg-wrapper .ultherapy-before-after-inner .bottom-disclaimer-wrapper p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 18px;
}

.ultherapy-book-consultation-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 100px;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container {
    padding: 0;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner {
  border-radius: 64px;
  background-color: #FFF2E5;
  padding: 35px 50px;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner {
    border-radius: 40px;
    padding: 30px 15px;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner::before {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 80%;
  height: 78%;
  border-radius: 64px;
  content: "";
  border: 1px solid #FFF2E5;
  z-index: -1;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner::before {
    display: none;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner::after {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80%;
  height: 78%;
  border-radius: 64px;
  content: "";
  border: 1px solid #FFF2E5;
  z-index: -1;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner::after {
    display: none;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .left-image-wrapper .image-wrapper {
  border-radius: 45px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .left-image-wrapper .image-wrapper {
    border-radius: 25px;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .left-image-wrapper .image-wrapper img {
  width: 100%;
  border-radius: 45px;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .left-image-wrapper .image-wrapper img {
    border-radius: 25px;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section h3 {
  font-size: 37px;
  font-weight: 500;
  color: #976A40;
  line-height: 50px;
  margin-bottom: 20px;
  max-width: 73%;
}
@media (max-width: 1440px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section h3 {
    font-size: 31px;
    line-height: 41px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section h3 {
    max-width: 80%;
  }
}
@media (max-width: 1199px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section h3 {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section h3 {
    max-width: 100%;
    font-size: 23px;
    line-height: 30px;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper {
  margin-bottom: 40px;
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul {
  margin: 0;
  padding: 0;
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 8px;
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li img {
  width: 19px;
  max-height: 23px;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li img {
    margin-top: 2px;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p {
  font-size: 27px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 0;
  color: #976A40;
}
@media (max-width: 1440px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p {
    font-size: 24px;
    line-height: 37px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p br {
    display: none;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .list-wrapper ul li p span {
  font-weight: 500;
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a {
  display: block;
  width: fit-content;
  color: #FFF2E5;
  font-size: 32px;
  font-weight: 600;
  border-radius: 42px;
  background-color: #976A40;
  padding: 27px 32px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a {
    font-size: 26px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a {
    font-size: 24px;
    padding: 20px 25px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a {
    padding: 18px 22px;
  }
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
    text-align: center;
  }
}
.ultherapy-book-consultation-section .ultherapy-book-consultation-container .ultherapy-book-consultation-inner .right-content-section .link-wrapper a:hover {
  background-color: #FFDEA5;
  color: #7A5030;
}
.ultherapy-book-consultation-section .graphics-section img {
  position: absolute;
  bottom: -300px;
  width: 607px;
  right: -300px;
  z-index: -1;
}
@media (max-width: 767px) {
  .ultherapy-book-consultation-section .graphics-section img {
    display: none;
  }
}

.ultherapy-faqs-section {
  margin: 100px 0;
}
.ultherapy-faqs-section .ultherapy-faqs-inner .title-wrapper {
  text-align: center;
}
.ultherapy-faqs-section .ultherapy-faqs-inner .title-wrapper h3 {
  color: #976A40;
  font-size: 93px;
  font-weight: 400;
  margin-bottom: 25px;
}
@media (max-width: 1366px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .title-wrapper h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .title-wrapper h3 {
    font-size: 32px;
  }
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper {
  max-width: 831px;
  margin-left: auto;
  margin-right: auto;
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item {
  border: 1px solid #976A40;
  border-radius: 71px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item {
    border-radius: 18px;
  }
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 35px;
  font-weight: 300;
  color: white;
  background-color: #976A40;
  text-align: center;
  justify-content: center;
  box-shadow: none;
  flex-direction: column;
}
@media (max-width: 1366px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 17px;
    padding: 16px;
    text-align: left;
    justify-content: space-between;
    flex-direction: row;
    padding-right: 30px;
  }
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  right: 50px;
  content: "\e5db";
  font-family: "Material Icons";
  background-image: unset;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: unset;
}
@media (max-width: 767px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
    width: 22px;
    height: 22px;
    font-size: 12px;
    right: 7px;
  }
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\e5d8";
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-body {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-body p {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  color: #976A40;
}
@media (max-width: 1366px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-body p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-body p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ultherapy-faqs-section .ultherapy-faqs-inner .ultherapy-faqs-wrapper .accordion .accordion-item .accordion-body p {
    font-size: 15px;
  }
}

.ultherapy-clinic-section {
  padding: 100px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.ultherapy-clinic-section .ultherapy-clinic-inner {
  max-width: 1388px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 25px;
  align-items: center;
}
@media (max-width: 1599px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner {
    max-width: 1450px;
  }
}
@media (max-width: 1199px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner {
    grid-template-columns: 0.4fr 0.6fr;
  }
}
@media (max-width: 1024px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .left-image-section img {
  width: 100%;
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section h3 {
  font-size: 48px;
  font-weight: 400;
  color: white;
  margin-bottom: 25px;
  padding-left: 20px;
}
@media (max-width: 1366px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section h3 {
    font-size: 41px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section h3 {
    font-size: 24px;
    padding-left: 0;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section p {
  font-size: 25px;
  font-weight: 300;
  color: white;
  margin-bottom: 30px;
  line-height: 38px;
  padding-left: 20px;
}
@media (max-width: 1366px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section p {
    font-size: 16px;
    padding-left: 0;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section p span {
  font-weight: 500;
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section {
  background-color: #976A40;
  padding: 25px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper::before {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 75%;
  content: "";
  background-color: white;
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper::before {
    display: none;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper:last-child::before {
  display: none;
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h4 {
  font-size: 65px;
  font-weight: 400;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1366px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h6 {
    font-size: 55px;
    color: #ffffff;
  }
}
@media (max-width: 1024px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h6 {
    font-size: 50px;
    color: #ffffff;
  }
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h6 {
    font-size: 42px;
    color: #ffffff;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h4 i {
  font-size: 24px;
}
@media (max-width: 767px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper h4 i {
    font-size: 16px;
  }
}
.ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: white;
  line-height: 25px;
  padding: 0;
}
@media (max-width: 1440px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper p {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 1366px) {
  .ultherapy-clinic-section .ultherapy-clinic-inner .right-content-section .clinic-experience-section .box-wrapper p {
    font-size: 16px;
  }
}
.ultherapy-clinic-section .graphics-section img {
  position: absolute;
  top: -300px;
  width: 622px;
  left: -350px;
  z-index: -1;
}
@media (max-width: 991px) {
  .ultherapy-clinic-section .graphics-section img {
    display: none;
  }
}

.celebrity-testimonial-section {
  margin-top: 100px;
  margin-bottom: 70px;
}
.celebrity-testimonial-section .title-wrapper {
  text-align: center;
}
.celebrity-testimonial-section .title-wrapper h3 {
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #87533E;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  background-color: white;
}
@media (max-width: 1199px) {
  .celebrity-testimonial-section .title-wrapper h3 {
    font-size: 36px;
  }
}
.celebrity-testimonial-section .title-wrapper h3::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: #87533E;
  width: 80%;
  height: 1px;
  z-index: -2;
}
@media (max-width: 991px) {
  .celebrity-testimonial-section .title-wrapper h3::after {
    display: none;
  }
}
.celebrity-testimonial-section .title-wrapper h3::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  height: 100%;
  content: "";
  background-color: white;
  z-index: -1;
}
@media (max-width: 1366px) {
  .celebrity-testimonial-section .title-wrapper h3::before {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .celebrity-testimonial-section .title-wrapper h3::before {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .celebrity-testimonial-section .title-wrapper h3::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .celebrity-testimonial-section .title-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-item .item {
  padding: 15px;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-item .item img {
  width: 100%;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .center {
  position: relative;
  z-index: 1;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .center::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-radius: 10px;
  z-index: -1;
  box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.1);
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-dots .owl-dot span {
  margin: 3px;
  background: #87533E;
  width: 11px;
  height: 11px;
  opacity: 0.3;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.celebrity-testimonial-section .celebrity-slider-wrapper .owl-dots .active span {
  opacity: 1;
  background-color: #87533E;
  border-radius: 6px;
  width: 62px;
}

.featured-section {
  padding: 30px 0 100px 0;
}
.featured-section .title-wrapper {
  text-align: center;
}
.featured-section .title-wrapper h3 {
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #87533E;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .featured-section .title-wrapper h3 {
    font-size: 36px;
  }
}
.featured-section .title-wrapper h3::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: #87533E;
  width: 80%;
  height: 1px;
  z-index: -2;
}
@media (max-width: 991px) {
  .featured-section .title-wrapper h3::after {
    display: none;
  }
}
.featured-section .title-wrapper h3::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 100%;
  content: "";
  background-color: white;
  z-index: -1;
}
@media (max-width: 1199px) {
  .featured-section .title-wrapper h3::before {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .featured-section .title-wrapper h3::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .featured-section .title-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.featured-section .featured-slider-wrapper {
  background: white;
  padding: 25px 0;
}
.featured-section .featured-slider-wrapper .featured-slider .item {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59px;
}
.featured-section .featured-slider-wrapper .featured-slider .item img {
  width: unset;
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
  max-width: 350px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
    max-width: 230px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured1 {
    max-width: 135px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
  max-width: 233px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
    max-width: 180px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured2 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
  max-width: 220px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
    max-width: 170px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured3 {
    max-width: 110px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
  max-width: 180px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured4 {
    max-width: 90px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
  max-width: 182px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured5 {
    max-width: 95px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
  max-width: 103px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
    max-width: 60px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured6 {
    max-width: 50px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
  max-width: 195px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
    max-width: 130px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured7 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
  max-width: 247px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
    max-width: 190px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured8 {
    max-width: 115px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
  max-width: 194px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
    max-width: 130px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured9 {
    max-width: 100px;
  }
}
.featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
  max-width: 117px;
}
@media (max-width: 1800px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
    max-width: 70px;
  }
}
@media (max-width: 1199px) {
  .featured-section .featured-slider-wrapper .featured-slider .item .featured10 {
    max-width: 60px;
  }
}

.our-centers-section {
  margin-bottom: 100px;
}
.our-centers-section .our-centers-inner .title-wrapper {
  margin-bottom: 30px;
}
.our-centers-section .our-centers-inner .title-wrapper h3 {
  font-size: 40px;
  font-style: normal;
  text-align: center;
  color: #87533E;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .our-centers-section .our-centers-inner .title-wrapper h3 {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .our-centers-section .our-centers-inner .title-wrapper h3 br {
    display: none;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .nav-pills {
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .nav-pills {
    gap: 7px;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .nav-pills .nav-item button {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  color: white;
  border-radius: 100px;
  background: #C9A476;
  padding: 8px 22px;
  border: 1px solid #C9A476;
}
@media (max-width: 767px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .nav-pills .nav-item button {
    font-size: 15px;
    padding: 7px 15px;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .nav-pills .nav-item .active {
  background: white;
  color: #C9A476;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content {
  background-color: white;
  padding: 10px;
  border-radius: 31px;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 25px;
}
@media (max-width: 1199px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .left-section {
  display: flex;
  flex-direction: column;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .left-section .image-top-wrapper img {
  width: 100%;
}
@media (max-width: 1399px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .left-section .image-top-wrapper img {
    height: 277px;
  }
}
@media (max-width: 1199px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .left-section .image-top-wrapper img {
    height: unset;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address {
  background: #eaeef2;
  border-radius: 20px;
  padding: 15px 30px;
  height: 265px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address {
    height: unset;
    padding: 15px;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address h4 {
  font-size: 20px;
  color: black;
  font-weight: 600;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address h4 {
    font-size: 18px;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address p {
  color: black;
  font-weight: 400;
  line-height: 22px;
  max-width: 60%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address p {
    max-width: 100%;
  }
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address .address-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address .address-box i {
  font-size: 18px;
  padding-top: 8px;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .top-address .address-box a {
  color: black;
  font-weight: 400;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .map-section {
  border-radius: 22px;
  overflow: hidden;
}
.our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .map-section iframe {
  width: 100%;
  border-radius: 10px;
  max-height: 262px;
}
@media (max-width: 1199px) {
  .our-centers-section .our-centers-inner .our-centers-tabs-wrapper .tab-content .centers-tab-inner-wrapper .right-section .map-section iframe {
    max-height: 300px;
  }
}

.ultherapy-appoinment-section {
  background-color: #FAF2E7;
  padding: 70px 0;
  margin-bottom: 100px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner {
  max-width: 1399px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner {
    grid-template-columns: 1fr;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section {
    padding-left: 0;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section h3 {
  margin-bottom: 0;
  font-size: 58px;
  font-weight: 500;
  color: black;
  line-height: 84px;
}
@media (max-width: 1366px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section h3 {
    font-size: 50px;
    line-height: 70px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section h3 {
    font-size: 23px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .left-section h3 br {
    display: none;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section {
  background-color: #7A5030;
  border-radius: 20px;
  padding: 50px 40px;
}
@media (max-width: 767px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section {
    padding: 50px 15px;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group {
  margin-bottom: 25px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group input[type=email],
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group input[type=text] {
  width: 100%;
  padding: 19px 35px 15px 19px;
  border-radius: 25px;
  background-color: #FEFEFE;
  border: none;
  outline: none;
  min-height: 63px;
}
@media (max-width: 1366px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group input[type=email],
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group input[type=text] {
    padding: 10px 25px 6px 20px;
    min-height: 55px;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group label {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group label img {
  width: fit-content;
  margin-right: 7px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper {
  position: relative;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper::after {
  content: "\e313";
  font-family: "Material Icons";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #757575;
  font-size: 24px;
  pointer-events: none;
  font-weight: 200;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper.date-selected::after {
  display: none;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .date-input {
  width: 100%;
  padding: 19px 35px 15px 19px;
  border-radius: 25px;
  background-color: #FEFEFE;
  cursor: pointer;
  border: none;
  outline: none;
}
@media (max-width: 1366px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .date-input {
    padding: 10px 25px 6px 10px;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  min-width: 300px;
  display: none;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar.show {
  display: block;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-header .calendar-nav {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #667eea;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.2s;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-header .calendar-nav:hover {
  background-color: #f0f0f0;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-header .calendar-month-year {
  font-size: 18px;
  font-weight: 600;
  color: #757575;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-weekdays .calendar-weekday {
  text-align: center;
  font-weight: 600;
  color: #757575;
  font-size: 12px;
  padding: 5px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days .calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  color: #757575;
  transition: all 0.2s;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days .calendar-day:hover {
  background-color: #f0f0f0;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days .calendar-day.other-month {
  color: #757575;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days .calendar-day.today {
  background-color: #667eea;
  color: #fff;
  font-weight: 600;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .date-input-wrapper .calendar .calendar-days .calendar-day.selected {
  background-color: #764ba2;
  color: #fff;
  font-weight: 600;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper {
  position: relative;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper::after {
  content: "\e313";
  font-family: "Material Icons";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #757575;
  font-size: 24px;
  pointer-events: none;
  font-weight: 200;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper.time-selected::after {
  display: none;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-input {
  width: 100%;
  padding: 19px 35px 15px 19px;
  border-radius: 25px;
  background-color: #FEFEFE;
  cursor: pointer;
  border: none;
  outline: none;
}
@media (max-width: 1366px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-input {
    padding: 10px 25px 6px 10px;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  min-width: 300px;
  display: none;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker.show {
  display: block;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content .time-select-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content .time-select-group label {
  font-size: 12px;
  color: #757575;
  font-weight: 600;
  margin-bottom: 0;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content .time-select-group select {
  width: 100%;
  padding: 10px;
  border: 2px solid #757575;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  color: #757575;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content .time-select-group select:hover {
  border-color: #667eea;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .time-input-wrapper .time-picker .time-picker-content .time-select-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .g-recaptcha {
  margin-top: 25px;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .submit_btn {
  margin-top: 25px;
  background-color: #FFDEA5;
  border-radius: 26px;
  padding: 21px 43px;
  text-align: center;
  color: #7A5030;
  font-size: 20px;
  font-weight: 400;
  border: none;
  box-shadow: none;
  outline: none;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1366px) {
  .ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .submit_btn {
    font-size: 18px;
    padding: 18px 35px;
  }
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .form-group .submit_btn:hover {
  background-color: white;
}
.ultherapy-appoinment-section .ultherapy-appoinment-inner .right-book-appoinment-form-section .form-inner form .form-inner-group .result {
  margin-top: 30px;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  color: #757575;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultherapy-footer-section .ultherapy-footer-container {
  max-width: 1684px;
  margin-left: auto;
  margin-right: auto;
  background-color: #7A5030;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner {
  padding: 50px 135px 30px 135px;
}
@media (max-width: 1680px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner {
    padding: 50px 60px 30px 60px;
  }
}
@media (max-width: 1599px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner {
    padding: 50px 50px 30px 50px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner {
    padding: 50px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner {
    padding: 40px 15px 30px 15px;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid #FAFEF3;
  padding-bottom: 30px;
  padding: 0 60px 30px 60px;
}
@media (max-width: 1440px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper {
    padding: 0;
    padding-bottom: 30px;
  }
}
@media (max-width: 1280px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section {
  max-width: 531px;
}
@media (max-width: 1024px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section {
    grid-column-start: 1;
    grid-column-end: 3;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section {
    grid-column-start: unset;
    grid-column-end: unset;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section .logo-wrapper {
  margin-bottom: 20px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section .logo-wrapper a {
  display: block;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section .logo-wrapper a img {
  width: 100%;
  max-width: 250px;
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section .logo-wrapper a img {
    max-width: 200px;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .left-section .footer-para p {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 200;
  color: white;
  line-height: 20px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section {
  padding-top: 15px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section h3 {
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section ul {
  margin: 0;
  padding: 0;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section ul li img {
  width: 26px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .center-section ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 300;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section {
  padding-top: 15px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-social-section {
  margin-bottom: 25px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-social-section ul {
  margin: 0;
  padding: 0;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-social-section ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-social-section ul li:last-child {
  margin-right: 0;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-social-section ul li a img {
  width: 21px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form {
  background-color: #CCAF99;
  border-radius: 20px;
  padding: 5px 6px 5px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form input {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: white;
  width: 100%;
  padding-right: 10px;
  font-size: 15px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form ::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form button {
  border-radius: 15px;
  padding: 1px 20px;
  background-color: #7A5030;
  border: none;
  box-shadow: none;
  outline: none;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .footer-mail-section form button img {
  width: 15px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .terms-condition {
  margin-top: 28px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .terms-condition p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: white;
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .top-inner-wrapper .right-section .terms-condition p {
    font-size: 11px;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section {
  text-align: right;
  padding: 10px 60px 0 60px;
}
@media (max-width: 767px) {
  .ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section {
    padding: 10px 0;
  }
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section .inner-link {
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section .inner-link a {
  color: white;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section .inner-link a:first-child {
  position: relative;
  z-index: 1;
  margin-right: 8px;
  padding-right: 8px;
}
.ultherapy-footer-section .ultherapy-footer-container .ultherapy-footer-inner .policy-terms-section .inner-link a:first-child::after {
  position: absolute;
  right: 0px;
  width: 1px;
  height: 12px;
  content: "";
  background-color: white;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-break {
  display: none;
}
@media (max-width: 767px) {
  .mobile-break {
    display: block !important;
  }
}

.ultherapy-call-whatsapp-book-wrapper .contact-box:first-child a .left-box:last-child {
  background-color: #976A40;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
@media (max-width: 991px) {
  .ultherapy-call-whatsapp-book-wrapper .contact-box:first-child a .left-box:last-child {
    background-color: transparent;
  }
}
.ultherapy-call-whatsapp-book-wrapper .contact-box:first-child a .left-box:last-child i {
  font-size: 23px;
}
@media (max-width: 991px) {
  .ultherapy-call-whatsapp-book-wrapper .contact-box:first-child a .left-box:last-child i {
    color: #976A40;
  }
}
.ultherapy-call-whatsapp-book-wrapper .contact-box:last-child a {
  padding: 20px 15px;
}
.ultherapy-call-whatsapp-book-wrapper .contact-box:last-child a .left-box p {
  font-weight: 400;
}
.ultherapy-call-whatsapp-book-wrapper .contact-box:last-child a .left-box i {
  color: #976A40;
}
.ultherapy-call-whatsapp-book-wrapper .contact-box a .left-box p {
  color: #976A40;
}
.ultherapy-call-whatsapp-book-wrapper .contact-box a .left-box i {
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
