@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #1EAD9D;
  --subColor: #4E4F92;
  --subColor2: #EA3C32;
}

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

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

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

.subBack {
  background-color: var(--subColor) !important;
  border-color: var(--subColor) !important;
}

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

.subBack2 {
  background-color: var(--subColor) !important;
  border-color: var(--subColor) !important;
}

.dark_blue_color {
  color: #061A40 !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #1EAD9D11;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #1EAD9D44;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  color: #333;
  padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

b {
  font-weight: 600;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--mainColor);
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.text,
.text * {
  font-size: 18px;
  line-height: 1.8;
}

.section-title {
  font-size: 55px;
  line-height: 63px;
  max-width: 520px;
}

small.text {
  font-size: 12px;
}

.bg_light {
  background-color: #fafafa;
}

.section_padding {
  padding: 80px 0;
}

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

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.form .form-control {
  border-radius: 0;
  min-height: 65px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.section_head h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #6483F6;
  text-transform: uppercase;
}

.section_head h2 {
  font-size: 55px;
  color: #333;
  line-height: 1.5;
}

.section_head h3 {
  font-size: 40px;
  color: #333;
  line-height: 1.5;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  padding: 15px 40px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  font-weight: 600;
  text-align: center;
}

.butn:hover {
  background-color: var(--mainColor);
}

.butn:hover * {
  color: #fff;
}

.butn.sub_butn {
  border: 1px solid var(--subColor);
  color: var(--subColor);
}

.butn.sub_butn:hover {
  background-color: var(--subColor);
}

.butn.sub_butn:hover * {
  color: #fff;
}

/* --------------- navbar --------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0;
  background-color: #fff;
}

.navbar .navbar-nav .nav-link {
  font-size: 14px;
  margin: 0 10px;
}

.navbar .navbar-nav .nav-link.active {
  font-weight: bold;
}

.navbar .navbar-brand {
  height: 80px;
}

/* --------------- header --------------- */
header .header-slider {
  background-image: url(../images/home-banner_4.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
}

header .header-slider .slide-card {
  padding: 100px 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

header .header-slider .slide-card .info {
  text-align: center;
}

header .header-slider .slide-card .info h1 {
  font-size: 35px;
  font-weight: bold;
}

/* --------------- about --------------- */
.about {
  background-image: url(../images/home-about-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.about .info h5 {
  font-weight: bold;
  color: #6483f6;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about .info .about-section-title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
}

.text-info {
  color: #6483f6 !important;
}

/* --------------- services --------------- */
.services .img {
  position: relative;
  height: 510px;
  overflow: hidden;
  padding: 25px;
}

.services .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: calc(100% - 50px);
  height: 100%;
  border: 2px solid #6264aa;
}

.services .img .main_img {
  position: relative;
  z-index: 10;
}

/* --------------- courses --------------- */
/* --------------- testimonials --------------- */
.testimonials .testi_side {
  position: relative;
  padding: 50px;
  background-color: #ECEDEF;
}

.testimonials .testi_side .shap {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  height: 65px;
}

.testimonials .testi_side .testi_slider {
  position: relative;
  overflow: hidden;
}

.testimonials .testi_side .testi_slider .testi_card .qaut {
  margin-bottom: 30px;
  text-align: end;
}

.testimonials .testi_side .testi_slider .testi_card .qaut img {
  height: 45px;
}

.testimonials .testi_side .testi_slider .testi_card .text {
  font-size: 18px;
}

.testimonials .testi_side .testi_slider .testi_card .author p {
  opacity: 0.5;
}

.testimonials .info h6 {
  font-size: 18px;
  margin-bottom: 15px;
}

.arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.arrows .swiper-button-next,
.arrows .swiper-button-prev {
  position: static;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #F05543;
  margin-top: 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.arrows .swiper-button-next::after,
.arrows .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #F05543;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}

/* --------------- partners --------------- */
.partners .logos {
  text-align: center;
}

.partners .logos .logo {
  margin-top: 30px;
}

.partners .logos .logo img {
  max-height: 100px;
  max-width: 230px;
}

/* --------------- footer --------------- */
footer .foot_content {
  padding: 50px 0;
}

footer .foot_content .logo_side .foot_logo {
  height: 80px;
  margin-bottom: 40px;
}

footer .foot_content .links_group .sub_title {
  font-size: 16px;
  font-weight: bold;
  color: var(--mainColor);
  margin-bottom: 30px;
}

footer .foot_content .links_group ul li {
  margin-top: 30px;
}

footer .foot_content .social_links {
  margin-top: 40px;
}

footer .foot_content .social_links a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: #fff;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

footer .foot {
  padding: 30px 0;
}

/* --------------- innerpages --------------- */
.breadcrumb_links {
  padding: 30px 0;
  background-color: var(--subColor);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.breadcrumb_links::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 50px;
  height: 150%;
  background-image: url(../images/inner_shap.png);
  background-size: cover;
  background-position: right;
}

.breadcrumb_links::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 50px;
  height: 150%;
  background-image: url(../images/inner_shap.png);
  background-size: cover;
  background-position: left;
}

.breadcrumb_links .links a {
  position: relative;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-transform: capitalize;
}

.breadcrumb_links .links a::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-image: url(../images/inner_links_shap.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb_links .links a:last-of-type {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}

.breadcrumb_links .links a:last-of-type::after {
  display: none;
}

/* --------------- pg_about_about --------------- */
.pg_about_about .img {
  position: relative;
  height: 550px;
  overflow: hidden;
  padding: 50px 0 50px 25px;
}

.pg_about_about .img .main_img {
  position: relative;
  z-index: 10;
}

.pg_about_about .img .shap_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.pg_about_vision {
  padding: 40px 0;
  background-color: #FAFAFA;
}

.pg_about_vision .item {
  padding: 10px 20px;
}

.pg_about_vision .item .text {
  font-size: 16px;
}

.pg_about_timeline {
  padding: 120px 0 50px;
}

.pg_about_timeline .slider_content {
  padding: 0 55px;
  position: relative;
}

.pg_about_timeline .slider_content .swiper-button-next,
.pg_about_timeline .slider_content .swiper-button-prev {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pg_about_timeline .slider_content .swiper-button-next:hover,
.pg_about_timeline .slider_content .swiper-button-prev:hover {
  opacity: 1;
}

.pg_about_timeline .timeline_slider {
  position: relative;
  overflow: hidden;
}

.pg_about_timeline .timeline_slider::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
  width: 100%;
  height: 1px;
}

.pg_about_timeline .timeline_slider .swiper-wrapper {
  position: relative;
}

.pg_about_timeline h2 {
  text-align: center;
  font-size: 56px;
  line-height: 65px;
  margin-bottom: 115px;
}

.pg_about_timeline .time_card {
  position: relative;
  text-align: center;
}

.pg_about_timeline .time_card::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 2px;
  height: 50px;
  background-color: #ccc;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pg_about_timeline .time_card h5 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 150px;
}

.pg_about_timeline .time_card p {
  font-size: 16px;
  color: #555;
}

/* --------------- pg_about_pillars --------------- */
.pg_about_pillars .pillars_cards .pillar_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background-color: #fff;
  margin-top: 10px;
}

.pg_about_pillars .pillars_cards .pillar_card:nth-of-type(1) {
  background-color: #E1E2FF;
}

.pg_about_pillars .pillars_cards .pillar_card:nth-of-type(2) {
  background-color: #FFEAE8;
}

.pg_about_pillars .pillars_cards .pillar_card:nth-of-type(2) .icon {
  background-image: url(../images/p2.svg);
}

.pg_about_pillars .pillars_cards .pillar_card:nth-of-type(3) {
  background-color: #B4E9E4;
}

.pg_about_pillars .pillars_cards .pillar_card:nth-of-type(3) .icon {
  background-image: url(../images/p3.svg);
}

.pg_about_pillars .pillars_cards .pillar_card .icon {
  width: 140px;
  height: 140px;
  background-image: url(../images/p1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pg_about_pillars .pillars_cards .pillar_card .info h5 {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pg_about_pillars .pillars_cards .pillar_card .info p {
  font-size: 12px;
  line-height: 2;
}

/* --------------- pg_about_approach --------------- */
.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(1) .app_card {
  border-color: var(--subColor);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(2) .app_card {
  border-color: var(--mainColor);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(2) .app_card .icon {
  background-image: url(../images/ap2.svg);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(3) .app_card {
  border-color: var(--subColor2);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(3) .app_card .icon {
  background-image: url(../images/ap3.svg);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(4) .app_card {
  border-color: #C0378B;
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(4) .app_card .icon {
  background-image: url(../images/ap4.svg);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(5) .app_card {
  border-color: #CD693A;
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(5) .app_card .icon {
  background-image: url(../images/ap5.svg);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(6) .app_card {
  border-color: #EDC91F;
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(6) .app_card .icon {
  background-image: url(../images/ap6.svg);
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(7) .app_card {
  border-color: #008BB8;
}

.pg_about_approach .approach_cards .row .col-lg-4:nth-of-type(7) .app_card .icon {
  background-image: url(../images/ap7.svg);
}

.pg_about_approach .approach_cards .app_card {
  padding: 0 30px 20px;
  border: 1px solid #ccc;
  margin-top: 100px;
  min-height: 155px;
}

.pg_about_approach .approach_cards .app_card .icon {
  width: 110px;
  height: 110px;
  background-image: url(../images/ap1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -55px;
}

.pg_about_approach .approach_cards .app_card h6 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* --------------- pg_services_about --------------- */
.pg_services_about .img {
  position: relative;
  height: 510px;
  overflow: hidden;
  padding: 25px;
}

.pg_services_about .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: calc(100% - 50px);
  height: 100%;
  border: 2px solid #6264aa;
}

.pg_services_about .img .main_img {
  position: relative;
  z-index: 10;
}

/* --------------- pg_services_ser_cards --------------- */
.pg_services_ser_cards .row .col-lg-6:nth-of-type(1) .service_card {
  border-color: var(--subColor);
}

.pg_services_ser_cards .row .col-lg-6:nth-of-type(2) .service_card {
  border-color: var(--subColor2);
}

.pg_services_ser_cards .row .col-lg-6:nth-of-type(2) .service_card .icon {
  background-image: url(../images/ap3.svg);
}

.pg_services_ser_cards .service_card {
  padding: 0 40px 40px;
  border: 1px solid #ccc;
  margin-top: 60px;
  min-height: calc(100% - 100px);
}

.pg_services_ser_cards .service_card .icon {
  width: 130px;
  height: 130px;
  background-image: url(../images/ap1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -60px;
  margin-bottom: 10px;
}

.pg_services_ser_cards .service_card h6 {
  font-size: 27px;
  margin-bottom: 15px;
}

.pg_services_ser_cards .service_card .text {
  font-size: 21px;
  line-height: 1.7;
}

/* --------------- pg_news_content --------------- */
.pg_news_content .main_post .post_card {
  border: 1px solid #9994;
  margin-bottom: 30px;
}

.pg_news_content .main_post .post_card .img {
  height: 150px;
}

.pg_news_content .main_post .post_card .info {
  padding: 20px 15px;
}

.pg_news_content .main_post .post_card .info .title {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: bold;
  min-height: 45px;
}

.pg_news_content .main_post .post_card .info .text {
  color: #777;
}

.pg_news_content .main_post .post_card .info .plus {
  font-size: 25px;
  color: var(--mainColor);
  display: block;
  text-align: end;
}

/* --------------- pg_news_det_post --------------- */
.pg_news_det_post .img {
  height: 800px;
  overflow: hidden;
}

.pg_news_det_post .info {
  position: relative;
  padding: 15px;
  background-color: #fafafa;
}

.pg_news_det_post .info .cont {
  padding: 3vw;
  background-color: #fafafa;
  height: 770px;
  overflow-x: hidden;
  overflow-y: auto;
}

.pg_news_det_post .info .cont::-webkit-scrollbar {
  width: 5px;
  background: #e1e1e1;
  border-radius: 0;
}

.pg_news_det_post .info .cont::-webkit-scrollbar-thumb {
  background: #4E5A66;
  border-radius: 10px;
}

.pg_news_det_post .info .cont::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

.pg_news_det_post .info .date {
  font-size: 19px;
  color: 777px;
}

.pg_news_det_post .info .title {
  font-size: 35px;
  margin-bottom: 30px;
}

/* --------------- contact_info --------------- */
.contact_info {
  margin-top: 60px;
  background-color: #fcfcfc;
}

.contact_info .row .col-lg-4:last-of-type .info_card::after {
  display: none;
}

.contact_info .info_card {
  position: relative;
  text-align: center;
  padding: 60px 6vw;
  background-color: #fcfcfc;
  min-height: 100%;
}

.contact_info .info_card::after {
  position: absolute;
  content: "";
  right: 0;
  top: 25%;
  width: 2px;
  height: 50%;
  background-color: #9992;
}

.contact_info .info_card .icon {
  margin-bottom: 30px;
}

.contact_info .info_card .icon img {
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_info .info_card h5 {
  font-size: 21px;
  margin-bottom: 20px;
  color: #0B0951;
}

.contact_info .info_card .text {
  font-size: 16px;
  color: #999;
}

/* --------------- register --------------- */
.register .register_card {
  position: relative;
  padding: 60px 6vw;
  border: 1px solid var(--subColor);
}

.register .register_card .info h2 {
  font-size: 45px;
  color: var(--subColor);
}

.register .register_card .info .text {
  font-size: 21px;
  color: var(--subColor);
}

/* --------------- pg_courses_accordion --------------- */
.pg_courses_accordion .accordion .accordion-item {
  border: 0;
  margin-bottom: 15px;
}

.pg_courses_accordion .accordion .accordion-item .accordion-header .accordion-button {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
}

.pg_courses_accordion .accordion .accordion-item .accordion-header .accordion-button p {
  font-size: 18px;
}

.pg_courses_accordion .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}

.pg_courses_accordion .accordion .accordion-item .accordion-header .accordion-button .icon {
  color: var(--mainColor);
}

.pg_courses_accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
  color: var(--subColor);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pg_courses_accordion .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
}

.pg_courses_accordion .accordion .accordion-item .accordion-body .text {
  margin-bottom: 20px;
}

.pg_courses_accordion .courses_content {
  position: relative;
  width: calc(100% + 140px);
  margin-left: -70px;
  padding: 0 70px;
}

.pg_courses_accordion .courses_content .courses_slider {
  position: relative;
  overflow: hidden;
}

.pg_courses_accordion .courses_content .courses_slider .course_card {
  position: relative;
  padding: 10px;
  background-color: #fafafa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pg_courses_accordion .courses_content .courses_slider .course_card:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px #0001;
          box-shadow: 0 0 10px #0001;
}

.pg_courses_accordion .courses_content .courses_slider .course_card .img {
  height: 165px;
}

.pg_courses_accordion .courses_content .courses_slider .course_card .info {
  padding: 30px 10px 10px;
}

.pg_courses_accordion .courses_content .courses_slider .course_card .info .title {
  font-size: 21px;
  color: #061A40;
  font-weight: 600;
}

.pg_courses_accordion .courses_content .courses_slider .course_card .info .title:hover {
  color: var(--mainColor);
}

/* --------------- pg_courses_methods --------------- */
.pg_courses_methods .methods_cards .row .col-lg-4:nth-of-type(1) .method_card {
  border-color: var(--subColor);
}

.pg_courses_methods .methods_cards .row .col-lg-4:nth-of-type(2) .method_card {
  border-color: var(--mainColor);
}

.pg_courses_methods .methods_cards .row .col-lg-4:nth-of-type(2) .method_card .icon {
  background-image: url(../images/v2.svg);
}

.pg_courses_methods .methods_cards .row .col-lg-4:nth-of-type(3) .method_card {
  border-color: var(--subColor2);
}

.pg_courses_methods .methods_cards .row .col-lg-4:nth-of-type(3) .method_card .icon {
  background-image: url(../images/v3.svg);
}

.pg_courses_methods .methods_cards .method_card {
  padding: 0 30px 30px;
  border: 1px solid #ccc;
  margin-top: 100px;
  min-height: calc(100% - 100px);
}

.pg_courses_methods .methods_cards .method_card .icon {
  width: 90px;
  height: 90px;
  background-image: url(../images/v1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -45px;
  margin-bottom: 30px;
}

.pg_courses_methods .methods_cards .method_card h6 {
  font-size: 18px;
  margin-bottom: 15px;
}

.pg_courses_methods .methods_cards .method_card .text {
  font-size: 15px;
  line-height: 1.7;
}

/* --------------- login --------------- */
.pg_login_form {
  border-bottom: 1px solid #9995;
}

.pg_login_form .content {
  position: relative;
}

.pg_login_form .content::after {
  position: absolute;
  content: "";
  left: -25%;
  top: 0;
  width: 150%;
  height: 100%;
  background-image: url(../images/reg_shaps.svg);
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  background-repeat: no-repeat;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.pg_login_form .img_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.pg_login_form .img_content .img {
  position: relative;
  height: 100%;
  padding: 0;
  z-index: 10;
  width: 100%;
}

.pg_login_form .img_content .img::after {
  position: absolute;
  content: "";
  left: -25px;
  top: -25px;
  width: 90%;
  height: calc(100% + 50px);
  border: 1px solid #0B0951;
  pointer-events: none;
}

.pg_login_form .img_content .img .main_img {
  position: relative;
  z-index: 10;
}

.pg_login_form .img_content .img .shap_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: none;
}

.pg_login_form .form_content {
  position: relative;
  z-index: 8;
  padding: 4vw;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px #0001;
          box-shadow: 0 0 30px #0001;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pg_login_form .form .form-control {
  min-height: 55px;
}

.pg_profile_form {
  position: relative;
}

.pg_profile_form .form_content {
  position: relative;
  z-index: 10;
  padding: 4vw !important;
}

.pg_profile_form .read_block {
  display: none;
}

.pg_profile_form .read_none {
  display: block;
}

.pg_profile_form.read_only .form-control {
  border: 0;
  background-color: #fafafa;
  pointer-events: none;
}

.pg_profile_form.read_only .read_block {
  display: block;
}

.pg_profile_form.read_only .read_none {
  display: none;
}

/* --------------- pg_course_details --------------- */
.pg_course_details .bg_title {
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 100px 0 50px;
  color: #fff;
}

.pg_course_details .bg_title::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0009), color-stop(#4e4f9260), to(#4e4f92e3));
  background-image: linear-gradient(to bottom, #0009, #4e4f9260, #4e4f92e3);
}

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

.pg_course_details .bg_title .title_cont {
  position: relative;
  z-index: 10;
}

.pg_course_details .bg_title .title_cont h1 {
  font-size: 50px;
  text-transform: capitalize;
}

.pg_course_details .bg_title .title_links {
  margin-top: 25px;
}

.pg_course_details .bg_title .title_links a {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.pg_course_details .course_det_box {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px #0001;
          box-shadow: 0 0 30px #0001;
  margin-top: -250px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.pg_course_details .course_det_box .items .item_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #9995;
}

.pg_course_details .course_det_box .items .item_row:last-of-type {
  border: 0;
}

.application_form {
  position: relative;
  margin-top: -150px;
  z-index: 30;
}

.application_form .form-group h6 {
  font-size: 13px;
  min-height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.application_form .form_box {
  position: relative;
  padding: 60px 3vw 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px #0001;
          box-shadow: 0 0 30px #0001;
  margin-bottom: 50px;
}

.application_form .form_box * {
  position: relative;
  z-index: 10;
}

.application_form .form_box::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/reg_shaps.svg);
  background-size: contain;
  opacity: 0.2;
}

.application_form .form_box .proccess_line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.application_form .form_box .proccess_line span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
  background-color: #1EAD9D22;
}

.application_form .form_box .proccess_line span.active {
  background-color: var(--mainColor);
}

.application_form .form-control {
  min-height: 60px;
}

.application_form .check_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.application_form .check_group .form-check {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 10px;
}

.application_form .check_group .form-check .form-check-input {
  display: none;
}

.application_form .check_group .form-check .form-check-label {
  border-radius: 0;
  min-height: 60px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #9993;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  cursor: pointer;
}

.application_form .check_group .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--mainColor);
  color: var(--mainColor);
}

.application_form .up_group {
  position: relative;
  padding: 3vw;
  border: 1px dashed #9995;
  margin-bottom: 30px;
}

.application_form .up_group input.file {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.application_form .up_group .input_ques {
  border: 0;
  background: transparent;
}

.application_form .up_group .upload-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 30px;
  font-size: 25px;
  color: var(--mainColor);
}

.application_form .col-lg-6 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.ui-widget.ui-widget-content {
  width: 100%;
  border: 0;
  max-width: 600px;
  margin: auto;
  -webkit-box-shadow: 0 0 20px #0001;
          box-shadow: 0 0 20px #0001;
  padding: 30px 15px;
}

.ui-widget.ui-widget-content .ui-datepicker-header {
  color: var(--subColor);
  background-color: transparent;
  border: 0;
  margin-bottom: 30px;
}

.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-next {
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-next::before {
  position: absolute;
  content: "\f054";
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}

.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-prev {
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-prev::before {
  position: absolute;
  content: "\f053";
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}

.ui-widget.ui-widget-content td span, .ui-widget.ui-widget-content td a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px auto;
  background-color: transparent;
  border: 0;
}

.ui-widget.ui-widget-content .ui-state-active, .ui-widget.ui-widget-content .ui-widget-content .ui-state-active, .ui-widget.ui-widget-content .ui-widget-header .ui-state-active, .ui-widget.ui-widget-content a.ui-button:active, .ui-widget.ui-widget-content .ui-button:active, .ui-widget.ui-widget-content .ui-button.ui-state-active:hover {
  background-color: var(--subColor);
  -webkit-box-shadow: 0 0 15px #008BB833;
          box-shadow: 0 0 15px #008BB833;
  border: 0;
}

.ui-widget.ui-widget-content .ui-state-highlight, .ui-widget.ui-widget-content .ui-widget-content .ui-state-highlight, .ui-widget.ui-widget-content .ui-widget-header .ui-state-highlight {
  color: var(--subColor);
}

.ui-widget.ui-widget-content .ui-datepicker-title select {
  padding: 10px;
  border: 1px solid #9993;
  margin: 0 5px;
}

.ui-datepicker {
  z-index: 9999 !important;
}

/* --------------- pg_news --------------- */
.pg_news .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -1%;
}

.pg_news .news .post_item {
  width: 23%;
  margin: 1%;
  position: relative;
}

.pg_news .news .post_item .post_card {
  border: 1px solid #9994;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pg_news .news .post_item .post_card:hover {
  border-color: #1EAD9D;
}

.pg_news .news .post_item .post_card.card_plus .info .plus {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pg_news .news .post_item .post_card .img {
  height: 150px;
}

.pg_news .news .post_item .post_card .info {
  padding: 20px 15px;
}

.pg_news .news .post_item .post_card .info .title {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: bold;
  min-height: 45px;
}

.pg_news .news .post_item .post_card .info .text {
  color: #777;
}

.pg_news .news .post_item .post_card .info .plus {
  font-size: 25px;
  color: var(--mainColor);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.pg_news .news .post_item .post_details {
  width: 100vw;
  background-color: #fff;
  bottom: 30px;
  /* left: 0; */
  z-index: 30;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pg_news .news .post_item .post_details.show {
  opacity: 1;
  visibility: visible;
  position: relative;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pg_news .news .post_item .post_details .cont {
  padding: 30px;
  background-color: #FAFAFA;
  position: relative;
  margin: 30px 0;
}

.pg_news .news .post_item .post_details .cont .img {
  height: 250px;
}

.pg_news .news .post_item .post_details .cont .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pg_news .news .post_item .post_details .clss {
  position: absolute;
  font-size: 25px;
  top: 30px;
  right: 30px;
  color: var(--mainColor);
  cursor: pointer;
}

/* --------------- innerpages --------------- */
/* --------------- innerpages --------------- */
/* --------------- innerpages --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  header {
    overflow: hidden;
  }
  header .header-slider .slide-card {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding-bottom: 100px;
    padding-top: 50px;
  }
  header .header-slider .slide-card .info {
    padding: 15px;
  }
  header .header-slider .slide-card .color_shap {
    display: none;
  }
  header .header-slider .slide-card .img_side .img_content {
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    height: 400px;
    margin-top: 50px;
    -webkit-filter: none;
            filter: none;
    display: none;
  }
  header .header-slider .slide-card .img_side .img_content .img {
    height: 360px;
  }
  header .header-slider .slide-card .img_side .line_shap {
    width: 75%;
    display: none;
  }
  .courses .course_card .info_card {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
  .partners .logos .logo img {
    max-width: 80%;
  }
  .services {
    overflow: hidden;
  }
  br {
    display: none;
  }
  .section_head h3 {
    font-size: 25px;
  }
  .section_head h2 {
    font-size: 30px;
  }
  .about .img,
  .services .img {
    margin-top: 30px;
  }
  .courses .course_card {
    margin-bottom: 50px;
  }
  .testimonials .testi_side {
    margin-bottom: 30px;
  }
  footer .foot_content .links_group .sub_title {
    margin-top: 50px;
  }
  .pg_about_pillars .pillars_cards .pillar_card {
    display: block;
  }
  .pg_about_pillars .pillars_cards .pillar_card .icon {
    -webkit-margin-start: -15px;
            margin-inline-start: -15px;
  }
  .pg_about_approach .main_content .img {
    margin-bottom: 30px;
  }
  .pg_about_approach .approach_cards .app_card {
    margin-top: 75px;
  }
  .contact_info .info_card::after {
    display: none;
  }
  .pg_courses_accordion .courses_content {
    width: 100%;
    margin-left: 0;
    padding: 0 0 70px;
  }
  .pg_courses_accordion .courses_content .swiper-button-next, .pg_courses_accordion .courses_content .swiper-rtl .swiper-button-prev {
    right: 50%;
    left: auto;
    -webkit-transform: translateX(55px);
            transform: translateX(55px);
    top: auto;
    bottom: 20px;
  }
  .pg_courses_accordion .courses_content .swiper-button-prev, .pg_courses_accordion .courses_content .swiper-rtl .swiper-button-next {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-55px);
            transform: translateX(-55px);
    top: auto;
    bottom: 20px;
  }
  .pg_about_pillars .info {
    margin-bottom: 30px;
  }
  .pg_news_det_post .img {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .pg_news_det_post .info .cont {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .pg_news_det_post .info .cont .title {
    font-size: 25px;
  }
  .pg_news_content .sub_posts .sub_posts_content {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .pg_services_ser_cards .service_card {
    padding: 0 15px 40px;
  }
  .pg_services_ser_cards .service_card .text {
    font-size: 17px;
  }
  .text,
  .text * {
    font-size: 16px;
  }
  small.text {
    font-size: 10px;
  }
  .pg_course_details .course_det_box {
    margin-top: 50px;
  }
  .pg_login_form .img_content {
    display: none;
  }
  .pg_login_form .form_content {
    padding: 30px 20px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666667);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666667);
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    margin-left: 0;
  }
  .pg_course_details .bg_title .title_cont h1 {
    font-size: 30px;
  }
  .pg_news .news .post_item {
    width: 100%;
    margin: 10px 0;
  }
  .pg_news .news .post_item .post_details .clss {
    top: 0;
    right: 10px;
  }
  .pg_news .news .post_item .post_details .img {
    margin-bottom: 20px;
  }
}

/* ======= */
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */