*,
* 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: rgba(30, 173, 157, 0.0666666667);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(30, 173, 157, 0.2666666667);
  border-radius: 10px;
}

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

.modal-content {
    border: 0;
    border-radius: 30px;
    padding: 30px;
}

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 {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  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;
  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;
}

/*-------- dropdown-menu ---------*/
.dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    border-bottom: 1px solid #9992;
}

.navbar .butn.dropdown-toggle {
    margin-inline-start: 0;
}

header {
    position: relative;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/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: #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;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  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) !important;
  color: #fff;
}
.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;
}

.navbar .butn {
    margin-inline-start: 10px;
    min-width: 150px;
    padding: 12px 40px;
}

/* --------------- header --------------- */
header .header-slider {
  background-image: url(../images/home-banner_4.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
}
.header-slider .butn {
    background-color: #fff;
}
header .header-slider .slide-card {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: 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-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;
  padding-top: 120px;
  background-color: #ECEDEF;
}
.testimonials .testi_side .qaut {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 10;
}
.testimonials .testi_side .shap {
  position: absolute;
  left: 0;
  top: 0;
  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: 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;
  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;*/
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: #fff;
  margin-inline-end: 10px;
}
footer .foot {
  padding: 30px 0;
}

footer .foot .foot_logo {
    filter: invert(0%) sepia(3%) saturate(19%) hue-rotate(91deg) brightness(0%) contrast(101%);
    margin-inline-start: 10px;
    padding-inline-start: 10px;
    border-inline-start: 1px solid #9995;
}
/* --------------- 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;
  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 {
  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 .row .border-end:last-of-type {
    border: 0 !important;
}

.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;
  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%;
  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: 50px;
}
.pg_about_timeline .time_card {
  position: relative;
  text-align: center;
  min-height: 260px;
}
.pg_about_timeline .time_card::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 2px;
  height: 50px;
  background-color: #ccc;
  transform: translate(-50%, -50%);
}
.pg_about_timeline .time_card h5 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 150px;
  margin-top: 20px;
  position: relative;
  top: 30px;
}
.pg_about_timeline .time_card p {
  font-size: 16px;
  color: #555;
}

/* --------------- pg_about_pillars --------------- */
.pg_about_pillars .pillars_cards .pillar_card {
  display: flex;
  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: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
  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: flex;
  align-items: center;
  justify-content: center;
  margin-top: -55px;
}
.pg_about_approach .approach_cards .app_card .icon img {
    height: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.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: flex;
  align-items: 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;
  min-height: 195px;
}

/* --------------- pg_news_content --------------- */
.pg_news_content .main_post .post_card {
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  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: rgba(153, 153, 153, 0.1333333333);
}
.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;
  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);
  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;
  transition: all 0.3s ease;
}
.pg_courses_accordion .courses_content .courses_slider .course_card:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
}
.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;
  display: block;
}
.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: flex;
  align-items: 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 rgba(153, 153, 153, 0.3333333333);
}
.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;
  transform: rotate(25deg);
}
.pg_login_form .img_content {
  display: flex;
  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;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  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: flex;
  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: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(78, 79, 146, 0.3764705882), rgba(78, 79, 146, 0.8901960784));
}
.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 {
  margin-inline-end: 20px;
}
.pg_course_details .course_det_box {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
  margin-top: -250px;
  position: sticky;
  top: 20px;
}
.course_det_info p {
    font-size: 16px !important;
}
.pg_course_details .course_det_box .items .item_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.pg_course_details .course_det_box .items .item_row:last-of-type {
  border: 0;
}

.pg_course_details .course_det_box .items .item_row .item:last-of-type {
    font-weight: bold;
}

.application_form {
  position: relative;
  margin-top: -150px;
  z-index: 30;
}
.application_form .form-group h6 {
  font-size: 13px;
  min-height: 42px;
  display: flex;
  align-items: flex-end;
}
.application_form .form_box {
  position: relative;
  padding: 60px 3vw 40px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
  margin-bottom: 50px;
}
.application_form .form_box * {
  position: relative;
  z-index: 10;
}
.application_form .form_box .input-group {
    pointer-events: none;
}
.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: flex;
}
.application_form .form_box .proccess_line span {
  flex-grow: 1;
  height: 100%;
  background-color: rgba(30, 173, 157, 0.1333333333);
}
.application_form .form_box .proccess_line span.active {
  background-color: var(--mainColor);
}
.application_form .form-control {
  min-height: 60px;
}
.application_form .check_group {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
}
.application_form .check_group .form-check {
  padding: 0;
  flex-grow: 1;
  margin: 0 10px 10px;
    width: 25%;
}
.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;
  box-shadow: none;
  border: 1px solid rgba(153, 153, 153, 0.2);
  width: 100%;
  display: flex;
  align-items: 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 rgba(153, 153, 153, 0.3333333333);
  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%;
  transform: translateY(-50%);
  height: 30px;
  font-size: 25px;
  color: var(--mainColor);
}
.application_form .col-lg-6 {
  flex-grow: 1;
}

.ui-widget.ui-widget-content {
  width: 100%;
  border: 0;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  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: flex;
  align-items: 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);
  box-shadow: 0 0 15px rgba(0, 139, 184, 0.2);
  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 rgba(153, 153, 153, 0.2);
  margin: 0 5px;
}

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

/* --------------- pg_news --------------- */
.pg_news .news {
  display: flex;
  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 rgba(153, 153, 153, 0.2666666667);
  cursor: pointer;
  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 {
  transform: rotate(45deg);
  pointer-events: all;
}
.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: -moz-max-content;
  width: max-content;
  margin-inline-start: auto;
  margin-inline-end: 10px;
  pointer-events: none;
}
.pg_news .news .post_item .post_details {
  width: 100vw;
  background-color: #fff;
  bottom: 0;
  /* left: 0; */
  z-index: 30;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  /*transition: top 0.3s, opacity 0.3s;*/
  top: 30px;
  transform: translateY(100%);
}
.pg_news .news .post_item .post_details.show {
  opacity: 1;
  visibility: visible;
  position: relative;
  bottom: 0;
  transition: top 0.3s, opacity 0.3s;
  top: 0;
  transform: translateY(0);
}
.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: -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 {
    transform: translateX(0) !important;
    height: 400px;
    margin-top: 50px;
    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 {
    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;
    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%;
    transform: translateX(-55px);
    top: auto;
    bottom: 20px;
  }
  .pg_about_pillars .info {
    margin-bottom: 30px;
  }
  .pg_news_det_post .img {
    height: -moz-max-content;
    height: max-content;
  }
  .pg_news_det_post .info .cont {
    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: -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;
    padding-inline-start: 20px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
    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;
  }
  
  .pg_about_vision .item {
      padding: 40px 20px;
    border-bottom: 1px solid #9993;
  }
  
  .pg_about_vision .row .col-lg-4:last-of-type .item {
      border: 0;
  }
  
  footer .foot {
      padding: 30px 0 80px;
  }
  
  .testimonials .testi_side .shap {
      display: none;
  }
  
  .pg_login_form {
      overflow: hidden;
  }
  
  .breadcrumb_links .links a {
      margin: 5px 0;
  }
  
  .application_form .check_group .form-check {
      min-width: calc(50% - 20px);
      margin: 10px;
  }
  
}
 .trainingBox {
            padding: 25px ;
            background-color: #f9f9f9;
            position: relative;
            counter-reset: counter;
            border: 1px solid #f5f5f5;
        }
        .trainingBox .trainingItem {
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-inline-start: 15px;
            padding-inline-end: 45px;
        }
        .trainingBox .trainingItem:last-child {
            padding-bottom: 0px;
            margin-bottom: 0px;
            border-bottom: none;
        }
        .trainingBox .trainingItem::before {
            counter-increment: counter;
            content: counter(counter, decimal-leading-zero);
            font-size: 9px;
            font-weight: bold;
            position: absolute;
            top: 20px;
            left: 0;
            width: 20px;
            height: 20px;
            background: #fff;
            border: 1px solid #eee;
            color: #4E4F92;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
        }
        .butns {
            position: absolute !important;
            inset-inline-end: 12px;
            bottom: 42px;
            width: fit-content;
        }
        .butns .sm_butn {
            background-color: #4E4F92;
            color: #fff;
            border-radius: 5px;
            width: 20px;
            height: 20px;
            padding: 0;
            border: none;
            margin: 0 0px;
            font-size: 10px;
        }
        .butns .sm_butn:disabled {
            background-color: #888;
            color: #fff;
        }
        textarea {
            resize: none;
        }
        input[type=date] {
            color: #888;
        }
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */