@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --primary: #256B7F;
  --secondary: #FFCC00;
  --filterPrimary: invert(34%) sepia(76%) saturate(375%) hue-rotate(147deg) brightness(92%) contrast(94%);
  --filterSecondary: invert(73%) sepia(25%) saturate(1885%) hue-rotate(2deg) brightness(108%) contrast(102%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.dir_ltr {
  direction: ltr;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes rotating {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes floating {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  padding: 0.7rem 1.7rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: bold;
}
.butn i {
  margin-inline-end: 7px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.gray_butn {
  background-color: #E4E4E4;
  border-color: #E4E4E4;
  color: #333;
}
.butn.white_border_butn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.butn:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.title_w_shape {
  position: relative;
  font-size: 32px;
  font-weight: 800;
}
.title_w_shape::before {
  content: "";
  width: 150px;
  height: 45px;
  background: url(../images/icons/title_shape.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  inset-inline-start: -23px;
  top: 0;
  z-index: -1;
}

.accordion .accordion-item {
  border: 0;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 5px;
  padding: 5px 15px;
  border: 1px solid #f5f5f5 !important;
}
.accordion .accordion-item .accordion-button {
  padding: 15px 20px;
  box-shadow: none;
  background-color: transparent;
  color: #606273;
}
.accordion .accordion-item .accordion-button::after {
  filter: brightness(0);
  opacity: 0.5;
}
.accordion .accordion-item .accordion-body {
  padding: 15px;
  padding-top: 0;
}
.accordion .accordion-item .accordion-body .form-check {
  margin: 15px 0;
}
.accordion .accordion-item .accordion-body .form-check small {
  margin-inline-start: 10px;
  color: #777;
}

.accordion_partition > .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.accordion_partition > .accordion-item .partition_title {
  padding: 15px 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #000;
}
.accordion_partition > .accordion-item .partition_title::after {
  filter: brightness(0);
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 15px;
  font-weight: 300;
  transform: rotate(0);
}
.accordion_partition > .accordion-item .partition_title:not(.collapsed)::after {
  content: "\f068";
}
.accordion_partition > .accordion-item .accordion-body {
  padding: 10px 0 20px;
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 5px;
  margin: 5px 0;
  font-size: 13px;
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a:hover {
  background-color: rgba(91, 161, 153, 0.0666666667);
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a:hover * {
  color: var(--mainColor);
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a .txt {
  width: 70%;
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a .lesson_time {
  color: var(--mainColor);
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a .icon {
  color: var(--mainColor);
  margin-inline-start: auto;
  margin-inline-end: 0;
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a.lesson_disable {
  pointer-events: none;
}
.accordion_partition > .accordion-item .accordion-body .lessons_list li a.lesson_disable .icon {
  color: #000;
}

.qty-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  padding: 5.5px;
}
.qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: 1px solid transparent !important;
  max-width: 60px;
  font-size: 15px;
  font-weight: bold;
  background-color: transparent;
}
.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
  background-color: transparent;
  padding: 10px 13px;
  font-size: 12px;
  height: 38px;
  width: 45px;
  transition: 0.3s;
  color: #777;
  box-shadow: none !important;
}
.qty-container .qty-btn-plus {
  margin-left: -1px;
}
.qty-container .qty-btn-minus {
  margin-right: -1px;
}

.modal .btn-close {
  filter: var(--filterPrimary);
  position: absolute;
  left: 15px;
  top: 15px;
}
.modal .modal-content {
  padding: 40px;
  border-radius: 20px;
}
.modal .modal-content .form-control {
  border-radius: 35px;
}
.modal .modal-content .butn {
  min-width: 100px;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: #999;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}
.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  border-color: #2879FC;
  color: #2879FC !important;
}

.badge {
  padding: 0.5rem 1.2rem;
  border-radius: 15px;
}
.badge.white_badge {
  color: var(--primary);
  background-color: #fff;
}
.badge.secondaey_badge {
  color: var(--secondary);
  background-color: rgba(233, 136, 17, 0.0588235294);
}
.badge.gray_bagde {
  background-color: #eee;
  color: var(--primary);
}
.badge.offer_badge {
  background-color: #CBFFD8;
  color: #333;
}
.badge.primary_badge {
  background-color: var(--primary) !important;
  color: #fff;
}
.badge.dark_gray_badge {
  background-color: #333;
  color: #fff;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container {
  position: relative;
  z-index: 9;
}
.navs-container .dropdown-menu {
  text-align: center;
  border-radius: 15px;
  border-color: transparent;
  box-shadow: 0px 0px 15px 0 rgba(51, 51, 51, 0.0666666667);
  font-size: 13px;
  border: 1px solid #eee;
}
.navs-container .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
.navs-container .top_nav {
  z-index: 9;
  background-color: #1C1C1C;
  padding: 10px 0;
  position: relative;
}
.navs-container .top_nav .social_links a {
  color: #DCDCDC;
  margin-inline-end: 15px;
}
.navs-container .top_nav .lang_butn {
  color: #DCDCDC;
  font-size: 14px;
}
.navs-container .top_nav .lang_butn .icon_flag {
  width: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 5px;
}
.navs-container .navbar .logo {
  width: 105px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  color: #031535;
  font-size: 17px;
  margin: 0 10px;
}
.navs-container .navbar .nav-link.active {
  color: var(--primary);
}
.navs-container .navbar .search_box .form-control {
  height: 50px !important;
  width: 300px;
  border-radius: 25px;
  border: 1px solid #485157;
  padding-inline-start: 35px;
}
.navs-container .navbar .search_box .form-control::-moz-placeholder {
  color: #969696;
}
.navs-container .navbar .search_box .form-control::placeholder {
  color: #969696;
}
.navs-container .navbar .search_box .submit_butn {
  color: #969696;
  background-color: transparent;
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
}
.navs-container .navbar .search_box .dropdown-menu {
  padding: 10px;
  border: 0;
  border-radius: 25px;
  background: #f9f9f9;
}
.navs-container .navbar .search_box .dropdown-menu[data-bs-popper] {
  right: -100%;
}
.navs-container .navbar .prof_dropdown .avatar_img {
  width: 45px;
  height: 45px;
  padding: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--primary);
}
.navs-container .navbar .prof_dropdown .dropdown-menu {
  text-align: start;
}
.navs-container .navbar .prof_dropdown .dropdown-menu .icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 5px;
}
.navs-container .navbar .sm_butn {
  width: 45px;
  height: 45px;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #1D2426;
}
.footer .content {
  margin-bottom: 35px;
}
.footer .content .logo {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 25px;
}
.footer .content .p {
  font-size: 14px;
  color: #F4F4F4;
}
.footer .content .social_links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary);
  margin-inline-end: 7px;
}
.footer .content .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.footer .content .title {
  position: relative;
  padding-inline-start: 15px;
  margin-bottom: 3rem !important;
}
.footer .content .title::before {
  content: "";
  width: 140px;
  height: 20px;
  background: url(../images/title_bg.svg) no-repeat right;
  background-size: contain;
  position: absolute;
  bottom: -7px;
  right: -4px;
}
.footer .content .links a {
  position: relative;
  display: block;
  color: #F4F4F4;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer .content .links a:hover {
  color: #fff !important;
}
.footer .content .links a::before {
  content: "\f100";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  color: var(--primary);
  margin-inline-end: 10px;
}
.footer .foot {
  padding: 15px 0;
  background-color: #030303;
  text-align: center;
}
.footer .foot .copyright_p {
  font-size: 13px;
  color: #F4F4F4;
}
.footer .foot .copyright_p .alyom_logo {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 5px;
}
.footer .img {
  position: absolute;
  bottom: 49.5px;
  inset-inline-end: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: calc(100% - 49.5px);
  -o-object-position: bottom;
     object-position: bottom;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-color: #97CCDC;
}
.header .txt_box h1 {
  font-size: 68px;
}
.header .txt_box .p {
  color: #464646;
  font-size: 14px;
}
.header .headerImg {
  height: 590px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.header .pattern {
  -o-object-fit: contain;
     object-fit: contain;
  width: 47%;
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
}

.card_sec .item {
  margin-bottom: 25px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #97CCDC;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 0 15px 20px rgba(233, 250, 249, 0.262745098);
  transition: all 0.3s linear;
}
.card_sec .item .icon {
  width: 88px;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.card_sec .item .title {
  font-size: 22px;
  color: #1E2121;
}
.card_sec .item .p {
  color: #606060;
  font-size: 13px;
}
.card_sec .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px 20px rgba(254, 241, 231, 0.6039215686);
}

.courses_sec {
  background-color: #FAFAFA;
}
.courses_sec .nav-link {
  background-color: transparent;
  border-radius: 25px;
  font-size: 16px;
  color: #1C1C1C;
  padding: 0.7rem 1.8rem;
}
.courses_sec .nav-link.active {
  background-color: #fff;
  color: var(--primary);
}
.courses_sec .dropdown .butn {
  border: none !important;
}
.courses_sec .dropdown .dropdown-menu {
  text-align: center;
  border-radius: 15px;
  border-color: transparent;
  box-shadow: 0px 0px 15px 0 rgba(51, 51, 51, 0.0666666667);
  font-size: 13px;
  border: 1px solid #eee;
}
.courses_sec .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
}
.courses_sec .course_card {
  position: relative;
  border-radius: 15px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  background-color: #fff;
}
.courses_sec .course_card .img_box {
  height: 230px;
  position: relative;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.courses_sec .course_card .img_box .course_badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFCC00;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.courses_sec .course_card .img_box .stud_badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font-size: 12px;
  font-weight: bold;
  background-color: var(--primary);
  color: #fff;
}
.courses_sec .course_card .img_box .stud_badge i {
  margin-inline-end: 5px;
}
.courses_sec .course_card .img_box .butns {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.courses_sec .course_card .img_box .butns .sm_butn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.168627451);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
}
.courses_sec .course_card .img_box .butns .sm_butn i {
  margin: 0;
}
.courses_sec .course_card .img_box .butns .sm_butn:hover {
  background-color: var(--primary);
}
.courses_sec .course_card .img_box .butns .fav_butn.active {
  background-color: #1a5160;
  border-color: #1a5160;
  color: var(--secondary);
}
.courses_sec .course_card .img_box .butns .share_links {
  position: absolute;
  bottom: 0;
  inset-inline-start: 45px;
  visibility: hidden;
  transition: all 0.3s linear;
  flex-direction: column-reverse;
}
.courses_sec .course_card .img_box .butns .share_links.active a {
  transform: scaleX(1) translateY(0px);
  visibility: visible;
  opacity: 1;
}
.courses_sec .course_card .img_box .butns .share_links a {
  width: 35px;
  height: 35px;
  border-radius: 0%;
  margin: 2px;
  color: var(--mainColor);
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  opacity: 0;
  box-shadow: 3px 6px 10px 0 rgba(0, 0, 0, 0.0666666667);
  transform: scaleX(0) translateY(50px);
  transform-origin: right center;
  perspective: 1000px;
  border-radius: 25px;
}
.courses_sec .course_card .img_box .butns .share_links a:nth-child(2) {
  transition-delay: 0.1s;
}
.courses_sec .course_card .img_box .butns .share_links a:nth-child(3) {
  transition-delay: 0.2s;
}
.courses_sec .course_card .img_box .butns .share_links a:nth-child(4) {
  transition-delay: 0.3s;
}
.courses_sec .course_card .img_box .butns .share_links a:nth-child(5) {
  transition-delay: 0.4s;
}
.courses_sec .course_card .img_box .butns .share_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.courses_sec .course_card .card-body {
  padding: 1.5rem 1.25rem;
}
.courses_sec .course_card .card-body .top_card .categ_badge {
  background-color: #F2F6F7;
  border-radius: 5px;
  padding: 0.5rem 0.7rem;
  font-weight: bold;
  font-size: 10px;
  color: var(--primary);
}
.courses_sec .course_card .card-body .top_card .prices {
  font-size: 13px;
}
.courses_sec .course_card .card-body .top_card .prices .del {
  font-size: 13px;
}
.courses_sec .course_card .card-body .top_card .prices .price {
  color: #FF3B30;
}
.courses_sec .course_card .card-body .title {
  font-size: 16px;
}
.courses_sec .course_card .card-body .p {
  font-size: 12px;
  color: #6E6E6E;
  line-height: 1.6;
}
.courses_sec .course_card .card-body .line {
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
  display: block;
  margin: 19px 0;
  position: relative;
}
.courses_sec .course_card .card-body .line::before {
  content: "";
  width: 65px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.5px;
  background-color: #FFCC00;
  transition: all 0.3s linear;
}
.courses_sec .course_card .card-body .foot_card .prof_data .avatar {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 10px;
}
.courses_sec .course_card .card-body .foot_card .prof_data .name {
  font-size: 14px;
  margin-bottom: 5px;
}
.courses_sec .course_card .card-body .foot_card .prof_data .rate {
  font-size: 13px;
}
.courses_sec .course_card .card-body .foot_card .prof_data .rate i {
  color: #DE980F;
  margin-inline-end: 5px;
}
.courses_sec .course_card .card-body .foot_card .regit_butn {
  font-size: 14px;
}
.courses_sec .course_card:hover .line::before {
  width: 100%;
}
.courses_sec .vector {
  position: absolute;
  inset-inline-end: 10%;
  top: 0;
  width: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}
.courses_sec .vector_bl {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 18%;
}
.courses_sec::before {
  content: "";
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}
.courses_sec .courses_swiper {
  overflow: hidden;
}

.join_sec .inner {
  background-color: #97CCDC;
  border-radius: 15px;
  min-height: 445px;
  padding: 0 4vw;
  overflow: hidden !important;
  position: relative;
}
.join_sec .inner .img_box {
  position: relative;
}
.join_sec .inner .img_box .secImg {
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  position: relative;
  z-index: 55;
}
.join_sec .inner .img_box::before {
  content: "";
  width: 400px;
  height: 470px;
  background: url(../images/joinImg_bg.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 10px;
  bottom: 0;
  animation: rotating 100s linear infinite both;
}
.join_sec .inner .vector_tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
}
.join_sec .inner .vector_tr2 {
  position: absolute;
  top: -20px;
  right: 25px;
  animation: floating 10s linear infinite both alternate-reverse;
}
.join_sec .inner .vector_br {
  position: absolute;
  bottom: -60px;
  right: -4%;
  z-index: 66;
  width: 55%;
  -o-object-fit: contain;
     object-fit: contain;
}
.join_sec .inner .vector_tl {
  position: absolute;
  top: 0;
  left: 0;
}
.join_sec .inner .vector_bl {
  width: 222px;
  height: 222px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -80px;
  left: -80px;
  animation: rotating 50s linear infinite both;
}
.join_sec .inner .vector_bl2 {
  width: 118px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.join_sec .inner .vector_l {
  position: absolute;
  top: 180px;
  left: -20px;
  animation: floating 10s linear infinite both alternate;
}
.join_sec .vector {
  position: absolute;
  bottom: 35%;
  right: 1%;
  z-index: 6;
  width: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}
.join_sec .vector2 {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 140px;
}

.products_sec {
  background-color: #F5F5F5;
}
.products_sec .prod_card {
  position: relative;
  border-radius: 15px;
  margin-bottom: 25px;
  background-color: #fff;
  height: calc(100% - 25px);
  box-shadow: 0 0 15px 20px rgba(233, 250, 249, 0.262745098);
  transition: all 0.3s linear;
}
.products_sec .prod_card .img_box {
  height: 230px;
  position: relative;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.products_sec .prod_card .card-body {
  padding: 1.5rem 1.25rem;
}
.products_sec .prod_card .card-body .stars {
  font-size: 13px;
  margin-bottom: 15px;
}
.products_sec .prod_card .card-body .stars i {
  color: #ccc;
}
.products_sec .prod_card .card-body .stars i.active {
  color: #FFBF3F;
}
.products_sec .prod_card .card-body .stars .rate_txt {
  color: #666;
}
.products_sec .prod_card .card-body .title {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 65%;
}
.products_sec .prod_card .card-body .prices {
  font-size: 13px;
}
.products_sec .prod_card .card-body .prices .del {
  font-size: 13px;
}
.products_sec .prod_card .card-body .prices .price {
  color: #FF3B30;
}
.products_sec .prod_card .card-body .p {
  color: #6E6E6E;
  line-height: 1.6;
}
.products_sec .prod_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px 20px rgba(254, 241, 231, 0.6039215686);
}
.products_sec .bg {
  width: 95%;
  left: 1%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floating 20s linear infinite both alternate;
}

.join_sec2 .inner {
  background-color: #97CCDC;
  border-radius: 15px;
  min-height: 400px;
  padding-inline-start: 4vw;
  padding-inline-end: 4vw;
  overflow: hidden !important;
  position: relative;
}
.join_sec2 .inner .txt_box {
  position: relative;
  padding: 40px 4vw 80px 4vw;
  background: url(../images/joinImg_bg_2.svg) no-repeat bottom;
  background-size: cover;
}
.join_sec2 .inner .txt_box .title {
  font-size: 35px;
  line-height: 1.5;
}
.join_sec2 .inner .txt_box .p {
  font-size: 16px;
  color: #000;
}
.join_sec2 .inner .secImg {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  height: 410px;
}
.join_sec2 .inner .vector_tr {
  position: absolute;
  top: -10px;
  right: -5px;
  animation: floating 10s linear infinite both alternate;
}
.join_sec2 .inner .vector_bl {
  position: absolute;
  bottom: -33px;
  left: -7px;
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.join_sec2 .inner .vector_tc {
  position: absolute;
  top: 140px;
  right: 33%;
  width: 13%;
  -o-object-fit: contain;
     object-fit: contain;
}

.testmonial_sec {
  background-color: #F8F8F8;
}
.testmonial_sec .feedback_card {
  border-radius: 15px;
  border: 1px solid transparent;
  padding: 45px 4vw;
  position: relative;
  text-align: center;
  transition: all 0.3s linear;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.testmonial_sec .feedback_card .prof_data {
  margin-bottom: 25px;
}
.testmonial_sec .feedback_card .prof_data .avatar {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #eee;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: block;
}
.testmonial_sec .feedback_card .prof_data .name {
  font-size: 18px;
}
.testmonial_sec .feedback_card .prof_data .stars i {
  color: #ccc;
  font-size: 14px;
}
.testmonial_sec .feedback_card .prof_data .stars i.active {
  color: var(--secondary);
}
.testmonial_sec .feedback_card .p {
  font-size: 14px;
  color: #133240;
}
.testmonial_sec .feedback_card::after {
  content: "";
  width: 0%;
  height: 5px;
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 25px;
  opacity: 0;
  transition: all 0.3s linear;
}
.testmonial_sec .feedback_swiper .swiper-slide {
  height: auto;
}
.testmonial_sec .feedback_swiper .swiper-slide-active .feedback_card {
  background-color: #fff;
}
.testmonial_sec .feedback_swiper .swiper-slide-active .feedback_card::after {
  width: 100%;
  opacity: 1;
}
.testmonial_sec .vector_l {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header .title {
  color: #191919;
}
.pg_header .bread .item {
  color: #191919;
  margin: 0 5px;
  font-size: 18px;
}
.pg_header .bread .item::after {
  content: "\f104";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 10px;
  margin-inline-start: 10px;
  pointer-events: none;
  color: #555;
}
.pg_header .bread .item.active::after {
  display: none;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about_pg {
  padding: 100px 0 70px 0;
}
.about_pg .img_box {
  position: relative;
  height: 550px;
  border-radius: 20px;
}
.about_pg .img_box .secImg {
  border-radius: 20px;
  transform: rotate(1.2deg);
}
.about_pg .img_box .stud_box {
  background-color: #88B7CB;
  border-radius: 20px;
  padding: 25px 30px;
  border-radius: 20px;
  position: absolute;
  bottom: 30%;
  inset-inline-end: -25%;
  display: flex;
  align-items: center;
}
.about_pg .img_box .stud_box .icon {
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 20px;
}
.about_pg .img_box .stud_box .txt .counter {
  font-size: 34px;
  color: #303135;
}
.about_pg .img_box .stud_box .txt .p {
  color: #303135;
  font-size: 20px;
}
.about_pg .img_box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #D9D9D9;
  border-radius: 20px;
  transform: rotate(-5deg);
}
.about_pg .img_box::after {
  content: "";
  width: 85%;
  height: 400px;
  background: url(../images/vector_about_pg_1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -60px;
  right: -80px;
}
.about_pg .txt_box .title {
  line-height: 1.5;
  font-size: 34px;
  position: relative;
}
.about_pg .txt_box .title .shape {
  position: absolute;
  inset-inline-end: 65px;
  top: -12px;
  width: 280px;
  z-index: -1;
}
.about_pg .txt_box .p {
  font-size: 14px;
  color: #535353;
}
.about_pg .txt_box .ul li {
  padding-inline-start: 30px;
  position: relative;
  margin-bottom: 20px;
}
.about_pg .txt_box .ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: -3px;
  font-size: 18px;
}
.about_pg .vector {
  position: absolute;
  top: 30px;
  inset-inline-end: 2%;
  width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq_sec {
  overflow: unset;
}
.faq_sec .inner {
  border-radius: 20px;
  padding: 4vw;
  border: 1px solid #DCDCDC;
  background-color: #fff;
}
.faq_sec .inner .accordion-item {
  border: 0;
  border-radius: 20px !important;
  margin-bottom: 25px;
}
.faq_sec .inner .accordion-item .accordion-button {
  color: #000;
  background-color: transparent;
  box-shadow: none;
  border-radius: 20px 20px 0 0;
  padding: 30px;
  border: 0;
  display: flex;
  align-items: center;
}
.faq_sec .inner .accordion-item .accordion-button:not(.collapsed) {
  background-color: #F5F5F5;
}
.faq_sec .inner .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
  background-color: #fff;
  transform: rotate(-90deg) !important;
}
.faq_sec .inner .accordion-item .accordion-button:not(.collapsed) .num {
  background-color: #000;
  color: #fff;
}
.faq_sec .inner .accordion-item .accordion-button h3 {
  width: calc(100% - 40px);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
.faq_sec .inner .accordion-item .accordion-button .num {
  font-size: 14px;
  color: #333;
  background-color: #f5f5f5;
  border-radius: 50%;
  font-weight: bold;
  margin-inline-end: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}
.faq_sec .inner .accordion-item .accordion-button::after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-image: none;
  content: "\f104";
  font-family: "Font Awesome 5 Pro";
  transform: rotate(0) !important;
}
.faq_sec .inner .accordion-item .accordion-body {
  padding-inline-start: 85px;
  padding-inline-end: 50px;
  padding-top: 0;
  padding-bottom: 30px;
  background-color: #F5F5F5;
  border-radius: 0 0 20px 20px;
}
.faq_sec .inner .accordion-item .accordion-body .text {
  font-size: 14px;
  color: #4E4E4E;
  line-height: 1.7;
}
.faq_sec::before, .faq_sec::after {
  content: "";
  width: 350px;
  height: 250px;
  filter: blur(50px);
  background-color: #EEFAF6;
  border-radius: 40%;
  position: absolute;
  z-index: -1;
}
.faq_sec::before {
  top: -70px;
  left: 0;
}
.faq_sec::after {
  bottom: -70px;
  right: 0;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .contact_box {
  padding: 45px 2vw;
  box-shadow: 0 8px 30px 0 rgba(150, 150, 150, 0.137254902);
  border-radius: 10px;
  margin-bottom: 35px;
}
.contact_pg .contact_box .icon_box {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  font-size: 25px;
}
.contact_pg .contact_box .txt_content {
  text-align: center;
}
.contact_pg .contact_box .txt_content .title {
  font-size: 18px;
  color: #000;
}
.contact_pg .contact_box .txt_content .p {
  color: #575757;
  font-size: 16px;
}
.contact_pg .col-lg-3:first-child .contact_box:first-child .icon_box {
  background-color: #FFF0DB;
  color: #FFA41B;
}
.contact_pg .col-lg-3:first-child .contact_box:last-child .icon_box {
  background-color: #E4E6FB;
  color: #525FE1;
}
.contact_pg .col-lg-3 .last_box .icon_box {
  background-color: #FFEBE5;
  color: #FB7C56;
}
.contact_pg .social_box {
  padding: 25px 2vw;
  margin-bottom: 35px;
}
.contact_pg .social_box .social_links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary);
  margin-bottom: 0px;
  font-size: 20px;
}
.contact_pg .social_box .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.contact_pg .form_box {
  position: relative;
}
.contact_pg .form_box .form-group {
  margin-bottom: 1.5rem;
}
.contact_pg .form_box .form-group .form-control {
  background-color: #F4F4F4;
  border-radius: 5px;
  border-color: #F4F4F4;
  padding-inline-start: 50px;
}
.contact_pg .form_box .form-group .icon {
  color: var(--primary);
  font-size: 20px;
  position: absolute;
  top: 16px;
  inset-inline-start: 20px;
}
.contact_pg .form_box .form-group input, .contact_pg .form_box .form-group select {
  height: 60px !important;
}
.contact_pg .form_box .form-group textarea {
  padding-top: 23px;
}
.contact_pg .form_box .butn {
  height: 60px;
  border-radius: 5px;
}
.contact_pg .form_box::before {
  content: "";
  width: 30%;
  height: 300px;
  background: url(../images/vector_contact.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -107px;
  inset-inline-start: -25%;
}

/**********************************************
    Start Edit courses Page 
**********************************************/
.courses_pg .filter_box {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 20px;
}
.courses_pg .filter_box .form-control {
  height: 50px !important;
  border-radius: 5px;
  border: 1px solid #cbcbcb;
}
.courses_pg .filter_box .form-control::-moz-placeholder {
  color: #969696;
}
.courses_pg .filter_box .form-control::placeholder {
  color: #969696;
}
.courses_pg .sort_box .form-control {
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid #eee !important;
  height: 50px !important;
  padding-inline-start: 40px;
  font-size: 14px;
}
.courses_pg .sort_box i {
  position: absolute;
  top: 18px;
  inset-inline-start: 8px;
  color: var(--primary);
}
.courses_pg .search_box .form-control {
  height: 50px !important;
  border-radius: 5px;
  border: 1px solid #cbcbcb;
  padding-inline-start: 45px;
}
.courses_pg .search_box .form-control::-moz-placeholder {
  color: #969696;
}
.courses_pg .search_box .form-control::placeholder {
  color: #969696;
}
.courses_pg .search_box .filter_butn {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
}
.courses_pg .search_box .submit_butn {
  color: #969696;
  background-color: transparent;
  position: absolute;
  top: 12px;
  inset-inline-start: 15px;
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register_pg .inner {
  padding: 65px 3vw;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
.register_pg .inner .form_box .form-group {
  margin-bottom: 1.5rem;
}
.register_pg .inner .form_box .form-group .form-control {
  background-color: #F4F4F4;
  border-radius: 5px;
  border-color: #F4F4F4;
  padding-inline-start: 50px;
}
.register_pg .inner .form_box .form-group .icon {
  color: var(--primary);
  font-size: 20px;
  position: absolute;
  top: 16px;
  inset-inline-start: 20px;
}
.register_pg .inner .form_box .form-group input, .register_pg .inner .form_box .form-group select {
  height: 60px !important;
}
.register_pg .inner .form_box .form-group textarea {
  padding-top: 20px;
}
.register_pg .inner .form_box .form-check {
  margin: 10px 0;
  padding: 0;
}
.register_pg .inner .form_box .form-check .sm_img {
  width: 50px;
  height: 50px;
  -o-object-position: top;
     object-position: top;
  display: block;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 10px auto !important;
}
.register_pg .inner .form_box .form-check .form-check-input {
  display: none;
}
.register_pg .inner .form_box .form-check .form-check-label {
  text-align: center;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 20px;
  display: block;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 16px;
  color: #777;
}
.register_pg .inner .form_box .form-check .form-check-input:checked ~ .form-check-label {
  color: var(--primary);
  border-color: var(--primary);
  background-color: #F4F4F4;
}
.register_pg .inner .form_box .phone_group .form-control {
  direction: ltr;
  padding-left: 100px;
  padding-right: 50px;
}
.register_pg .inner .form_box .phone_group .apply_butn {
  position: absolute;
  font-weight: bold;
  color: var(--primary);
  inset-inline-start: 50px;
  top: 20px;
  text-decoration: underline !important;
  font-size: 14px;
}
.register_pg .inner .form_box .phone_group .code_select {
  position: absolute;
  left: 10px;
  top: 0;
  background-color: transparent;
  border: transparent;
  padding: 0 1rem;
  color: #666;
}
.register_pg .inner .form_box .show_hide_password .show_pass {
  position: absolute;
  top: 23px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
}
.register_pg .inner .form_box .form-check .form-check-input {
  height: 1rem !important;
}
.register_pg .inner .form_box .form-check .form-check-label {
  font-size: 14px;
  color: #888;
}
.register_pg .inner .form_box .butn {
  height: 60px;
  border-radius: 5px;
}
.register_pg .inner .form_box .drop_box {
  overflow: hidden;
  background-color: #F4F4F4;
  border: 1px solid #F4F4F4;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.register_pg .inner .form_box .drop_box .kwt-file {
  width: 100%;
}
.register_pg .inner .form_box .drop_box .kwt-file__drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20.2px 10px;
  transition: 0.3s;
  padding-inline-start: 50px;
  font-size: 14px;
}
.register_pg .inner .form_box .drop_box .kwt-file__drop-area.is-active {
  background-color: rgba(48, 104, 157, 0.0862745098);
}
.register_pg .inner .form_box .drop_box .kwt-file__choose-file {
  flex-shrink: 0;
  background-color: transparent;
  border-radius: 5px;
  margin-inline-end: 10px;
  color: #888;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: absolute;
  inset-inline-end: 0;
}
.register_pg .inner .form_box .drop_box .kwt-file__choose-file.kwt-file_btn-text {
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
}
.register_pg .inner .form_box .drop_box .kwt-file__choose-file svg {
  width: 19px;
  height: 19px;
  display: block;
}
.register_pg .inner .form_box .drop_box .kwt-file__msg {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.register_pg .inner .form_box .drop_box .kwt-file__input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.register_pg .inner .form_box .drop_box .kwt-file__input:focus {
  outline: none;
}
.register_pg .inner .form_box .drop_box .kwt-file__delete {
  display: none;
  position: absolute;
  inset-inline-end: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.register_pg .inner .form_box .drop_box .kwt-file__delete:before {
  content: "";
  position: absolute;
  inset-inline-end: 45px;
  transition: 0.3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%231d3557' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}
.register_pg::before {
  content: "";
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}
.register_pg .vector {
  position: absolute;
  top: 20%;
  right: 5%;
}
.register_pg .vector2 {
  position: absolute;
  left: 5%;
  bottom: 20%;
}

/**********************************************
    Start Edit profile Page 
**********************************************/
.profile_pg .prof-side .wrapper {
  padding: 3vw 2vw;
  border-radius: 12px;
  margin-bottom: 25px;
  background-color: #fff;
}
.profile_pg .prof-side .wrapper.links-data .nav-link {
  color: #707070;
  background-color: #F4F4F4;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.profile_pg .prof-side .wrapper.links-data .nav-link .icon {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.profile_pg .prof-side .wrapper.links-data .nav-link.active {
  background-color: var(--primary);
  color: #fff !important;
}
.profile_pg .prof-side .wrapper.links-data .nav-link.active .icon {
  filter: var(--filterWhite);
}
.profile_pg .prof-side .wrapper.links-data .logout_butn {
  color: #FF3B30;
  background-color: #FFD9D7;
}
.profile_pg .tab_wrapper {
  padding: 50px 3vw;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 10px 10px 10px rgba(189, 237, 235, 0.0470588235);
}
.profile_pg .tab_wrapper .title_w_shape span {
  position: relative;
  z-index: 5;
}
.profile_pg .tab_wrapper .title_w_shape::before {
  z-index: 1;
}
.profile_pg .tab_wrapper .primary_butn {
  min-width: 200px;
  border-radius: 5px;
}
.profile_pg .tab_wrapper.profile_tab .editData_box {
  display: none;
}
.profile_pg .tab_wrapper.profile_tab .avatar_box {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  margin: 0 auto 25px auto;
}
.profile_pg .tab_wrapper.profile_tab .data-group {
  margin: 10px 0;
  position: relative;
}
.profile_pg .tab_wrapper.profile_tab .data-group .data {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 15px;
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
}
.profile_pg .tab_wrapper.profile_tab .data-group .data i {
  color: var(--primary);
  margin-inline-end: 5px;
}
.profile_pg .tab_wrapper.profile_tab .data-group .comp_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
  border-radius: 12px;
}
.profile_pg .tab_wrapper.profile_tab .data-group .comp_img_small {
  width: 100px;
  height: 80px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 5px;
}
.profile_pg .tab_wrapper.profile_tab .form-control {
  border-radius: 13px;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.profile_pg .tab_wrapper.profile_tab .editPhone_butn {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 100px;
  min-width: 100px;
}
.profile_pg .tab_wrapper.courses_tab {
  padding: 50px 0vw 0 0;
}
.profile_pg .tab_wrapper.courses_tab .table {
  border-radius: 15px;
}
.profile_pg .tab_wrapper.courses_tab .table thead, .profile_pg .tab_wrapper.courses_tab .table tbody, .profile_pg .tab_wrapper.courses_tab .table tfoot, .profile_pg .tab_wrapper.courses_tab .table tr, .profile_pg .tab_wrapper.courses_tab .table td, .profile_pg .tab_wrapper.courses_tab .table th {
  border-color: #eee !important;
  text-align: center;
}
.profile_pg .tab_wrapper.courses_tab .table thead tr {
  background-color: #1D2426;
  border-radius: 15px;
  text-align: center;
}
.profile_pg .tab_wrapper.courses_tab .table thead tr th {
  color: #fff;
  font-size: 16px;
  padding: 1.3rem 1rem;
}
.profile_pg .tab_wrapper.courses_tab .table thead tr th:nth-child(1) {
  border-radius: 0 15px 0 0;
}
.profile_pg .tab_wrapper.courses_tab .table thead tr th:last-child {
  border-radius: 15px 0 0 0;
}
.profile_pg .tab_wrapper.courses_tab .table tbody tr:last-child td:nth-child(1) {
  border-radius: 0 0 15px 0;
}
.profile_pg .tab_wrapper.courses_tab .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.profile_pg .tab_wrapper.courses_tab .table tr:last-child td {
  border-bottom: 1px solid transparent;
}
.profile_pg .tab_wrapper.courses_tab .table .butn.sm_butn {
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 13px;
}
.profile_pg .tab_wrapper.courses_tab .prod_data .prod_img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  padding: 5px;
  border: 1px solid #eee;
  margin-inline-end: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_pg .tab_wrapper.courses_tab .badge {
  padding: 0.5rem 0rem;
  min-width: 110px;
}
.profile_pg .tab_wrapper.noti_tab .noti_card {
  border-radius: 15px;
  padding: 35px 20px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  position: relative;
}
.profile_pg .tab_wrapper.noti_tab .noti_card .date {
  position: absolute;
  inset-inline-end: 20px;
  top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #aaa;
}
.profile_pg .tab_wrapper.noti_tab .noti_card .date i {
  color: var(--primary);
}
.profile_pg .tab_wrapper.noti_tab .noti_card .icon_box {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-inline-end: 25px;
  color: #fff;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile_pg .tab_wrapper.noti_tab .noti_card .content {
  width: calc(100% - 80px);
}
.profile_pg .tab_wrapper.noti_tab .noti_card .content .title {
  font-weight: bold;
  color: #666;
  transition: all 0.3s linear;
  font-size: 20px;
  margin-bottom: 0px !important;
}
.profile_pg .tab_wrapper.noti_tab .noti_card .content .p {
  margin-top: 5px;
  font-size: 15px;
  color: #888;
}
.profile_pg .tab_wrapper.noti_tab .noti_card:hover .title {
  color: var(--primary);
}
.profile_pg .tab_wrapper.man_courses_tab .nav {
  border-bottom: 1px solid #ddd;
}
.profile_pg .tab_wrapper.man_courses_tab .nav .nav-link {
  border-bottom: 1px solid transparent;
  background-color: transparent;
  border-radius: 0;
  color: #666;
  font-size: 17px;
}
.profile_pg .tab_wrapper.man_courses_tab .nav .nav-link.active {
  background-color: transparent;
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.profile_pg .tab_wrapper.man_courses_tab .stars i {
  color: #ccc;
}
.profile_pg .tab_wrapper.man_courses_tab .stars i.active {
  color: #FFBF3F;
}
.profile_pg::before {
  content: "";
  width: 100%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

.state_pg .icon {
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
}
.state_pg .butn {
  height: 65px;
  border-radius: 10px;
}

/**********************************************
    Start Edit products Page 
**********************************************/
.products_pg .filter_form .form-control {
  height: 40px;
  background-color: #F1F1F1;
  border-radius: 10px;
  border-color: #F1F1F1;
}
.products_pg .filter_form .sm_butn {
  border-radius: 10px;
}

/**********************************************
    Start Edit product det Page 
**********************************************/
.products_det_pg .img_box {
  position: relative;
  height: 540px;
}
.products_det_pg .img_box .secImg {
  border-radius: 15px;
}
.products_det_pg .card-body {
  padding: 2rem 1.5rem;
}
.products_det_pg .card-body .stars i {
  color: #ccc;
}
.products_det_pg .card-body .stars i.active {
  color: #FFBF3F;
}
.products_det_pg .card-body .stars .rate_txt {
  color: #101010;
}
.products_det_pg .card-body .sm_box {
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  margin-top: -150px;
  position: relative;
  z-index: 5;
}
.products_det_pg .card-body .sm_box .vid_box {
  position: relative;
  height: 300px;
}
.products_det_pg .card-body .sm_box .vid_box .secImg {
  border-radius: 15px;
}
.products_det_pg .card-body .sm_box .vid_box .button {
  background-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  z-index: 6;
}
.products_det_pg .card-body .sm_box .vid_box .button.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.products_det_pg .card-body .sm_box .vid_box .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.products_det_pg .card-body .sm_box .vid_box .button.is-play .triangle {
  animation: fadeIn 7s ease;
}
.products_det_pg .card-body .sm_box .vid_box .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  animation: triangleStroke 3s;
  animation-timing-function: ease;
}
.products_det_pg .card-body .sm_box .vid_box .button .has-scale-animation {
  animation: smallScale 3s infinite;
}
.products_det_pg .card-body .sm_box .vid_box .button .has-delay-short {
  animation-delay: 0.5s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.products_det_pg::before {
  content: "";
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

.products_det_pg2 .product_imgs .gallery-top img {
  height: 500px;
  border-radius: 15px;
  padding: 10px;
  border: 1px solid #eee;
}
.products_det_pg2 .product_imgs .gallery-thumbs {
  height: 500px;
  overflow: hidden;
}
.products_det_pg2 .product_imgs .gallery-thumbs img {
  height: 80px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 15px;
  transition: all 0.3s linear;
  opacity: 0.7;
}
.products_det_pg2 .product_imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: var(--primary);
  opacity: 1;
}
.products_det_pg2 .product_imgs .share_links .title {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.products_det_pg2 .product_imgs .share_links .title::after {
  content: "";
  width: 45px;
  height: 2px;
  display: inline-block;
  background-color: var(--primary);
  margin: 0 10px;
}
.products_det_pg2 .product_imgs .share_links .links a {
  margin: 0 10px;
  font-size: 20px;
}
.products_det_pg2 .product_imgs .share_links .links .fa-facebook-f {
  color: #0866FF;
}
.products_det_pg2 .product_imgs .share_links .links .fa-x-twitter {
  color: #000;
}
.products_det_pg2 .product_imgs .share_links .links .fa-paper-plane {
  color: #33A8DA;
}
.products_det_pg2 .product_imgs .share_links .links .fa-whatsapp {
  color: #2DB061;
}
.products_det_pg2 .product_imgs .share_links .links .fa-link {
  color: var(--primary);
}
.products_det_pg2 .txt .price_box {
  font-size: 20px;
}
.products_det_pg2 .txt .price_box .fw-bold {
  color: var(--primary);
}
.products_det_pg2 .txt .price_box .prev_price {
  font-size: 85%;
  color: #C4C4C4;
  text-decoration: line-through;
}
.products_det_pg2 .inner .rates_body {
  padding-top: 30px;
}
.products_det_pg2 .inner .rates_body .rates_r {
  border-left: 1px solid #D3D3D3;
  padding: 25px 2vw;
}
.products_det_pg2 .inner .rates_body .rates_r .stars i {
  color: #ccc;
}
.products_det_pg2 .inner .rates_body .rates_r .stars i.active {
  color: #2E9600;
}
.products_det_pg2 .inner .rates_body .rates_r .stars .num_rates {
  color: #747474;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item .star {
  color: #012E47;
  font-size: 15px;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item .progress {
  width: calc(100% - 80px);
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item .progress_num {
  color: #012E47;
  font-weight: bold;
  font-size: 15px;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(1) .star i {
  color: #2E9600;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(1) .progress-bar {
  background-color: #2E9600;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(2) .star i {
  color: #7F9E00;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(2) .progress-bar {
  background-color: #7F9E00;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(3) .star i {
  color: #F7AA2C;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(3) .progress-bar {
  background-color: #F7AA2C;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(4) .star i {
  color: #F6752F;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(4) .progress-bar {
  background-color: #F6752F;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(5) .star i {
  color: #f24d30;
}
.products_det_pg2 .inner .rates_body .rates_r .stars_progress .item:nth-child(5) .progress-bar {
  background-color: #f24d30;
}
.products_det_pg2 .inner .rates_body .rates_r .faq_items .title {
  font-size: 15px;
}
.products_det_pg2 .inner .rates_body .rates_r .faq_items .p {
  font-size: 14px;
}
.products_det_pg2 .inner .rates_body .rates_l {
  padding: 10px 2vw 25px 2vw;
}
.products_det_pg2 .inner .rates_body .rates_l .head_rates_l {
  padding-bottom: 25px;
  border-bottom: 1px solid #D3D3D3;
}
.products_det_pg2 .inner .rates_body .rates_l .head_rates_l .form-control {
  height: 50px !important;
  background-color: transparent;
  border: 1px solid #eee;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item {
  position: relative;
  padding: 30px 2vw;
  border-radius: 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 15px;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .prof_data .name {
  font-size: 18px;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .prof_data .rating i {
  font-size: 14px;
  color: #BDBDBD;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .prof_data .rating i.active {
  color: #DE980F;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 14px;
}
.products_det_pg2 .inner .rates_body .rates_l .review_item .review_det {
  color: #606060;
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 20px;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 2em;
  justify-content: start;
  padding: 0 0.2em;
  text-align: center;
  margin: auto;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating i {
  margin: 0 5px;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating input {
  display: none;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating label {
  color: #FFEEC9;
  cursor: pointer;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating :checked ~ label {
  color: #FFD06A;
}
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating label:hover,
.products_det_pg2 .inner .rates_body .rates_form .stars-content .star-rating label:hover ~ label {
  color: #FFB820;
}

/**********************************************
    Start Edit courses_det Page 
**********************************************/
.courses_det_pg .img_box .secImg {
  border-radius: 15px 15px 0 0;
}
.courses_det_pg .nav {
  background-color: #F4F4F4;
  padding: 1rem 1rem 0 1rem;
  border-radius: 15px 15px;
}
.courses_det_pg .nav .nav-link {
  border-bottom: 1px solid transparent;
  background-color: transparent;
  border-radius: 0;
  color: #666;
  font-size: 17px;
  margin-inline-end: 2vw;
  padding-bottom: 16px;
  min-width: 130px;
  font-weight: 400;
}
.courses_det_pg .nav .nav-link.active {
  font-weight: 500;
  background-color: transparent;
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.courses_det_pg .card-body .rates_tab .review_item {
  position: relative;
  padding: 20px 2vw;
  border-radius: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 10px 10px 10px rgba(189, 237, 235, 0.0470588235);
}
.courses_det_pg .card-body .rates_tab .review_item .prof_data .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-inline-end: 15px;
}
.courses_det_pg .card-body .rates_tab .review_item .prof_data .name {
  font-size: 13px;
}
.courses_det_pg .card-body .rates_tab .review_item .prof_data .rating i {
  font-size: 11px;
  color: #BDBDBD;
}
.courses_det_pg .card-body .rates_tab .review_item .prof_data .rating i.active {
  color: #DE980F;
}
.courses_det_pg .card-body .rates_tab .review_item .prof_data .rating .date {
  color: #7E7E7E;
  font-size: 11px;
}
.courses_det_pg .card-body .rates_tab .review_item .review_det {
  color: #606060;
  font-size: 13px;
  margin-bottom: 0;
}
.courses_det_pg .card-body .trainer_tab .trainer_head .prof_data .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.courses_det_pg .card-body .trainer_tab .trainer_head .prof_data .name {
  font-size: 16px;
}
.courses_det_pg .card-body .trainer_tab .trainer_head .social_links a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-inline-end: 7px;
}
.courses_det_pg .card-body .trainer_tab .trainer_head .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.courses_det_pg .card-body .trainer_tab .item {
  padding: 20px 25px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
}
.courses_det_pg .card-body .trainer_tab .item .icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.courses_det_pg .card-body .trainer_tab .item .txt {
  width: calc(100% - 75px);
}
.courses_det_pg .card-body .trainer_tab .item.blue_bg {
  background-color: rgba(82, 95, 225, 0.2);
}
.courses_det_pg .card-body .trainer_tab .item.green_bg {
  background-color: rgba(15, 157, 88, 0.2);
}
.courses_det_pg .card-body .schedule_tab .reserved_time {
  background-color: rgba(220, 238, 243, 0.6);
  color: var(--primary);
  text-align: center;
  font-size: 12px;
}
.courses_det_pg .card-body .schedule_tab th {
  font-size: 14px;
  text-align: center;
}
.courses_det_pg .card-body .schedule_tab th,
.courses_det_pg .card-body .schedule_tab th {
  padding: 1rem 0.2rem;
}
.courses_det_pg .card-body .schedule_tab td {
  vertical-align: middle;
}
.courses_det_pg .card-body .lec_box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  position: relative;
  padding: 35px 25px 0 25px;
}
.courses_det_pg .card-body .lec_box p i {
  color: var(--primary);
  margin-inline-end: 7px;
}
.courses_det_pg .card-body .lec_box .butn {
  margin-bottom: -20px;
}
.courses_det_pg .card-body .lec_box .card-ribbon {
  position: absolute;
  overflow: hidden;
  top: -10px;
  left: -10px;
  width: 114px;
  height: 112px;
}
.courses_det_pg .card-body .lec_box .card-ribbon span {
  position: absolute;
  display: block;
  width: 160px;
  padding: 10px 0;
  background-color: rgb(210, 46, 46);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  left: -35px;
  top: 25px;
  transform: rotate(-45deg);
  font-weight: bold;
}
.courses_det_pg .card-body .lec_box .card-ribbon::before {
  top: 0;
  right: 0;
}
.courses_det_pg .card-body .lec_box .card-ribbon::after {
  bottom: 0;
  left: 0;
}
.courses_det_pg .card-body .lec_box .card-ribbon::before, .courses_det_pg .card-body .lec_box .card-ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid rgb(146, 29, 29);
  border-top-color: transparent;
  border-left-color: transparent;
}
.courses_det_pg .card-body .sm_box {
  margin-top: -200px;
  border: 1px solid #f5f5f5;
}
.courses_det_pg .card-body .sm_box .vid_box {
  height: 195px;
}
.courses_det_pg .card-body .sm_box .course_contains .item {
  font-size: 14px;
  margin-bottom: 10px;
}
.courses_det_pg .card-body .sm_box .course_contains .item i {
  font-size: 18px;
  color: var(--primary);
  margin-inline-end: 7px;
}
.courses_det_pg .card-body .sm_box .course_contains .item .icon {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 7px;
}
.courses_det_pg .card-body .sm_box .sm_butn {
  height: 48px;
  width: 48px;
}

.recorded_course_pg .vid_box {
  height: 525px;
}
.recorded_course_pg .vid_box video {
  border-radius: 15px;
}
.recorded_course_pg .vids_box {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 10px 10px rgba(189, 237, 234, 0.1215686275);
  height: 630px;
  overflow-y: auto;
}
.recorded_course_pg .vids_box::-webkit-scrollbar-thumb {
  background: #969696;
}
.recorded_course_pg .vids_box .title {
  color: var(--primary);
}
.recorded_course_pg .vids_box .title i {
  margin-inline-end: 15px;
}
.recorded_course_pg .vids_box .data_body .data {
  margin-bottom: 40px;
}
.recorded_course_pg .vids_box .data_body .data .data_title {
  font-size: 18px;
  margin-bottom: 15px;
}
.recorded_course_pg .vids_box .data_body .data .item {
  border-radius: 5px;
  padding: 0.9rem 1rem;
  display: block;
}
.recorded_course_pg .vids_box .data_body .data .item .vid_link {
  font-size: 15px;
}
.recorded_course_pg .vids_box .data_body .data .item .vid_link i {
  color: var(--primary);
  margin-inline-end: 10px;
}
.recorded_course_pg .vids_box .data_body .data .item .vid_link.disabled {
  color: #777;
  pointer-events: none;
}
.recorded_course_pg .vids_box .data_body .data .item .homework_link {
  text-decoration: underline !important;
  color: #666;
  font-size: 12px;
  font-weight: 600;
}
.recorded_course_pg .vids_box .data_body .data .item .homework_link i {
  margin-inline-end: 5px;
}
.recorded_course_pg .vids_box .data_body .data .item .homework_link.checked {
  color: #0F9D58;
  text-decoration: none !important;
  pointer-events: none;
}
.recorded_course_pg .vids_box .data_body .data .item.active {
  background-color: rgba(37, 107, 127, 0.15);
}

/**********************************************
    Start Edit cart Page 
**********************************************/
.cart_pg .box {
  border-radius: 15px;
  border: 1px solid #eee;
  background-color: #fff;
}
.cart_pg .box .table {
  margin-bottom: 0;
  border-radius: 15px;
}
.cart_pg .box .table thead, .cart_pg .box .table tbody, .cart_pg .box .table tfoot, .cart_pg .box .table tr, .cart_pg .box .table td, .cart_pg .box .table th {
  border-color: #eee !important;
  text-align: center;
}
.cart_pg .box .table thead tr {
  background-color: #1D2426;
  border-radius: 15px;
  text-align: center;
}
.cart_pg .box .table thead tr th {
  color: #fff;
  font-size: 16px;
  padding: 1.3rem 1rem;
}
.cart_pg .box .table thead tr th:nth-child(1) {
  border-radius: 0 15px 0 0;
}
.cart_pg .box .table thead tr th:last-child {
  border-radius: 15px 0 0 0;
}
.cart_pg .box .table tbody tr:last-child td:nth-child(1) {
  border-radius: 0 0 15px 0;
}
.cart_pg .box .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.cart_pg .box .table tr:last-child td {
  border-bottom: 1px solid transparent !important;
}
.cart_pg .box .table .butn.sm_butn {
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 13px;
}
.cart_pg .box .qty-container {
  background-color: #fff;
  padding: 0.2rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.cart_pg .pay_radios .form-check {
  position: relative;
  padding: 0 5px;
  margin-bottom: 15px;
  border-radius: 15px;
  padding: 0 25px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_pg .pay_radios .form-check .form-check-label {
  width: 100%;
}
.cart_pg .pay_radios .form-check .title {
  font-size: 16px;
}
.cart_pg .pay_radios .form-check .title .img {
  width: 40px;
  margin-inline-end: 15px;
}
.cart_pg .pay_radios .form-check .circle {
  width: 24px;
  height: 24px;
  border: 3px solid #C9C9C9;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s linear;
}
.cart_pg .pay_radios .form-check .circle::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #698696;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s linear;
}
.cart_pg .pay_radios .form-check .form-check-input:checked ~ .form-check-label .title {
  color: var(--primary);
}
.cart_pg .pay_radios .form-check .form-check-input:checked ~ .form-check-label .circle {
  border-color: var(--primary);
}
.cart_pg .pay_radios .form-check .form-check-input:checked ~ .form-check-label .circle::before {
  transform: translate(-50%, -50%) scale(1);
}
.cart_pg .pay_radios .form-check .form-check-input {
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 100%;
  border-radius: 0;
  top: 0;
  right: 0;
}
.cart_pg .sm_box {
  border-radius: 15px;
  padding: 35px 2vw;
  box-shadow: 0 10px 10px 10px rgba(189, 237, 234, 0.1215686275);
  background-color: #fff;
  margin-bottom: 30px;
}
.cart_pg .sm_box .couboun_box {
  position: relative;
}
.cart_pg .sm_box .couboun_box .form-control {
  height: 60px;
  background-color: #f4f4f4;
  border-radius: 15px;
}
.cart_pg .sm_box .couboun_box .apply_butn {
  position: absolute;
  left: 5px;
  top: 5px;
  height: 50px;
  font-size: 16px;
  border-radius: 24px;
}
.cart_pg .summary_checkout {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 2vw;
  box-shadow: 0 10px 10px 10px rgba(189, 237, 234, 0.1215686275);
}
.cart_pg .summary_checkout .title {
  font-size: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 40px;
}
.cart_pg .summary_checkout .item {
  font-size: 15px;
  margin: 20px 0;
}
.cart_pg .summary_checkout .item:last-child {
  font-weight: bold;
}
.cart_pg .summary_checkout .butn {
  padding: 0.7rem;
}
.cart_pg::before {
  content: "";
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

/**********************************************
    Start Edit req_serv_pg Page 
**********************************************/
.req_serv_pg .inner {
  padding: 65px 3vw;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  border: 1px solid #f9f9f9;
}
.req_serv_pg .inner .title_w_shape span {
  position: relative;
  z-index: 5;
}
.req_serv_pg .inner .title_w_shape::before {
  z-index: 1;
}
.req_serv_pg .inner .form-group {
  margin-bottom: 1.5rem;
}
.req_serv_pg .inner .form-group .form-control {
  background-color: #F4F4F4;
  border-radius: 5px;
  border-color: #F4F4F4;
}
.req_serv_pg .inner .form-group .icon {
  color: var(--primary);
  font-size: 20px;
  position: absolute;
  top: 16px;
  inset-inline-start: 20px;
}
.req_serv_pg .inner .form-group input, .req_serv_pg .inner .form-group select {
  height: 60px !important;
}
.req_serv_pg .inner .form-group textarea {
  padding-top: 23px;
}
.req_serv_pg .inner .purp_group .label {
  font-size: 12px;
  color: #888;
  margin-bottom: 0.5rem;
}
.req_serv_pg .inner .purp_group .form-check {
  position: relative;
}
.req_serv_pg .inner .purp_group .form-check .form-check-label .price {
  color: var(--primary);
  margin-inline-start: 5px;
}
.req_serv_pg .inner .purp_group .form-check .form-check-input {
  height: 1rem !important;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box {
  border: 3px dashed #F4F4F4;
  padding: 0.375rem 0.75rem;
  border-radius: 5px;
  height: 250px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload_txt {
  text-align: center;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload_txt .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper {
  position: relative;
  font-size: 14px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper #file-upload-name {
  margin: 0px 0 0 0;
  font-size: 12px;
  position: absolute;
  bottom: -30px;
  text-align: center;
  width: 100%;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 0;
  position: relative;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #54575C;
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s linear all;
  width: 230px;
  height: 50px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper input[type=file] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper > svg {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin: 0 10px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success > svg {
  transform: translateX(-200px);
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.uploaded {
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-upload-text {
  font-weight: bold;
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .file-success-text {
  opacity: 0;
  transition: 0.2s linear all;
  visibility: hidden;
  transform: translateX(200px);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .file-success-text svg {
  width: 25px;
  height: auto;
  margin-inline-end: 10px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .file-success-text span {
  margin-left: 15px;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text span {
  display: none;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 0.3s;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0;
}
.req_serv_pg .inner .uploading_box .cv_uploading_box .upload-main-wrapper .upload-wrapper.success .file-upload-text {
  animation-name: bounceOutLeft;
  animation-duration: 0.2s;
  animation-fill-mode: both;
}
.req_serv_pg::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(27, 143, 137, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}

/**********************************************
    Start Edit chat Page 
**********************************************/
.chat_pg {
  /* ----------- */
}
.chat_pg .new_chat {
  display: flex;
  padding: 10px;
  height: 765px;
  position: relative;
  border-radius: 15px;
  background-color: #f5f5f5;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 20;
}
.chat_pg .new_chat::after {
  position: absolute;
  content: "";
  right: 10%;
  bottom: 5%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: rgba(3, 21, 53, 0.2078431373);
  z-index: -1;
  filter: blur(100px);
  opacity: 0.2;
}
.chat_pg .new_chat .search_card .form-group {
  position: relative;
}
.chat_pg .new_chat .search_card .form-group .form-control {
  min-height: 40px;
  border-radius: 15px;
}
.chat_pg .new_chat .search_card .form-group button {
  position: absolute;
  left: 15px;
  top: 8px;
  border: 0;
  background-color: transparent;
  color: #333;
}
.chat_pg .new_chat .users {
  width: 30%;
  padding: 15px;
  /* background-color: #fff; */
  border-radius: 10px;
  flex-shrink: 0;
  margin-inline-end: 15px;
}
.chat_pg .new_chat .users * {
  color: #222;
}
.chat_pg .new_chat .users .title .dropdown .dropdown-toggle::after {
  display: none;
}
.chat_pg .new_chat .users .title .dropdown .dropdown-item {
  font-size: 11px;
}
.chat_pg .new_chat .dlt-btn {
  font-size: 10px;
  margin-top: 40px;
  text-decoration: underline;
}
.chat_pg .new_chat .dlt-btn.disapled {
  pointer-events: none;
  opacity: 0.4;
}
.chat_pg .new_chat .users .users_cards {
  max-height: 550px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-inline-start: 20px;
}
.chat_pg .new_chat .users .users_cards::-webkit-scrollbar {
  height: 0;
  width: 0;
  background: transparent;
}
.chat_pg .new_chat .users .user_card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px;
  border-radius: 30px;
  margin: 15px 0;
}
.chat_pg .new_chat .users .user_card .form-check {
  position: absolute;
  right: -35px;
  top: 22px;
  padding: 0 15px;
}
.chat_pg .new_chat .users .user_card .form-check .form-check-input {
  margin: 0;
  float: none;
  border-radius: 8px;
  background-color: #ccc;
  border-color: #ccc;
  box-shadow: none;
  width: 15px;
  height: 15px;
  border-radius: 50% !important;
}
.chat_pg .new_chat .users .user_card .form-check .form-check-input:checked {
  background-color: var(--primary);
}
.chat_pg .new_chat .users .user_card:hover,
.chat_pg .new_chat .users .user_card.active {
  /* background-color: #f5f5f5; */
  background-color: rgba(255, 255, 255, 0.1333333333);
}
.chat_pg .new_chat .users .user_card .user_img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-inline-end: 15px;
}
.chat_pg .new_chat .users .user_card .user_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat_pg .new_chat .users .user_card .inf h6 {
  font-size: 12px;
  margin-bottom: 0 !important;
}
.chat_pg .new_chat .users .user_card .inf small {
  font-size: 8px;
  color: #999;
}
.chat_pg .new_chat .chat_content {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  /* flex-grow: 1; */
  width: calc(70% - 15px);
}
.chat_pg .new_chat .chat_content .dropdown .dropdown-toggle {
  color: #888;
}
.chat_pg .new_chat .chat_content .dropdown .dropdown-toggle::after {
  display: none;
}
.chat_pg .new_chat .chat_content .dropdown .dropdown-menu {
  background-color: #fff;
}
.chat_pg .new_chat .chat_content .dropdown .dropdown-menu .dropdown-item {
  font-size: 11px;
  color: #001821;
}
.chat_pg .new_chat .chat_content .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #001821;
}
.chat_pg .new_chat .chat_content .user_info {
  border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.chat_pg .new_chat .chat_content .user_info .user_card {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 30px;
  margin: 10px 0;
}
.chat_pg .new_chat .chat_content .user_info .user_card .user_img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-inline-end: 15px;
}
.chat_pg .new_chat .chat_content .user_info .user_card .user_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat_pg .new_chat .chat_content .user_info .user_card .inf small {
  font-size: 11px;
  color: #888;
}
.chat_pg .new_chat .chat_messages {
  height: 490px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px;
}
.chat_pg .new_chat .chat_messages .ms_time {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.2);
  float: right;
}
.chat_pg .new_chat .chat_messages::-webkit-scrollbar {
  height: 0;
  width: 0;
  background: transparent;
}
.chat_pg .new_chat .chat_messages .send_item {
  margin-bottom: 20px;
}
.chat_pg .new_chat .chat_messages .send_item .text {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #f8f8f8;
  font-size: 11px;
  width: -moz-max-content;
  width: max-content;
  max-width: 70%;
  font-weight: 500;
}
.chat_pg .new_chat .chat_messages .rsev_item {
  direction: ltr;
  margin-bottom: 20px;
}
.chat_pg .new_chat .chat_messages .rsev_item .ms_time {
  float: left;
  font-size: 8px;
}
.chat_pg .new_chat .chat_messages .rsev_item .text {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #ddd;
  font-size: 11px;
  width: -moz-max-content;
  width: max-content;
  max-width: 70%;
  font-weight: 500;
}
.chat_pg .new_chat .ms_imgs {
  display: flex;
  flex-wrap: wrap;
}
.chat_pg .new_chat .ms_imgs .ms_img {
  width: 220px;
  height: 180px;
  border-radius: 10px;
  margin-inline-end: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px;
}
.chat_pg .new_chat .rsev_item .ms_file {
  text-align: end;
  background-color: #ddd;
  border-radius: 5px;
  padding: 5px 15px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-size: 11px;
}
.chat_pg .new_chat .add-comment {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  width: 100%;
}
.chat_pg .new_chat .add-comment .form-group {
  position: relative;
}
.chat_pg .new_chat .add-comment .form-group textarea {
  width: 100%;
  height: 55px;
  resize: none;
  background-color: transparent;
  border-radius: 15px;
  margin-top: 0;
  padding: 15px 15px 10px 100px;
  font-size: 15px;
  color: #333;
  border-color: #eee;
}
.chat_pg .new_chat .add-comment .form-group textarea::-moz-placeholder {
  color: #ccc;
}
.chat_pg .new_chat .add-comment .form-group textarea::placeholder {
  color: #ccc;
}
.chat_pg .new_chat .add-comment .form-group .send {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}
.chat_pg .new_chat .add-comment .form-group .send:hover {
  background-color: var(--primary);
  color: #fff;
}
.chat_pg .new_chat .add-comment .form-group label {
  position: absolute;
  top: 10px;
  left: 55px;
  border: 1px solid transparent;
  color: #888;
  background-color: transparent;
  border-radius: 5px;
  width: 35px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  background-color: #f5f5f5;
}
.chat_pg .new_chat .add-comment .form-group label input {
  position: absolute;
  opacity: 0;
  display: none;
}
.chat_pg .new_chat .add-comment .form-group label:hover {
  background-color: var(--primary);
  color: #fff;
}
@media (max-width: 768px) {
  .chat_pg .new_chat {
    padding: 0;
  }
  .chat_pg .new_chat .users .user_card .user_img {
    width: 45px;
    height: 45px;
    margin-inline-end: 0;
  }
  .chat_pg .new_chat .users .user_card .inf {
    display: none;
  }
  .chat_pg .new_chat .users {
    width: 85px;
    margin-inline-end: 0;
  }
  .chat_pg .new_chat .users h4 {
    font-size: 13px;
    text-align: center;
  }
  .chat_pg .new_chat .chat_content {
    width: calc(100% - 85px);
  }
  .chat_pg .new_chat .chat_messages .send_item .text,
  .chat_pg .new_chat .chat_messages .rsev_item .text {
    max-width: 100%;
  }
  .chat_pg .new_chat .ms_imgs .ms_img {
    width: 100%;
  }
  .chat_pg .new_chat .add-comment .form-group textarea {
    height: -moz-max-content;
    height: max-content;
  }
}

/**********************************************
    Start Edit serv_det_pg Page 
**********************************************/
.serv_det_pg {
  background-color: #f9f9f9;
}
.serv_det_pg .order-details {
  padding: 0 3vw 150px 3vw;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 120px;
}
.serv_det_pg .order-details .order-head {
  border-radius: 20px;
  padding: 2.5vw;
  margin-bottom: 50px;
  outline: 15px solid #f9f9f9;
  border-radius: 20px;
  position: relative;
  margin-top: -80px;
  background-color: #fff;
}
.serv_det_pg .order-details .order-head p {
  margin: 10px 0;
  font-size: 16px;
}
.serv_det_pg .order-details .order-head p span {
  font-weight: bold;
  margin-right: 15px;
}
.serv_det_pg .order-details .order-body .data-group {
  margin: 10px 0;
  position: relative;
}
.serv_det_pg .order-details .order-body .data-group .data {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 15px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}
.serv_det_pg .order-details .order-body .data-group .data i {
  color: var(--primary);
  margin-inline-end: 5px;
}
.serv_det_pg .order-details .order-body .data-group .comp_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
  border-radius: 12px;
}
.serv_det_pg .order-details .order-body .data-group .comp_img_small {
  width: 100px;
  height: 80px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 5px;
}
.serv_det_pg .order_foot {
  border-radius: 20px;
  padding: 2.5vw;
  margin-bottom: 50px;
  outline: 15px solid #f9f9f9;
  border-radius: 20px;
  position: relative;
  margin-top: -100px;
  background-color: #fff;
}
.serv_det_pg .order_foot .prof_data .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 5px;
  border: 4px solid #f9f9f9;
}
.serv_det_pg .order_foot .prof_data .mail_ins i {
  color: var(--primary);
  margin-inline-end: 5px;
}

/**********************************************
    Start Edit quiz_pg Page 
**********************************************/
.quiz_pg .inner {
  padding: 65px 3vw;
  border-radius: 15px;
  background-color: #fff;
  position: relative;
}
.quiz_pg .inner .ques_box {
  background-color: rgba(37, 107, 127, 0.0392156863);
  border: 2px solid rgba(37, 107, 127, 0.0392156863);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 15px;
}
.quiz_pg .inner .ques_box .form-check {
  margin-bottom: 10px;
}
.quiz_pg .inner .ques_box.checked {
  border-color: #0F9D58;
  background-color: rgba(15, 157, 88, 0.0941176471);
}
.quiz_pg .inner .ques_box.wrong {
  border-color: rgb(188, 39, 39);
  background-color: rgba(188, 39, 39, 0.071);
}
.quiz_pg .inner .ques_box.wrong .form-check-input:checked {
  background-color: rgb(188, 39, 39);
  border-color: rgb(188, 39, 39);
}
.quiz_pg::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 199, 189, 0.0470588235);
  filter: blur(100px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

.quiz_ans_pg .form-check-input,
.quiz_ans_pg .form-check-label {
  pointer-events: none;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .navs-container .navbar .search_box {
    margin-bottom: 20px;
    width: 100% !important;
  }
  .navs-container .navbar .search_box .form-control,
  .navs-container .navbar .search_box .form-group {
    width: 100% !important;
  }
  .header .txt_box h1 {
    font-size: 35px;
  }
  .header .txt_box .butn {
    font-size: 14px;
  }
  .header .headerImg {
    height: auto;
  }
  .courses_sec .nav-link {
    font-size: 12px;
    padding: 0.3rem;
  }
  .courses_sec .butn.primary_butn {
    display: none;
  }
  .join_sec .inner {
    padding: 45px 15px 0 15px;
  }
  .join_sec .inner .img_box {
    margin-top: 25px;
  }
  .join_sec .inner .img_box .secImg {
    height: auto;
  }
  .join_sec .inner .img_box::before {
    width: 70%;
    bottom: 0;
    top: unset;
    background-position: bottom;
  }
  .join_sec .inner .vector_tr2,
  .join_sec .inner .vector_tl,
  .join_sec .inner .vector_l {
    display: none;
  }
  .products_sec .prod_card .card-body .top_card {
    flex-wrap: wrap;
  }
  .join_sec2 .inner .vector_tc {
    display: none;
  }
  .join_sec2 .inner .vector_tr {
    bottom: -10px;
    top: unset;
  }
  .footer .foot .copyright_p {
    font-size: 10px;
  }
  .footer .img {
    height: auto;
    width: 65%;
  }
  .pg_header {
    overflow: hidden;
  }
  .about_pg .img_box {
    height: 350px;
    margin-bottom: 30px;
  }
  .about_pg .img_box .stud_box {
    bottom: 1%;
    inset-inline-end: 1%;
  }
  .table td,
  .table th {
    text-wrap: nowrap;
  }
  .products_det_pg .img_box {
    height: 300px;
  }
  .products_det_pg .nav .nav-link {
    font-size: 14px;
    padding-bottom: 16px;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .products_det_pg .card-body .top_card {
    flex-wrap: wrap;
  }
  .products_det_pg .card-body .sm_box {
    margin-top: 20px !important;
  }
  .products_det_pg .card-body .butns .butn {
    font-size: 13px;
    padding: 0.7rem;
  }
  .courses_pg .search_box {
    margin-top: 25px;
  }
  .register_pg .inner .form_box .butn,
  .state_pg .butn {
    font-size: 14px;
    padding: 0.7rem;
  }
  .products_sec .filter_form .title_w_shape {
    margin-bottom: 25px;
  }
  .recorded_course_pg .vid_box {
    height: 350px;
  }
  .register_pg .inner .d-flex.justify-content-between.align-items-center.my-5 {
    flex-wrap: wrap;
  }
  .register_pg .inner .d-flex.justify-content-between.align-items-center.my-5 .another_opt {
    margin-top: 15px;
    text-align: center;
    width: 100%;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */