@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Poppins Italic'), local('Poppins-Italic'), url(https://fonts.gstatic.com/s/poppins/v12/pxiGyp8kv8JHgFVrJJLedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v12/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v12/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  list-style: none;
}
a:hover {
  text-decoration: none;
}
.btn_head {
  background-color: #4f1b1d;
  color: #fff;
  font-size: 13px;
  line-height: 13px;
  padding: 10px 15px;
  border-radius: 28px;
  font-weight: 400;
  border: 1px solid #4f1b1d;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 1200px) {
  .btn_head {
    font-size: 12px;
    line-height: 12px;
  }
}
.btn_head:hover {
  background-color: transparent;
  color: #4f1b1d;
}
.btn_head:hover .icon_common {
  border-right: 1px solid rgba(79, 27, 29, 0.3);
}
.btn_head .icon_common {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.btn_call {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .btn_call {
    font-size: 14px;
    line-height: 14px;
  }
}
.btn_call .icon_common {
  margin-right: 10px;
}
header {
  background: #fff;
  box-shadow: 1px 1px 10px #00000026;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
header nav {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  header nav {
    display: none !important;
  }
}
header nav .group_item {
  position: relative;
  transition: 0.3s all ease-in-out;
}
header nav .group_item a {
  color: #000;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s all ease;
}
@media (max-width: 1200px) {
  header nav .group_item a {
    font-size: 14px;
    line-height: 14px;
  }
}
header nav .group_item a:after {
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #4f1b1d;
  content: "";
  bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s all ease;
}
header nav .group_item a:hover {
  color: #4f1b1d;
}
header nav .group_item a:hover:after {
  width: 100%;
}
header nav .group_item.active a {
  color: #4f1b1d;
  font-weight: 700;
}
header nav .group_item.active a::after {
  width: 100%;
}
.hamburger_icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: 15px;
  cursor: pointer;
}
.hamburger_icon span {
  width: 25px;
  height: 2px;
  background-color: #4f1b1d;
  margin-bottom: 5px;
}
.hamburger_icon span:last-child {
  margin-bottom: 0;
}
.hamburger_wrapper_common {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  padding: 30px;
}
.hamburger_wrapper_common.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.hamburger_wrapper_common .hamburger_close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s all ease;
  cursor: pointer;
}
.hamburger_wrapper_common .hamburger_close:hover {
  background-color: #fff;
}
.hamburger_wrapper_common .hamburger_close:hover span {
  background-color: #000;
}
.hamburger_wrapper_common .hamburger_close span {
  width: 18px;
  height: 2px;
  position: absolute;
  background-color: #fff;
}
.hamburger_wrapper_common .hamburger_close span:first-child {
  transform: rotate(45deg);
}
.hamburger_wrapper_common .hamburger_close span:last-child {
  transform: rotate(-45deg);
}
.hamburger_wrapper_common .nav_wrapper_hamburger {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: max-content;
}
.hamburger_wrapper_common nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hamburger_wrapper_common nav .group_item {
  margin-bottom: 25px;
  position: relative;
}
.hamburger_wrapper_common nav .group_item::after {
  width: 0px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  transition: 0.3s all ease-in-out;
}
.hamburger_wrapper_common nav .group_item a {
  font-size: 50px;
  line-height: 50px;
  color: #a9a7a7;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 992px) {
  .hamburger_wrapper_common nav .group_item a {
    font-size: 30px;
    line-height: 30px;
  }
}
.hamburger_wrapper_common nav .group_item:hover a {
  margin-left: 55px;
  color: #fff;
}
.hamburger_wrapper_common nav .group_item:hover::after {
  width: 20px;
}
.full_wrapper {
  width: 100%;
  float: left;
}
.common_padding_01 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .common_padding_01 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .common_padding_01 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header_common {
  width: 100%;
  float: left;
  font-size: 30px;
  line-height: 1em;
  font-weight: 400;
  text-align: left;
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .header_common {
    font-size: 25px;
    margin-bottom: 15px;
    padding-left: 20px;
  }
}
.header_common:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 5px;
  background-color: #4f1b1d;
}
@media (max-width: 1024px) {
  .header_common:before {
    width: 2px;
  }
}
.description_common {
  font-size: 14px;
  line-height: 1.6em;
  width: 100%;
  float: left;
  color: #4e4e4e;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .description_common {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.common_inner_wrapper {
  width: 100%;
  float: left;
  height: 100%;
}
.common_flex_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.common_center_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.common_link_wrapper {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.common_link_wrapper a {
  padding: 10px 20px;
  border: 2px solid #4f1b1d;
  border-radius: 25px;
  font-size: 15px;
  line-height: 1em;
  color: #4f1b1d;
  transition: 0.3s all cubic-bezier(0.63, 0.01, 0.23, 1.03);
}
@media (max-width: 1024px) {
  .common_link_wrapper a {
    font-size: 12px;
  }
}
.common_link_wrapper a:hover {
  background-color: #4f1b1d;
  color: #fff;
}
.slider_heading {
  font-size: 25px;
  line-height: 1.3em;
  color: #fff;
  width: 100%;
  max-width: 600px;
  z-index: 1;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s all ease-in-out;
}
@media (max-width: 768px) {
  .slider_heading {
    font-size: 20px;
    max-width: 300px;
  }
}
.slider_descriptions {
  font-size: 16px;
  line-height: 1.8em;
  color: #fff;
  width: 100%;
  max-width: 600px;
  z-index: 1;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s all ease-in-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .slider_descriptions {
    font-size: 13px;
    max-width: 300px;
  }
}
.banner_link {
  display: flex;
  font-size: 14px;
  line-height: 1em;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
  transition: 0.7s all ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .banner_link {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.swiper-slide-active .slider_heading {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .slider_descriptions {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .banner_link {
  opacity: 1;
  transform: translateY(0);
}
.banner_link:hover {
  background-color: #fff;
  color: #333;
}
.slider_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
}
.slider_overlay::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  height: 15em;
  content: "";
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.banner_slider {
  height: 70vh;
}
.banner_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner_slider :nth-child(2) img {
  object-position: 83%;
}
.swiper-slide {
  background-color: #eeeeee;
  position: relative;
}
.image_wrapper {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 3px 6px #0000001f;
}
@media (max-width: 768px) {
  .image_wrapper {
    margin-bottom: 20px;
  }
}
.image_wrapper img {
  width: 100%;
}
.bg_paper_main_inner {
  border-bottom: 1px solid rgba(79, 27, 29, 0.21960784);
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg_paper_main_inner:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  float: left;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.65);
}
.about_wrapper .common_center_wrapper {
  padding-left: 45px;
}
@media (max-width: 1024px) {
  .about_wrapper .common_center_wrapper {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about_wrapper .common_inner_wrapper {
    height: auto;
  }
  .about_wrapper .common_inner_wrapper {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .about_wrapper .image_wrapper {
    width: 100%;
    max-width: 400px;
  }
}
.parallax-window {
  min-height: 400px;
  background: transparent;
}
.common_profile_wrapper {
  width: 100%;
  float: left;
  flex-wrap: wrap;
  display: flex;
}
.profile_image_rounded {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .profile_image_rounded {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
}
.profile_image_rounded::after {
  content: "";
}
.profile_image_rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile_wrapper_splitter_01 {
  width: 315px;
  padding-right: 50px;
  border-right: 1px solid rgba(112, 112, 112, 0.23);
}
@media (max-width: 1300px) {
  .profile_wrapper_splitter_01 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.23);
    margin-bottom: 20px;
  }
  .profile_wrapper_splitter_01 .main_item_lister {
    width: calc(100% - 200px);
    padding-left: 35px;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .profile_wrapper_splitter_01 .main_item_lister {
    width: calc(100% - 120px);
    padding-left: 20px;
  }
}
.main_item_lister {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.main_item_lister .main_item_group {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
}
.main_item_lister .main_item_group:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4f1b1d;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.main_item_lister .main_item_group:after {
  content: "";
  position: absolute;
  width: 1px;
  border: 1px dashed #9f9f9f;
  left: 9px;
  top: 23px;
  height: calc(100% - 28px);
}
.main_item_lister .main_item_group:last-child:after {
  display: none;
}
.main_item_lister .main_item_group .main_item_inner {
  font-size: 12px;
  line-height: 1.6em;
}
.profile_wrapper {
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(234, 249, 249, 0.67) 0.1%, rgba(239, 249, 251, 0.63) 90.1%);
}
.profile_wrapper .common_inner_wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.profile_wrapper .profile_wrapper_splitter_02 {
  width: calc(100% - 350px);
  padding-left: 45px;
}
@media (max-width: 1300px) {
  .profile_wrapper .profile_wrapper_splitter_02 {
    width: 100%;
    padding-left: 0;
  }
}
.common_social_media_icons {
  position: relative;
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
@media (max-width: 1024px) {
  .common_social_media_icons {
    padding-top: 15px;
  }
}
.common_social_media_icons::after {
  position: absolute;
  width: 100%;
  float: left;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.23);
  content: "";
  top: 0;
  left: -45px;
}
@media (max-width: 1024px) {
  .common_social_media_icons::after {
    left: 0;
  }
}
.common_social_media_icons .social_media_group {
  display: flex;
  width: 100%;
  float: left;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .common_social_media_icons .social_media_group {
    justify-content: center;
  }
}
.common_social_media_icons .social_media_list {
  width: auto;
  margin-right: 10px;
  float: left;
}
.common_social_media_icons .social_media_list a {
  transition: 0.3s all ease-in-out;
  width: 35px;
  float: left;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  color: #4f1b1d;
  border: 2px solid #4f1b1d;
  font-size: 13px;
  line-height: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.common_social_media_icons .social_media_list a:hover {
  background-color: #4f1b1d;
  color: #fff;
}
.sub_profile .common_inner_wrapper {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 1400px) {
  .sub_profile .common_inner_wrapper {
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .sub_profile .common_inner_wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  .sub_profile .common_inner_wrapper .description_common {
    text-align: left;
    font-size: 13px;
  }
}
.sub_profile .description_common {
  width: 100%;
  float: left;
  color: #c9c9c9;
  text-align: center;
  font-size: 14px;
  list-style: 1.6em;
}
.sub_profile .common_header_2 {
  width: 100%;
  float: left;
  font-size: 43px;
  line-height: 1em;
  margin-bottom: 10px;
  color: #fff;
}
@media (max-width: 1400px) {
  .sub_profile .common_header_2 {
    font-size: 30px;
  }
}
.sub_profile .header_sub {
  margin-bottom: 15px;
  width: 100%;
  float: left;
  font-size: 14px;
  list-style: 1em;
  font-style: italic;
  color: #989898;
}
.circle_floated {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: -120px;
  left: -90px;
  border: 54px solid rgba(79, 27, 29, 0.09);
}
@media (max-width: 1024px) {
  .circle_floated {
    display: none;
  }
}
:root {
  --swiper-theme-color: #4f1b1d;
}
.bg_primary {
  background-color: #4f1b1d;
}
.common_box_splitter_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f7f7f7;
  height: 100%;
  flex-direction: column;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(234, 249, 249, 0.67) 0.1%, rgba(239, 249, 251, 0.63) 90.1%);
}
.common_box_splitter_inner:hover .image_inner {
  transform: scale(1.1);
}
.common_box_splitter_inner .image_inner {
  width: 100%;
  transition: 0.3s all ease-in-out;
  height: 100%;
}
.common_box_splitter_inner .image_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.common_box_splitter_inner .common_box_splitter {
  width: 100%;
  overflow: hidden;
  height: 250px;
}
.common_box_splitter_inner .common_des_box {
  width: 100%;
  flex: 1 1 0;
  padding: 15px;
}
.common_box_splitter_inner .common_head {
  font-size: 16px;
  line-height: 1.7rem;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
}
.common_box_splitter_inner .common_head::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -15px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.common_box_splitter_inner .description_common {
  height: auto;
  font-size: 14px;
  line-height: 1.9em;
  color: #696969;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .common_box_splitter_inner .description_common {
    font-size: 13px;
    line-height: 1.4rem;
  }
}
::-webkit-scrollbar {
  width: 3px;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #4f1b1d;
  border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4f1b1d;
}
.corse_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
}
.corse_inner .course_main_grp {
  width: 33.333%;
  padding: 3px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .corse_inner .course_main_grp {
    width: 50%;
  }
}
.corse_inner .course_main_grp .course_main_inner {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.5rem;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  color: #363636;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 5px 4px rgba(154, 160, 185, 0.05), 0 6px 12px rgba(166, 173, 201, 0.1);
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease;
  cursor: pointer;
  font-weight: 600;
}
.corse_inner .course_main_grp .course_main_inner:hover {
  box-shadow: none;
  background-color: #f5f5f5;
}
.corse_inner .course_main_grp .course_main_inner:hover span {
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.corse_inner .course_main_grp .course_main_inner:hover .read_more_course {
  opacity: 1;
  transform: translateY(0);
}
.corse_inner .course_main_grp .course_main_inner .read_more_course {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 15px;
  line-height: 1rem;
  color: #4f1b1d;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255);
  transition: 0.3s all ease;
  opacity: 0;
  transform: translateY(10px);
}
.course_wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .course_wrapper {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.course_wrapper .header_common {
  margin-bottom: 15px;
}
.top_course_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.main_course_group {
  position: relative;
}
.main_course_group .course_more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  transform: scale(0.8);
  transform-origin: bottom center;
}
.main_course_group .course_more.active {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
}
.main_course_group .course_more .description_common {
  height: auto;
  margin-bottom: 0;
  overflow: auto;
  font-size: 16px;
  color: #333;
  flex: 1;
}
.main_course_group .course_more .course_more_details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.92039216);
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
  padding: 45px;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  padding-right: 20px;
}
.main_course_group .course_more .course_more_details.active {
  opacity: 1;
  pointer-events: all;
}
.main_course_group .course_more_child {
  width: 100%;
}
.main_course_group .close_course_more {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e6e2e2;
  color: #4f1b1db0;
  font-size: 25px;
  line-height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(135deg);
  z-index: 10;
  cursor: pointer;
}
.main_course_group .close_course_more:hover {
  transform: rotate(45deg);
  transition: 0.8s cubic-bezier(0.06, 0.5, 0.47, 1.11);
}
.updates_wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(234, 249, 249, 0.67) 0.1%, rgba(239, 249, 251, 0.63) 90.1%);
}
.update_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
}
.update_inner .update_img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.update_inner .update_img img {
  width: 100%;
}
.update_inner .udpate_wrpr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 10px;
  align-items: flex-start;
}
.update_inner .update_title {
  font-size: 16px;
  line-height: 1.4rem;
  margin-right: auto;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  width: 100%;
  flex: 1;
}
.update_inner .update_time {
  font-size: 12px;
  line-height: 1rem;
  width: auto;
  padding: 5px 10px;
  background: #fff;
  border-radius: 25px;
  color: #8e8d8d;
  font-weight: 600;
}
.update_inner .udpate_des {
  font-size: 14px;
  line-height: 1.9rem;
  color: #636363;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
}
@media (max-width: 768px) {
  .update_inner .udpate_des {
    font-size: 13px;
    line-height: 1.4rem;
  }
}
.testimonials_slider {
  width: 100%;
  position: relative;
}
.testimonials_slider .swiper-pagination {
  top: auto;
  bottom: 0px;
}
.testimonials_slider .swiper-container_01 {
  margin-bottom: 20px;
}
.testimonials_slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #4f1b1d;
  right: -77px;
}
.testimonials_slider .swiper-button-next:after {
  font-size: 20px;
}
.testimonials_slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #4f1b1d;
  left: -77px;
}
.testimonials_slider .swiper-button-prev:after {
  font-size: 20px;
}
.testimonials_slider .swiper-slide {
  opacity: 0.2;
  transition: 0.6s all ease;
  transform: scale(0.8);
}
.testimonials_slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.testimonials_slider .swiper-slide.swiper-slide-active + .swiper-slide,
.testimonials_slider .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 992px) {
  .testimonials_slider .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 0.2;
    transform: scale(0.8);
  }
}
.testimonials_wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f7f7f7;
  background-image: url(../images/testimonials/bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}
.testimonials_wrapper .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.testimonials_wrapper::before {
  content: "";
  background-color: rgba(79, 27, 29, 0.63);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.testimonials_wrapper .header_common {
  color: #fff;
}
.testimonials_wrapper .header_common::before {
  background-color: #fff;
}
.testimonials_wrapper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}
.testimonials_wrapper .swiper-pagination-bullet {
  background: #fff;
}
.testimonials_wrapper .swiper-pagination {
  top: auto;
  bottom: 25px;
}
.slider_testimonials {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
.slider_testimonials .test_tmbh {
  width: 60px;
  height: 60px;
  background-color: #4f1b1d;
  color: #fff;
  font-size: 28px;
  line-height: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 15px;
}
.slider_testimonials .test_head {
  font-size: 16px;
  line-height: 1.8rem;
  width: auto;
  margin-right: auto;
  font-weight: 700;
  color: #3b3b3b;
  position: relative;
  margin-bottom: 15px;
}
.slider_testimonials .test_des {
  font-size: 13px;
  line-height: 1.4rem;
  color: #333;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 10px;
  max-width: 220px;
}
.contact_wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .contact_wrapper {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.contact_wrapper .form-group {
  margin-bottom: 0;
}
.contact_wrapper .header_and_sub {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.contact_wrapper .header_and_sub span {
  font-size: 13px;
  line-height: 1.4rem;
  color: #333;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 15%;
  text-align: center;
}
@media (max-width: 992px) {
  .contact_wrapper .header_and_sub span {
    padding: 0;
  }
}
.contact_wrapper .header_common {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: max-content;
  margin: auto;
  margin-bottom: 15px;
}
.contact_wrapper .message_area .form-group {
  height: 100%;
}
.contact_wrapper .message_area .form-group textarea {
  height: 100%;
}
.contact_wrapper .form-group {
  padding-bottom: 15px;
}
.contact_wrapper .form-control {
  font-size: 13px;
  line-height: 1rem;
  padding: 25px 15px;
  transition: 0.3s all ease-in-out;
}
.contact_wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #46484a;
}
.button_sent {
  background-color: #4f1b1d;
  color: #fff;
  border: none;
  padding: 10px 50px;
  margin: auto;
  display: block;
  border: 2px solid #4f1b1d;
  transition: 0.3s all ease-in-out;
}
.button_sent:hover {
  background-color: transparent;
  color: #4f1b1d;
}
.footer_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.footer_inner .footer_head {
  width: 100%;
  font-size: 20px;
  line-height: 1rem;
  margin-bottom: 40px;
  position: relative;
}
.footer_inner .footer_head::after {
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
}
.footer_wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #1d1d1d;
  color: #fff;
}
.footer_wrapper .footerlist {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_wrapper .footerlist p {
  font-size: 13px;
  line-height: 1.5rem;
  color: #dedcdc;
}
.footer_wrapper .footerlist .footer_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1rem;
  font-size: 12px;
}
.footer_wrapper .footerlist .footer_item a {
  color: inherit;
  width: auto;
  padding-left: 15px;
  display: flex;
  position: relative;
}
.footer_wrapper .footerlist .footer_item a::after {
  content: "";
  width: 7px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.26);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.whtasapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: -3px 5px 9px rgba(0, 0, 0, 0.25);
}
.whtasapp:hover svg {
  transform: scale(1.2);
}
.whtasapp svg {
  width: 30px;
  transition: 0.3s all ease-in-out;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.body_elements {
  width: 100%;
  overflow: hidden;
}
.main_inner_lits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.main_inner_lits li {
  width: 100%;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.5em;
  color: #333;
  padding-left: 15px;
  position: relative;
}
.main_inner_lits li::after {
  width: 6px;
  height: 6px;
  content: "";
  background-color: #aaa5a5;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
}
.description_common span {
  font-size: 12px;
  line-height: 1.6em;
  color: #333;
  padding-bottom: 15px;
  width: 100%;
  display: flex;
  font-weight: 600;
}
.corse_inner.custom_button {
  padding: 0;
}
.corse_inner.custom_button .course_main_grp {
  width: auto;
}
.corse_inner.custom_button .course_main_grp .course_main_inner .read_more_course {
  opacity: 1;
  background-color: transparent;
  transform: translateY(0px);
  position: relative;
}
.corse_inner.custom_button .course_main_grp .course_main_inner {
  background-color: transparent;
  box-shadow: none;
  padding: 0px;
}
