:root {
  --primary: #31a3ad;
  --secondary: #de5f4c;
  --filterPrimary: invert(53%) sepia(48%) saturate(536%) hue-rotate(136deg) brightness(94%) contrast(95%);
  --filterSecondary: invert(39%) sepia(24%) saturate(3036%) hue-rotate(333deg) brightness(109%) contrast(74%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

@font-face {
  font-family: "frutiger_bold";
  src: url(../fonts/frutiger_lta/bold.ttf);
}
@font-face {
  font-family: "frutiger_roman";
  src: url(../fonts/frutiger_lta/roman.ttf);
}
@font-face {
  font-family: "qatar_bold";
  src: url(../fonts/qatar/bold.ttf);
}
* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "frutiger_roman";
  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,
nav::-webkit-scrollbar,
ul::-webkit-scrollbar {
  height: 5px;
}

.qatar_font {
  font-family: "qatar_bold";
}

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

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #24343f;
}

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

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

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

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

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

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

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;
}
form [type=tel], form [type=url], form [type=email], form [type=number] {
  direction: inherit;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  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: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  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);
}

.in-flex {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.inFlex {
  width: 100%;
  display: inline-flex;
  align-items: center;
}

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

.sec-img {
  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 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;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  height: 6px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
}
.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;
  opacity: 0.7;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  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: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: bold;
}
.butn i {
  -webkit-margin-end: 7px;
          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.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn.gray_butn {
  background-color: #F2F3F3;
  border-color: #F2F3F3;
  color: #24343f;
}
.butn.dark_border_butn {
  border: 2px solid #24343f;
  color: #24343f;
}
.butn:hover {
  background-color: #2a8e97;
  border-color: #2a8e97;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

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

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

.no_filter {
  filter: unset !important;
}

.oval {
  width: 600px;
  height: 600px;
  filter: blur(50px);
  background-color: rgba(247, 150, 28, 0.1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sec_text .p {
  color: #818D94;
}

.badge {
  border-radius: 25px;
  position: relative;
  padding: 0.5rem 1.5rem 0.7rem 1.5rem;
  border: solid 2px #646F78;
}
.badge.dark_badge {
  background-color: #24343f;
  color: #fff;
}
.badge.gray_badge {
  background-color: #F6F7F8;
  color: #24343f;
  border-color: #E4DED7;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--secondary);
  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 {
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 1.5rem 0;
}
.navs-container .navbar .logo {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  margin: 0 7px;
  font-size: 17px;
  font-weight: bold;
  color: #24343f;
}
.navs-container .navbar .nav-link.active {
  color: var(--primary);
}
.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: #f7f7f8;
}
.footer .content {
  margin-bottom: 30px;
}
.footer .content .links a {
  width: 49%;
  display: inline-block;
  color: #757F86;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .content .contact_links a {
  color: #24343f;
}
.footer .content .logo {
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .content .social_links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  background-color: #fff;
  color: #24343f;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: solid 1px #eaeaea;
}
.footer .content .social_links a:hover {
  background-color: var(--secondary);
  color: #fff !important;
  border-color: var(--secondary);
}
.footer .content .newsletter_icon {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .content .form-group .form-control {
  border-radius: 25px;
  height: 55px !important;
  border-color: #ddd;
  background-color: transparent;
}
.footer .content .form-group .butn {
  position: absolute;
  inset-inline-end: 6px;
  top: 6px;
}
.footer .foot {
  background-color: #24343f;
}
.footer .foot .p {
  color: #BAC0C3;
  font-size: 16px;
}
.footer .foot .links a {
  font-size: 16px;
  color: #fff;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .text_box .title {
  font-size: 52px;
}
.header .text_box .p {
  font-size: 20px;
  line-height: 1.6;
  color: #24343f;
}
.header .img_box {
  height: 550px;
  position: relative;
}
.header .img_box .sec-img {
  width: 280px;
  height: 277px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 45%;
  top: 50px;
  transform: translateX(-55%);
}
.header .img_box .col_items {
  position: relative;
  z-index: 5;
}
.header .img_box .col_items .item {
  width: 163px;
  height: 55px;
  position: relative;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .img_box .col_items .item .title {
  font-weight: bold;
}
.header .img_box .col_items .item .bg {
  height: 60px;
  pointer-events: none;
}
.header .img_box .shape {
  position: absolute;
  width: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 22%;
  top: -4%;
  height: 560px;
  z-index: -1;
}

.coursrs-sec {
  background-color: #EFF8F9;
}
.coursrs-sec .nav-link {
  font-size: 19px;
  font-weight: bold;
  color: #24343f;
  padding: 0.8rem 1.5rem;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid transparent !important;
}
.coursrs-sec .nav-link.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary) !important;
}
.coursrs-sec .course_card {
  border-radius: 13px;
  background-color: #24343f;
  padding: 7px;
  margin-bottom: 30px;
}
.coursrs-sec .course_card .img_box {
  height: 275px;
}
.coursrs-sec .course_card .card-body .data_item {
  color: rgba(255, 255, 255, 0.6);
  background-color: #24343f;
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.coursrs-sec .course_card .card-body .data_item i {
  color: #ffa253;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.coursrs-sec .course_card .card-body .data_row {
  position: relative;
}
.coursrs-sec .course_card .card-body .data_row::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #646F78;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.coursrs-sec .course_card .card-body .prof_data .avatar_img {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.coursrs-sec .course_card .card-body .prof_data .name {
  font-size: 17px;
  font-weight: bold;
}
.coursrs-sec .bg {
  opacity: 0.03;
}

.freeCourses-sec .course_card {
  background-color: #F6F7F8;
}
.freeCourses-sec .course_card .card-body .name,
.freeCourses-sec .course_card .card-body .title,
.freeCourses-sec .course_card .card-body .text-white {
  color: #24343f !important;
}
.freeCourses-sec .course_card .card-body .data_item {
  background-color: #F6F7F8;
  color: rgba(36, 52, 63, 0.6);
}
.freeCourses-sec .course_card .card-body .data_row::before {
  background-color: #E4DED7;
}
.freeCourses-sec .course_card .card-body .dark_badge {
  background-color: #F6F7F8;
  color: #24343f;
  border-color: #E4DED7;
}

.statics-sec {
  overflow: unset;
  padding-bottom: 0;
  margin-bottom: 100px;
}
.statics-sec .text_box .logo {
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
.statics-sec .text_box .button {
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: relative;
  display: block;
  margin: auto;
  z-index: 6;
}
.statics-sec .text_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%;
}
.statics-sec .text_box .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.statics-sec .text_box .button.is-play .triangle {
  animation: fadeIn 7s ease;
}
.statics-sec .text_box .button.is-play svg {
  fill: var(--secondary);
}
.statics-sec .text_box .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  animation: triangleStroke 3s;
  animation-timing-function: ease;
  stroke: #e8aca3;
}
.statics-sec .text_box .button .has-scale-animation {
  animation: smallScale 3s infinite;
}
.statics-sec .text_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;
  }
}
.statics-sec .statics_outer {
  border-radius: 13px;
  background-color: #e0f2f3;
  padding: 30px 2vw;
  position: relative;
  bottom: -70px;
}
.statics-sec .statics_outer .static_item {
  position: relative;
  z-index: 5;
  margin: 10px 0;
}
.statics-sec .statics_outer .static_item .icon_outer {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.statics-sec .statics_outer .static_item .icon_outer .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.statics-sec .statics_outer .bg {
  opacity: 0.1;
}
.statics-sec::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: #24343f;
  opacity: 0.85;
  z-index: 1;
}

.feedback-sec {
  padding-bottom: 100px;
}
.feedback-sec .sec_text .p {
  font-size: 20px;
}
.feedback-sec .swiper {
  overflow: hidden;
}
.feedback-sec .text_box {
  position: relative;
  padding: 0px 50px;
}
.feedback-sec .text_box .rates i {
  color: #ccc;
}
.feedback-sec .text_box .rates i.active {
  color: #ffa253;
}
.feedback-sec .text_box .p {
  line-height: 1.79;
  color: #24343f;
}
.feedback-sec .text_box::before, .feedback-sec .text_box::after {
  content: "";
  background: url(../images/icons/quote-right.svg) no-repeat center;
  width: 40px;
  height: 30px;
  background-size: contain;
  position: absolute;
}
.feedback-sec .text_box::before {
  top: 0;
  inset-inline-start: 0;
}
.feedback-sec .text_box::after {
  inset-inline-end: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.feedback-sec .avatar_box {
  padding: 10px;
  display: block;
  margin: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}
.feedback-sec .avatar_box .avatar_img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear;
}
.feedback-sec .avatar_box::after {
  content: "";
  width: 100px;
  height: 100px;
  background: url(../images/oval-1.svg) no-repeat right;
  background-size: contain !important;
  position: absolute;
  top: 5px;
  inset-inline-start: 3px;
  display: block;
  z-index: -1;
  transition: all 0.3s linear;
}
.feedback-sec .swiper-slide-thumb-active .avatar_box {
  height: 180px;
}
.feedback-sec .swiper-slide-thumb-active .avatar_box .avatar_img {
  width: 155px;
  height: 155px;
}
.feedback-sec .swiper-slide-thumb-active .avatar_box::after {
  background: url(../images/oval-2.svg) no-repeat right;
  width: 128px;
  height: 151px;
  right: -4px;
  top: 27px;
}

.blog-sec {
  background-color: #F4F5F5;
}
.blog-sec .blog_card {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background-color: #fff;
  margin-bottom: 15px;
}
.blog-sec .blog_card .sec-img {
  height: 300px;
}
.blog-sec .blog_card .card-body {
  padding: 1.5rem;
}
.blog-sec .blog_card .card-body .title {
  height: 48px;
  overflow: hidden;
}
.blog-sec .blog_card .card-body .p {
  height: 85px;
  overflow: hidden;
}
.blog-sec .bg {
  opacity: 0.03;
}
.blog-sec .oval {
  background-color: rgba(49, 163, 173, 0.1);
}

.faq-sec .accordion .accordion-item {
  border: transparent;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  background-color: transparent !important;
}
.faq-sec .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #24343f;
  box-shadow: none;
}
.faq-sec .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #fff;
  background-color: var(--secondary);
}
.faq-sec .accordion .accordion-item .accordion-button:not(.collapsed) ~ .accordion-item {
  border-bottom: 1px solid var(--secondary);
}
.faq-sec .accordion .accordion-item .accordion-button {
  padding: 1rem 4rem 2rem 4rem;
  font-weight: bold;
  color: #555;
  font-size: 17px;
  background-color: transparent !important;
  box-shadow: none;
}
.faq-sec .accordion .accordion-item .accordion-button::after {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FDF3F1;
  color: var(--secondary);
  border-radius: 50%;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  transform: rotate(0deg);
  position: absolute;
  inset-inline-start: 5px;
  top: 10px;
}
.faq-sec .accordion .accordion-item .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-sec .accordion .accordion-item .accordion-body .p {
  font-size: 16px;
}
.faq-sec .sec-img {
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq-sec .partner_logo {
  height: 80px;
  display: block;
  margin: auto;
  max-width: 70%;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg-header {
  padding: 40px 0;
  overflow: unset;
}
.pg-header .bread .item {
  font-weight: bold;
  color: #666;
  font-size: 15px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.pg-header .bread .item.active {
  color: var(--secondary);
}
.pg-header .bread .icon {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.pg-header .form-group {
  margin-bottom: 10px;
}
.pg-header .form-group .form-control {
  border-radius: 15px;
  border-color: #ddd;
  background-color: transparent;
  box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.0666666667);
  background-color: #fff;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.pg-header .form-group .search_icon {
  position: absolute;
  color: #888;
  top: 16px;
  inset-inline-start: 16px;
}
.pg-header .form-group .butn {
  position: absolute;
  inset-inline-end: 8px;
  top: 8px;
  border-radius: 15px;
  height: calc(100% - 16px);
}
.pg-header .search_filter_collapse {
  width: 100%;
  padding: 35px 0 0 0;
  border-top: 1px solid #eee;
  border-radius: 0px;
}
.pg-header .search_filter_collapse .form-group {
  width: 19%;
}
.pg-header .img_box {
  height: 400px;
}
.pg-header .img_box .sec-img {
  height: 100%;
  top: 0;
  position: relative;
  left: 0;
  transform: translateX(0);
}
.pg-header .img_box .shape {
  top: -10%;
  height: 460px;
  left: 30%;
}
.pg-header .oval {
  width: 400px;
  height: 400px;
}
.pg-header .text {
  font-size: 17px;
}
.pg-header .card_item {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1333333333));
}
.pg-header .card_item .cont {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 15px 30px;
}
.pg-header .card_item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.filter_courses {
  background-color: #f9f9f9;
  padding: 25px 15px;
  border-radius: 15px;
}
.filter_courses .form-group {
  margin-bottom: 20px;
}
.filter_courses .form-group .form-control {
  border-radius: 15px;
  border-color: #ddd;
  background-color: transparent;
  box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.0666666667);
  background-color: #fff;
}
.filter_courses .form-group .search-input {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.filter_courses .form-group .search_icon {
  position: absolute;
  color: #888;
  top: 16px;
  inset-inline-start: 16px;
}
.filter_courses .butn {
  border-radius: 15px;
  height: 60px;
  font-size: 18px;
}

.courses-pg3 .pg-header {
  padding-bottom: 85px !important;
}
.courses-pg3 .coursrs-sec {
  overflow: unset;
}
.courses-pg3 .filter_courses2 {
  background-color: #fff !important;
  margin-top: -50px;
  box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.0666666667);
  padding: 30px 20px 20px 20px;
}
.courses-pg3 .filter_courses2 .form-control {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.border_b {
  border-bottom: 1px solid #eee;
}

/**********************************************
    Start Edit register Page 
**********************************************/
.register-pg .register-box {
  background-color: #fff;
  border-radius: 15px;
  border: 7px solid #f8f8f8;
}
.register-pg .register-box .head {
  border-radius: 15px 15px 0 0;
  padding: 35px 15px;
  background-color: #0a3135;
}
.register-pg .register-box .head .logo-box {
  width: 250px;
  display: block;
  margin: auto;
}
.register-pg .register-box .head .logo-box .logo {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.register-pg .register-box .card-body {
  padding: 3rem 1.5rem;
  border-radius: 0 0 15px 15px;
}
.register-pg .register-box .card-body .form-control {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 15px;
}
.register-pg .register-box .card-body .form-floating label {
  font-size: 15px;
  color: #777;
}
.register-pg .register-box .card-body .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.75) translateY(-0.5rem) translateX(-0.15rem);
}
.register-pg .register-box .card-body .form-floating > .form-control:focus ~ label,
.register-pg .register-box .card-body .form-floating > .form-control:not(:placeholder-shown) ~ label,
.register-pg .register-box .card-body .form-floating > .form-select ~ label {
  transform: scale(0.75) translateY(-0.5rem) translateX(-0.15rem);
}
.register-pg .register-box .card-body .forget_pass {
  font-size: 14px;
  color: #777;
}
.register-pg .register-box .card-body .submit_butn {
  border-radius: 15px;
}
.register-pg .inner {
  border-radius: 15px;
  border: 7px solid #f7f7f7;
  padding: 0;
}
.register-pg .inner .register-box {
  background-color: #fafafa;
  border: none;
  border-radius: 0 15px 15px 0;
}
.register-pg .inner .register-box .card-body {
  border-radius: 0 15px 15px 0;
}
.register-pg .inner .register-box .card-body .form-control {
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
}
.register-pg .inner .sec-img {
  max-height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}
.register-pg .login3_inner .register-box {
  padding: 50px 0;
  border: none;
}
.register-pg .login3_inner .register-box .card-body .form-control {
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
}
.register-pg .login3_inner .sec-img {
  height: 655px;
}

.show_hide_password {
  position: relative;
}
.show_hide_password .show_pass {
  position: absolute;
  top: 24px;
  inset-inline-end: 20px;
  cursor: pointer;
  color: #888;
}

/**********************************************
    Start course details Page 
**********************************************/
.c_det_head {
  padding: 100px 0;
}
.c_det_head .img_box {
  position: relative;
  text-align: center;
}
.c_det_head .img_box .main_img {
  height: 400px;
  filter: drop-shadow(0px 8px 50px rgba(0, 0, 0, 0.2));
  border: 10px solid #fff;
  border-radius: 15px;
  transform: perspective(1000px) rotateY(20deg);
}
.c_det_head .img_box .float_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  font-size: 25px;
}

.coursrs-det .teacher_card {
  position: sticky;
  top: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.0196078431));
}
.coursrs-det .teacher_card .img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -50px;
  overflow: hidden;
  margin: -100px auto 20px;
  border: 10px solid rgb(248, 249, 250);
}
.coursrs-det .teacher_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coursrs-det .teacher_card .img_inf {
  text-align: center;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.coursrs-det .teacher_card .img_inf h6 {
  font-weight: bold;
}
.coursrs-det .teacher_card .info_list {
  padding-top: 20px;
}
.coursrs-det .teacher_card .info_list li {
  margin-bottom: 5px;
}
.coursrs-det .teacher_card .info_list p {
  margin-bottom: 0;
}
.coursrs-det .lessons .accordion .accordion-item {
  border: transparent;
  margin-bottom: 20px;
  background-color: #fff !important;
  border-radius: 15px;
  padding: 30px 15px;
}
.coursrs-det .lessons .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #24343f;
  box-shadow: none;
}
.coursrs-det .lessons .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #fff;
  background-color: var(--secondary);
}
.coursrs-det .lessons .accordion .accordion-item .accordion-button:not(.collapsed) ~ .accordion-item {
  border-bottom: 1px solid var(--secondary);
}
.coursrs-det .lessons .accordion .accordion-item .accordion-button {
  padding: 1rem 4rem;
  font-weight: bold;
  color: #555;
  font-size: 19px;
  background-color: transparent !important;
  box-shadow: none;
}
.coursrs-det .lessons .accordion .accordion-item .accordion-button::after {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: #FDF3F1;
  color: var(--secondary);
  border-radius: 50%;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  transform: rotate(0deg);
  position: absolute;
  inset-inline-start: 5px;
  top: 5px;
}
.coursrs-det .lessons .accordion .accordion-item .accordion-body {
  padding: 0 65px 30px 15px;
}
.coursrs-det .lessons .accordion .accordion-item .accordion-body .p {
  font-size: 16px;
}

/**********************************************
    Start Edit another Page 
**********************************************//*# sourceMappingURL=style.css.map */