@font-face {
    font-family: 'HarmoniaSansW01';
    src: url('./fonts//HarmoniaSansW01-Regular.woff2') format('woff2'),
        url('./fonts//HarmoniaSansW01-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --white: #fff;
  --black: #000;
  --color_orange_deep: #FB8500;
  --sky_light: #E5F6FE;
  --color_steel_blue: #012a4a;
  --color_gray_light: #515151;
  --color_deep_sky_blue: #219EBC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  font-family: "Outfit", sans-serif;
}

.open_sans_font {
  font-family: "Open Sans", sans-serif;
}

html {
  position: relative;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: none;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

select {
  word-wrap: normal;
}

::-webkit-input-placeholder {
  color: #515151;
}

:-moz-placeholder {
  color: #515151;
}

::-moz-placeholder {
  color: #515151;
}

ul {
  list-style: none;
}

.clr {
  clear: both;
  float: none;
  display: block;
}

.clr:after,
.afclr:after {
  clear: both;
  float: none;
  display: block;
  content: "";
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.outer_block {
  overflow: hidden;
}

.wrapper_xl {
  width: 100%;
  max-width: 1380px;
  padding: 0 20px;
  margin: 0 auto;
}


a {
  text-decoration: none;
  color: var(--color_orange_deep);
}

.heading_02 h2 {
  font-size: 50px;
  line-height: 1.2;
  color: var(--color_steel_blue);
  font-weight: 600;
  margin-bottom: 15px;
}


.heading_05 h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--block_color);
  line-height: 1.3;
  margin-bottom: 8px;
}

.heading_03 h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--color_steel_blue);
  text-transform: uppercase;
  line-height: 1.2;
  padding-bottom: 15px;
}


.heading_04 h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  padding-bottom: 6px;
}


.heading_pra p {
  font-size: 22px;
  font-weight: 500;
  color: var(--color_steel_blue);
  line-height: 1.4;
  padding-bottom: 20px;
}

.heading_pra p span {
  font-weight: 600;
}

.paragraph_pra p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color_gray_light);
  line-height: 1.5;
  padding-bottom: 15px;
}

.paragraph_pra p b {
  font-weight: 400;
  color: #000;
}

.paragraph_pra p:last-child,
.heading_pra p:last-child {
  padding-bottom: 0;
}
.site_button {
  font-weight: 400;
  min-width: 145px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  color: var(--white);
  padding: 2px 2px 2px 24px;
  background-color: var(--color_orange_deep);
  border: 1px solid var(--color_orange_deep);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
}

.site_button>span {
  width: 43px;
  height: 43px;
  min-width: 43px;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-radius: 50%;
  background-color: var(--white);
  padding: 12px;
  justify-content: center;
  transition: all 0.3s ease;
}

.site_button>span>svg {
  width: 100%;
  transition: all 0.3s ease;
}


.site_button:hover {
  border-color: var(--color_orange_deep);
  background-color: var(--white);
  color: var(--black);
}

.site_button:hover>span {
  background-color: var(--color_orange_deep);
}

.site_button:hover>span svg {
  fill: #fff;
}

/* header  */
.header_sec {
  padding: 23px 0 23px;

  background-color: var(--white);
}

.header_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_img_sec {
  width: 15%;
}

.header_img_sec a {
  display: inline-block;
}


.header_menu_sec {
  width: 64%;

}

.header_btn_sec {
  width: 21%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}


.header_mobile_menu {
  display: none;
}

/* css sticky header */

.sticky_header {
  position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
  background-color: var(--white);
}

.sticky_header.header_is_sticky {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}


.sticky_header_inner .main_logo a {
  max-width: 120px;
}

.sticky_header_inner {
  padding: 18px 0 15px;
}


.sticky_header_inner .header_img_sec a {

  max-width: 180px;
}


/* css end sticky header */

/* menu  */
.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.nav-menu {

  padding-right: 35px;
}

.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu>li {
  margin: 0 10px;
}

.nav-menu>li>a {
  position: relative;
  font-weight: 500;
  color: var(--black);
  text-transform: capitalize;
  font-size: 16px;
  padding: 8px 7px;
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-block;
}


.nav-menu>li:hover>a {
  color: var(--color_steel_blue);
}


.nav-menu .sub-menu ul li,
.nav-menu .sub-menu li {
  background: #ffffff;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1000;
  visibility: visible;
  filter: alpha(opacity=0);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
  transform: translateY(20px);
}

.nav-menu .sub-menu li {
  background: #ffffff;
  border-bottom: 1px solid var(--color_steel_blue);
  border-left: none;
  padding: 0;
  display: block;
  position: relative;
}

.nav-menu .sub-menu li a {
  text-align: left;
  font-weight: 500;
  color: var(--color_steel_blue);
  font-size: 15px;
  line-height: 1.2;
  display: block;
  padding: 9px 35px 9px 10px;
  transition: all 0.3s ease;
}

.nav-menu .sub-menu li:hover>a {
  background: #e7e7e7;
}

.nav-menu .sub-menu ul {
  position: absolute;
  top: 0px;
  left: 100%;
  border-top: 0;
  padding-left: 0px;
  padding-top: 0;
  filter: alpha(opacity=0);
  width: 180px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(40px, 0);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
}

.nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
}

.nav-menu .sub-menu li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0px, 0);
}

.nav-menu .sub-menu ul li:first-child {
  border-top: none;
}

.menu_expand {
  display: none;
  color: #000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu_expand i {
  height: 2px;
  background: var(--color_steel_blue);
  display: block;
  width: 35px;
  border-radius: 5px;
}

.menu_expand i:nth-child(2) {
  margin: 10px 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  opacity: 0;
}

.overlay.active {
  z-index: 100;
  opacity: 1;
}

.nav-menu .sub-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  transition: all 0.5s ease-in-out;
  transform: rotate(135deg);
}


.nav-menu>.menu-item-has-children>a {
  padding-right: 20px;
  position: relative;
}

.nav-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  right: 6px;
  top: 12px;
  transition: all 0.5s ease-in-out;
  transition: all 0.3s ease;
  border-top: 2px solid #1c1e1b;
  border-left: 2px solid #1c1e1b;
  transform: rotate(225deg);
}

.nav-menu>.menu-item-has-children:hover>a::before {
  border-top: 2px solid var(--color_steel_blue);
  border-left: 2px solid var(--color_steel_blue);
}

.cross_button {
  margin-top: 20px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
}

.cross_button a {
  font-size: 22px;
  color: #242323;
  cursor: pointer;
  border: 1px solid #242323;
  border-radius: 3px;
  padding: 4px;
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 1.2;
}

.m_close_icon:before,
.m_close_icon:after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #000000;
  top: 17px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_close_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.haeder_mobile_menu_bottom,
.haeder_mobile_menu_top {
  display: none;
}

.expand_plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 35px;
  padding: 25px 10px 2px;
  cursor: pointer;
  z-index: 100;
  display: none;
}

.expand_plus i {
  display: block;
  position: relative;
  width: 12px;
  height: 10px;
  top: -8px;
}

.expand_plus:after {
  margin-right: -2px;
  transform: translate(-50%, -50%) rotate(-135deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform-origin: center;
}

.expand_plus.active:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav_menu_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000008f;
  z-index: 20;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.nav_menu_overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header_mobile_logo {
  max-width: 130px;
  width: 100%;
}

/* banner  */


.banner_section {
  position: relative;

}

.banner_image_ab {
  position: absolute;
  inset: 0;
  display: block;
}

.banner_image_ab>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.banner_image_ab>img,
.banner_section {
  min-height: 530px;
}

.banner_section::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  opacity: 65%;
  background: linear-gradient(180deg, rgba(31, 92, 136, 1) 0%, rgba(25, 134, 206, 1) 42%, rgba(26, 130, 200, 1) 58%, rgba(31, 92, 136, 1) 100%);
}

.banner_section_inner {
  position: relative;
  height: 100%;
  z-index: 10;
}

.banner_section_inner>.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 20px;
}

.content_top_entry {
  width: 70%;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.content_top_entry h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  margin-bottom: 20px;
}


.content_top_entry p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  margin-bottom: 12px;

}

.banner_btn {
  margin-top: 35px;
}


.banner_btn .site_button {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.banner_btn .site_button:hover {
  border-color: var(--color_orange_deep);
  background-color: var(--color_orange_deep);
  color: var(--white);
}

.banner_btn .site_button>span svg {
  fill: #fff;
}

.banner_btn .site_button>span {
  background-color: var(--color_orange_deep);
}

.banner_btn .site_button:hover>span svg {
  fill: #000;
}

.banner_btn .site_button:hover>span {
  background-color: var(--white);
}


.list_wph_ctc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 10px 0;
}

.list_wph_ctc h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 15px;
}

.list_wph_ctc ul li {
  font-size: 18px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
}

.list_wph_ctc ul li:last-child {
  margin-bottom: 0px;
}

.list_wph_ctc ul li b {
  font-weight: 500;
}

.list_wph_ctc ul li span {
  color: var(--color_orange_deep);
}

.list_wph ul li:last-child {
  margin-bottom: 0;
}

.list_wph_ctc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 18px;
  background-image: url(../images/list-scholare-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.empowering_ai_section {
  padding: 100px 0;
  background-color: var(--sky_light);
}

.powering_ai_content {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.powering_ai_content.paragraph_pra p {
  font-size: 28px;
  line-height: 1.2;
  color: var(--black);
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
}

.why_choose_section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.wy_choose_out {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.classroom_list_wt {
  margin-bottom: 15px;
  margin-top: 10px;
}

.wy_choose_out:nth-child(even) {
  flex-direction: row-reverse;
  position: relative;
  z-index: 3;
}

.wy_choose_out:nth-child(even)::after {
  position: absolute;
  content: '';
  right: 0;
  top: 169px;
  width: 96px;
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}

.wy_choose_out:first-child .classroom_list_wt {
  margin-bottom: 0px;
  margin-top: 0px;
}

.wy_choose_blog {
  width: calc(50% - 30px);
}

.wy_choose_ctc {
  width: calc(50% - (100% - 1230px) / 2);
  margin-left: auto;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wy_choose_blog:nth-child(odd) .wy_choose_ctc {
  margin-left: auto;
  margin-right: 0;
  padding: 80px 0px 60px 20px;
}

.wy_choose_out:nth-child(even) .wy_choose_blog:nth-child(odd) .wy_choose_ctc {
  margin-right: auto;
  margin-left: 0;
  padding: 80px 20px 60px 0;
}


.wy_choose_info,
.wy_choose_img {
  height: 100%;

}


.wy_choose_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* .wy_choose_ctc.paragraph_pra p,
.our_service_title.paragraph_pra p {
  color: var(--color_gray_light);
} */


.our_course_section {
  padding: 100px 0;

}

.our_course_sl {
  position: relative;
  padding-bottom: 65px;
}

.our_course_title,
.cre_swiper_content {
  text-align: center;
}

.cre_swiper_content>img {
  width: 100%;
}

.cre_swiper_content .heading_03 {
  padding-top: 20px;
}

.course-book-pagination .swiper-pagination-bullet {
  background-color: var(--white);
  border: 1px solid var(--color_orange_deep);
  opacity: 1 !important;
  width: 13px;
  height: 13px;
}

.course-book-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color_orange_deep);
}


.our_course_title.heading_02 h2 {
  margin-bottom: 10px;
}

.our_course_title.paragraph_pra p {
  color: var(--color_gray_light);
}

.our_course_title,
.our_service_title {
  padding-bottom: 25px;
}


.our_services_section {
  padding: 0 0 100px;
}


.our_service_title {
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}

.our_services_out {
  position: relative;
}

.pricing_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.our_services_out::after,
.our_services_out::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  background-image: url(../images/pricing-blue-circle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.our_services_out::before {
  bottom: -30px;
  left: -30px;
  top: auto;
}

.pricing_box_outer {
  width: 25%;
  padding: 12px;
}

.pricing_box {
  border: 1px solid var(--color_deep_sky_blue);
  padding: 32px 15px 28px;
  border-radius: 8px;
  background-color: var(--white);
  height: 100%;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.pricing_box_cat {
  width: 115px;
  padding: 35px;
  height: 115px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sky_light);
}

.pricing_box_cat>img {
  width: 100%;
}


.pricing_box_contant {
  padding: 0px 0 25px;
  transition: all 0.3s ease;

}

.pricing_box_contant p {
  line-height: 1.3;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

}

.pricing_box_pricing.paragraph_pra p {
  font-size: 16px;
  position: relative;
  padding: 0;
  text-align: left;
  color: var(--color_deep_sky_blue);
  font-weight: 500;
  line-height: 1.1;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.pricing_box_pricing.paragraph_pra p:last-child {
  padding-left: 15px;
}

.pricing_box_pricing.paragraph_pra p:last-child::after {
  position: absolute;
  content: '';
  width: 3px;
  height: 35px;
  left: 3px;
  top: 2px;
  margin: auto 0;
  bottom: 0;
  background-color: var(--color_deep_sky_blue);
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
}

.pricing_box_pricing.paragraph_pra p>span {
  font-size: 38px;
}

.pricing_box_pricing.paragraph_pra p>.from_content_text {
  font-size: 16px;
  position: relative;
  top: -10px;
}

.pricing_box_title,
.pricing_box_contant,
.faq_inner_title {
  text-align: center;
}

.pricing_box_title.heading_03 h3 {
  text-transform: unset;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
  color: var(--black);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.pricing_box_title.sub_pricing_til.heading_03 h3 {
  font-size: 18px;
  padding-bottom: 15px;
}

.pricing_box:hover .pricing_box_cat {
  background-color: var(--white);
}

.pricing_box_details {
  padding: 25px 0px 0px;

}

.pricing_box_pricing {
  display: grid;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: auto 1fr;
  padding-bottom: 15px;
}


.box_pricing_list .list_wph_ctc ul li::before {
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url(../images/checklist-icon.svg);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.box_pricing_list .list_wph_ctc ul li {
  color: var(--color_gray_light);
  padding-left: 25px;
  margin-bottom: 7px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.pricing_box_btn {
  text-align: center;
  margin-top: 30px;
}

.pricing_box_btn .site_button>span {
  width: 38px;
  height: 38px;
  padding: 10px;
  min-width: 38px;
}

.pricing_box:hover {
  border-color: var(--color_deep_sky_blue);
  background-color: var(--color_deep_sky_blue);
}

.pricing_box:hover .pricing_box_title.heading_03 h3,
.pricing_box:hover .pricing_box_pricing.paragraph_pra p,
.pricing_box:hover .pricing_box_contant.paragraph_pra p,
.pricing_box:hover .box_pricing_list .list_wph_ctc ul li {
  color: var(--white);
}

.pricing_box:hover .pricing_box_pricing.paragraph_pra p:last-child::after {
  background-color: var(--white);
}

.pricing_box:hover .box_pricing_list .list_wph_ctc ul li::before {
  filter: brightness(0) invert(1);
}

.pricing_box:hover .pricing_box_btn .site_button {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}


.pricing_box:hover .site_button>span {
  background-color: var(--color_orange_deep);
}

.pricing_box:hover .site_button>span svg {
  fill: #fff;
}


.abt_link_row {
  text-align: center;
  margin-top: 40px;
}

.ab_services_link {
  font-size: 20px;
  text-underline-offset: 3px;
  font-weight: 400;
  display: inline-block;
  color: var(--color_deep_sky_blue);
  text-decoration: underline;
  line-height: 1.2;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.ab_services_link:hover {
  color: var(--color_orange_deep);
}

/* get started  */
.get_started_sec {
  padding: 0px 0 100px;
}

.get_started_title {
  text-align: center;
  margin-bottom: 40px;
}

.get_started_container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  justify-content: center;
  counter-reset: step;
  gap: 40px 35px;
}

.get_started_box {
  width: calc(33.33% - 23.3px);

}

.works_started_icon {
  margin-left: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 85px;
  padding: 19px;
  border-radius: 15px;
  background-color: #A4B9FB;
  margin-bottom: 35px;
}

.works_started_icon>img {
  width: 100%;
  object-fit: contain;
}

.get_started_content {
  max-width: 296px;
  margin: 0 auto;
  text-align: left;
}

.get_started_content.heading_03 h3 {
  font-size: 28px;
  text-transform: unset;
  font-weight: 600;
  padding-bottom: 10px;
}

.get_started_content.paragraph_pra p {
  font-weight: 300;
  color: var(--color_steel_blue);
  line-height: 1.4;
}

.get_started_content.paragraph_pra p>b {
  font-weight: 500;
  color: var(--color_steel_blue);
}


.get_started_btn {
  text-align: center;
  margin-top: 60px;
}

.get_started_box:nth-child(2) .works_started_icon {
  background-color: var(--color_deep_sky_blue);
}

.get_started_box:nth-child(3) .works_started_icon {
  background-color: #A46A9E;
}


.our_testimonials_section {
  padding: 100px 0;
  background-image: url(../images/testimonials-bg-image-n.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.our_tls_title {
  padding-bottom: 25px;
}

.our_tls_title>.heading_02 {
  max-width: 70%;

}


.our_tls_title>.heading_02 h2 {
  line-height: 1.1em;
  font-weight: 500;
  color: var(--white);
}

.tls_slide_black {
  position: relative;

}


.tls_img_user_row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}


.img_user_title_sl {
  width: calc(100% - 80px);
  margin-left: auto;
}

.img_user_title_ft h5 {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.img_user_title_ft h5 span {
  font-size: 16px;
  font-weight: 300;
  display: block;
  color: #2a2a2a;
}

.img_user_title_sl.paragraph_pra p {
  color: #2a2a2a;
}

.img_user_title_ft {
  margin-top: 8px;
}

.tls_swiper_content {
  padding: 30px 40px 30px 20px;
  border-radius: 11px;
  background-color: var(--white);
}

.testimonials_reviews {
  margin-bottom: 20px;
}

.testimonials_reviews img {
  max-width: 28px;
}


.our_tls_arrow {
  position: relative;
}

.our_tls_arrow_next,
.our_tls_arrow_prev {


  top: -60px;


}

.our_tls_arrow_next::after,
.our_tls_arrow_prev::after {
  font-size: 0px;
  background-image: url(../images/site-fa-btn-arrow-n.svg);
  border-radius: 50%;
  background-position: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: 30px;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--white);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.our_tls_arrow_next:hover::after,
.our_tls_arrow_prev:hover::after {
  border-color: var(--color_orange_deep);
  background-color: var(--color_orange_deep);
}

.our_tls_arrow_next {
  right: 20px;
}

.our_tls_arrow_prev {
  right: 106px;
  left: auto;
  transform: rotate(180deg);
}


/* faq  */
.faq_sec {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/faq-bg-image-transparent.webp);
  background-size: contain;
  background-position: left calc(100% - 155px);
  background-repeat: no-repeat;
  z-index: 3;
}


.faq_pg_sec::after,
.faq_sec::after {
  position: absolute;
  content: '';
  right: 0;
  top: 135px;
  width: 96px;
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;

  z-index: -1;
}

.faq_pg_sec::before,
.faq_sec::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 120px;
  width: 96px;
  transform: rotate(180deg);
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}

.faq_inner {
  position: relative;
}

.faq_inner .site_sub_title {
  text-align: center;
}

.faq_inner_title {

  margin-bottom: 25px;
}


.faq_inner_title .site_title {
  display: inline-block;
}

.faq_container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.faq_box {
  border-bottom: 1px solid #898989;
  padding: 10px 0 10px 35px;
}


.faq_box_title {
  position: relative;
  cursor: pointer;
  padding: 16px 50px 16px 0;
}

.faq_box_title h3 {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  width: 100%;
  line-height: 1.4;

}

.faq_box_title::after {
  content: "";
  background-image: url('../images/faq_plus_icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

.faq_box.active .faq_box_title::after {
  content: "";
  background-image: url('../images/faq_min_icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

.faq_box_content {
  display: none;
  padding: 0 50px 20px 0;
  width: 100%;
  max-width: 680px;
}

.faq_btn {
  text-align: center;
  margin-top: 40px;
}


.faq_box_content p {
  color: var(--color_gray_light);
}


/**Footer Top**/
.f__top_info_outer {
  background-color: var(--color_orange_deep);
  position: relative;
}

.f__top_info_outer:after,
.f__top_info:after {
  position: absolute;
  top: 0;
  left: -5px;
  content: '';
  width: 90px;
  height: 90px;
  background-image: url('../images/pricing-blue-circle-addrs.svg');
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: 0;
}


.f__top_info {
  background-color: var(--color_orange_deep);
  color: var(--white);
  /* padding: 70px 60px 70px 60px; */
  padding: 60px;
  /* border-radius: 10px; */
  position: relative;
  overflow: hidden;
}

.f__top_info:after {
  right: 0;
  bottom: 40px;
  top: auto;
  left: auto;
  width: 62px;
  height: 62px;
}

.f__top_info .f__top_info__content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  z-index: 2;
  align-items: center;
  position: relative;
}

.f__top_info__text.heading_02 h2 {
  color: var(--white);
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 0;

}

.f__top_info__text.heading_03 h3 {
  color: var(--white);


}


/* .f__top_info__text h2 { font-size: 36px; font-weight: 500; font-family: "Poppins", sans-serif;line-height: 1.2em;margin-bottom: 10px;} */
.f__top_info__text {
  width: 57%;
}

.f__top_info__contact {
  width: 43%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.f__top_info__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f__top_info__icon {
  background-color: var(--white);
  border-radius: 50%;
  padding: 19px;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}

.f__top_info__icon img {
  width: 100%;
}

.f__top_info__item_content {
  width: calc(100% - 75px);
}

.f__top_info__label {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
}

.f__top_info__info a {
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  transition: all 0.3s ease;
  word-break: break-all;
}

.f__top_info__info a:hover {
  opacity: 0.5;
}


/**Footer **/
.footer__container_outer {
  background-color: var(--color_steel_blue);
  color: var(--white);
  position: relative;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 100px 0;
}

.footer__container_outer::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 135px;
  width: 62px;
  height: 62px;
  background-image: url(../images/pricing-blue-circle-ft.svg);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: 0;
}

.footer__branding {
  width: 340px;
  padding: 0px 20px 0 0;
  margin-right: 75px;
}


.footer__logo img {
  max-width: 245px;
  width: 100%;
}

.footer__column.footer_ctc_us ul {
  padding: 0;
}

.footer__links {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 40px;
  font-family: "Outfit", sans-serif;
  width: calc(100% - 340px);
  flex-wrap: wrap;
}

.footer__column {
  width: calc(33.33% - 27px);

}

.footer__column:first-child {
  width: calc(22% - 27px);
}

.footer__column:last-child {
  width: calc(42% - 27px);
}

.footer__heading {
  font-weight: 600;
  line-height: 1.3;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 18px;
}


.footer__column a.tel_ft_size {

  line-height: 1;
}

.footer__column a.mailto_ft_size {
  word-break: break-all;
  line-height: 1.2;
}

.footer__column ul {
  list-style: outside;
  padding: 0;
  color: var(--color_orange_deep);
  font-size: 20px;
  line-height: 1.1;
  padding-left: 21px;
}

.footer__column li {
  margin-bottom: 12px;
}

.footer__column li:last-child {
  margin-bottom: 0px;
}

.ft_logo_ctc {
  margin-top: 28px;
}

.ft_logo_ctc.paragraph_pra p {
  color: #eeeeee;
  font-size: 15px;
}

.footer__column a,
.footer__column.timings_list ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4em;
}

.footer__column a {
  display: inline-flex;
}

/* .footer__column ul li::marker {
  color: #000;
  transform: translateY(2px);
} */

.footer__column.timings_list ul li {
  margin-bottom: 10px;
  letter-spacing: 1px;
  display: block;
}

.footer__column a:hover {
  color: var(--color_orange_deep);
}


.footer_ctc_us ul li {
  display: flex;
  align-items: self-start;
  gap: 13px;
}


.footer_ctc_us ul li>span {
  position: relative;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.footer_ctc_us ul li>span svg {
  width: 19px;
}

/* .footer_ctc_us .social_links_ft ul li {
  align-items: center;
}

.footer_ctc_us .social_links_ft ul li>span {
  top: auto;
} */
.social_links_ft ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.social_links_ft ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 8px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.social_links_ft ul li a:hover {
  background-color: var(--color_orange_deep);
}

.social_links_ft ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social_links_ft ul li a span>svg {
  height: 19px;
}


.footer__container_bottom {
  border-top: 1px solid var(--white);
}

.footer__bottom_bar {
  padding: 20px 0;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.footer__bottom_bar p {
  font-size: 14px;
  color: #eeeeee;
  font-weight: 300;
  line-height: 1.3;
}

.footer__bottom {
  width: 70%;
}

.footer__bottom p a {
  color: #eeeeee;
  transition: all 0.3s ease;
}

.footer__bottom p a:hover {
  color: var(--color_orange_deep);
}


.scroll_down_banner {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  z-index: 10;
  width: 300px;
  animation: bounce 2s infinite;
}

.scroll_mouse {
  width: 24px;
  margin: 0 auto;
}


@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 6px);
  }
}


.no_overflow {
  overflow: hidden;
}


.nav-menu .sub-menu-toggle {
  display: none !important;
}

/* common banner  */
.page_title_section {
  position: relative;
  overflow: hidden;
}

.page_title_section img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.page_title_section_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page_title_section_inner:after {
  left: 0;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 92, 136, 0.65) 0%, rgba(25, 134, 206, 0.65) 42%, rgba(26, 130, 200, 0.65) 58%, rgba(31, 92, 136, 0.65) 100%);
  top: 0;
}

.full_height {
  height: 100%;
}

.page_title_section_text {
  width: 100%;
  height: 100%;
  margin: auto;
  max-width: 1220px;
}

.txt_inn {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

.page_title_section_text .txt_inn h1 {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 58px;
}

/* search  */
.search_part_content .page-title {
  font-weight: 600;
  color: #012a4a;
}

.search_part_content article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}

.search_part_content h2 a {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color_orange_deep);
  font-weight: 600;
}

.search_part_content img {
  display: none;
}

.search_part_content .pagination svg path {
  fill: var(--color_orange_deep);
}

.search_part_content .nav-prev-text,
.search_part_content .nav-next-text {
  display: none;
}

.search_part_content .pagination .nav-links {
  display: flex;
  gap: 10px;
}

.search_part_content .pagination {
  padding: 40px 0 0 0;
}

.search_part_content .pagination .page-numbers.current {
  color: var(--color_orange_deep);
  font-weight: 500;
}

.search_part_content .no-results .search-form label {
  display: none;
}

.search_part_content .no-results .search-form {
  margin: 30px 0;
  display: flex;
  width: 80%;
  gap: 10px;
}

.search_part_content .no-results .search-form .search-submit {
  cursor: pointer;
  background-color: var(--color_orange_deep);
  color: #fff;
  padding: 8px 25px;
  font-weight: 400;
  min-width: 145px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  border-radius: 32px;
  border: none;
  border: 1px solid var(--color_orange_deep);
  transition: all 0.3s ease;
}

.search_part_content .no-results .search-form .search-submit:hover {
  background-color: var(--white);
  color: var(--black);
}

.search_part_content .no-results .search-form .search-field {
  padding: 0 10px;
  width: 100%;
  border-radius: 10px;
}

.search_part_content .no-results .search-form input {
  outline: 0;
  border: 2px solid var(--color_orange_deep);
}

.search_part_content {
  padding: 50px 0 80px 0;
}

.search_part_content .no-results {
  padding: 30px 0 0 0;
}

/* error/404 page  */
.error_pg_sec {
  padding: 100px 0;
  position: relative;
  background-image: url(../images/faq-bg-image-transparent.webp);
  background-size: contain;
  background-position: left calc(100% - 155px);
  background-repeat: no-repeat;
}

.error_pg_inner {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.error_pg_left {
  width: 45%;
}

.error_page_content {}

.error_page_content h2 {
  text-transform: uppercase;
  color: #0F5F98;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.error_page_content h1 {
  text-transform: uppercase;
  color: #0F5F98;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.error_pg_right {
  width: 55%;
}

.error_pg_img {
  width: 100%;
}

.error_pg_img img {
  width: 100%;
  display: block;
}

.error_pg_sec::after {
  position: absolute;
  content: '';
  right: 0;
  top: 135px;
  width: 96px;
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}

.error_pg_sec::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 120px;
  width: 96px;
  transform: rotate(180deg);
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}

/* faq pg  */
.faq_pg_sec {
  padding: 75px 0 100px;
  position: relative;
  overflow: hidden;
  background-image: url(../images/faq-bg-image-transparent.webp);
  background-size: contain;
  background-position: left calc(100% - 155px);
  background-repeat: no-repeat;
}

.faq_pg_inner {
  position: relative;
}

/* contact pg  */

.form_field_full {
  display: flex;
  margin: 0 -25px;
  flex-wrap: wrap;
}

.form_field {
  width: 50%;
  padding: 0 25px;
  margin-bottom: 15px;
}

.form_field.form_field_w {
  width: 100%;
}

.fm_input {
  display: block;
  outline: none;
  border: 0;
  border-bottom: 1px solid #000;
  width: 100%;
  border-radius: 0;
  background: transparent;
  padding: 16px 0px;
  color: #515151;
  font-size: 18px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}

.fm_input:focus {
  border-color: #b8c1a5;
}

.fm_input.textarea_src {
  resize: none;
  height: 120px;
  -webkit-appearance: none;
}
.fm_input::placeholder{color: #898989;}
.form_field_btn {
  display: block;
  width: 100%;
  padding-top: 25px;
}

.site_btn_arrow .site_button {
  background-image: url('../images/button_arrow_black_icon.png');
  background-position: calc(100% - 2px) center;
  background-size: 40px;
  background-repeat: no-repeat;
  padding: 13px 50px 13px 20px;
}

.site_btn_arrow .site_button:hover {
  background-image: url('../images/button_arrow_white_icon.png');
}

.info_wrap .elementor-icon-list-item a {
  word-break: break-all;
}

.graphic_image {
  position: relative;
}


.graphic_image::after {
  position: absolute;
  content: '';
  right: 0;
  top: 169px;
  width: 96px;
  height: 220px;
  background-image: url(../images/circle-blog-bg.webp);
  opacity: 1;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
}

.image_design .elementor-widget-container {
  position: relative;
}

.image_design .elementor-widget-container::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/pricing-blue-circle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  left: -45px;
  top: -40px;
}

.banner_section_inner .content_top_entry h1 {
  visibility: hidden
}




.content_counter_list {
  counter-reset: list-counter
}

.content_counter_list .content_counter_box {
  position: relative
}

.content_counter_list .content_counter_box::after {
  position: absolute;
  content: counter(list-counter);
  counter-increment: list-counter;
  top: 0;
  background-color: var(--color_steel_blue);
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1em;
  border-radius: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-top: 1px;
  z-index: 0
}

.content_counter_list .content_counter_box::before {
  position: absolute;
  content: "";
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 100%;
  z-index: 1;
  margin-top: 5px !important;
}


.content_counter_list .content_counter_box::after,
.content_counter_list .content_counter_box::before {
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -25px;
}
.faq_sub_title.paragraph_pra {
  max-width: 711px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}
.faq_sub_title.paragraph_pra p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  font-family: "Open Sans", Sans-serif;
  font-style: italic;
}




/* course reg  */
.course_reg_sec {background: #f9f9f9;padding: 100px 0;}
.course_reg_inner{max-width: 800px;margin: 0 auto;} 
.course_reg_form { width: 100%; } 
.course_reg_form_box { width: 100%; display: flex; column-gap: 10px; margin-bottom: 20px;row-gap: 20px;} 
.course_reg_form_half {} 
.course_reg_form_full { width: 100%; } 
.course_reg_form_sec p{padding: 0;font-size: 18px;}
.course_reg_form_sec label { display: block; font-size: 17px; color: #3a3a3a; padding: 4px 0; font-weight: 400; }
.course_reg_form_sec textarea,
.course_reg_form_sec input {
  width: 100%;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  padding: 14px 20px;
  color: #3a3a3a;
  outline: none;
  /* appearance: none; */
  resize: none;
  font-size: 16px;
  background: transparent;
  line-height: 1em;
}
.course_reg_form_sec input[type="radio"],
.course_reg_form_sec input[type="checkbox"]{width: 25px;height: 25px;appearance: auto;accent-color: #219ebc;}
.course_reg_form_sec textarea::placeholder, .course_reg_form_box input::placeholder { color: #999999; } 
.course_reg_form_btn { margin-top: 25px; }
.course_reg_form_sec{box-shadow: 0 0 10px 0 #0000000d;border-radius: 10px; padding: 50px 30px;margin-bottom: 20px;background: #fff;}
.course_reg_form_inner{max-width: 100%;}
.course_reg_form_title h3{text-transform: none;margin-bottom: 10px;font-size: 24px;}

.course_reg_checkbox_box{width: 100%;display: flex;}
.course_reg_checkbox_box label{display: flex;gap: 10px;justify-content: space-between;}
.course_reg_checkbox_box label input{}
.course_reg_checkbox_box label span.wpcf7-list-item-label{width: calc(100% - 35px);padding-top: 1px;}

.course_reg_checkbox_box .wpcf7-list-item{display: flex;margin: 0;}
.course_reg_form h4{color: #012a4a;font-size: 19px;font-weight: 500;padding: 5px 0 10px;}
.course_reg_form h6{color: #959595;padding: 5px 0;font-size: 15px;font-weight: 500;}
.course_reg_form_sec span.cr_form_required{color: rgb(182, 26, 26);}
.course_reg_form span.wpcf7-not-valid-tip{font-size: 16px;}

.site_button_arrow .elementor-button{
  background-image: url('../images/button_arrow_black_icon.png');
  background-position: calc(100% - 2px) center;
  background-size: 40px;
  background-repeat: no-repeat;
  padding: 13px 50px 13px 20px;
  font-weight: 400;
  min-width: 145px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  color: var(--white);
  background-color: var(--color_orange_deep);
  border: 1px solid var(--color_orange_deep);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  text-align: left;
}

.site_button_arrow .elementor-button:hover {
  background-image: url('../images/button_arrow_white_icon.png');
  border-color: var(--color_orange_deep);
  background-color: var(--white);
  color: var(--black);
}

.our_course_swiper_next,
.our_course_swiper_prev{right: calc(50% - 65px);bottom: 0;top: auto;background: #fb8500;width: 50px;height: 50px;border-radius: 100%;display: flex;align-items: center;justify-content: center;padding: 12px;
transition: all 0.3s ease;border: 1px solid #fb8500;}

.our_course_swiper_prev{left: calc(50% - 65px);}


.our_course_swiper_next::after,
.our_course_swiper_prev::after{display: none;}


.our_course_swiper_next svg,
.our_course_swiper_prev svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #fff;
  transition: all 0.3s ease;
}
.our_course_swiper_prev svg{transform: rotate(180deg);}

.our_course_swiper_next:hover,
.our_course_swiper_prev:hover{background: #fff;}
.our_course_swiper_next:hover svg,
.our_course_swiper_prev:hover svg{fill: #000;}


.ele_font_kalam *{font-family: "Kalam",sans-serif !important;}
.about_pg_ele_back_color{background-image: linear-gradient(45deg, #ffffff00, #1f5c8817, #1f5c883d, #ffffff00)}
.ele_full_height{height: 100%;}

.our_course_btn{text-align: center;padding: 40px 0 0 0;}

/* course  */

 .course_pg_sec{padding:60px 0 60px;}
.course_pg_inner{display: flex;flex-wrap: wrap;}
.course_pg_left{width: 35%;padding-right: 60px;}
.course_pg_left_inner{width: 90%;}
.course_pg_left_title h3{
        font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color_steel_blue);
    padding: 22px 0;
    border-bottom: 1px solid #d5ddc4;
    position:relative;
}
.course_pg_cat_list{padding: 5px 0 0;}
.course_pg_cat_item{
        font-size: 18px;
    color: #231f20;
    font-weight: normal;
    line-height: 1.2;
    padding: 2px 0;
    margin: 10px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.course_pg_cat_item:hover{color: #fb8500;}
.course_pg_cat_item.active{color: #fb8500;}
.course_pg_right{width: 65%;}
.course_pg_container{display: flex;flex-wrap: wrap;margin: 0 -20px;}
.course_pg_no_course_post{
    font-size: 24px;
    font-weight: 600;
    padding-top: 18px;
    padding-left: 28px;
}
.course_pg_sec .whats_new_box_sec {padding:0 20px;}
.course_bg_cat_mobile .course_pg_left_title h3:after{
     content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #fb8500;
    border-right: 2px solid #fb8500;
    top: -8px;
    bottom: 0;
    margin: auto 0;
    right: 20px;
    transform: rotate(45deg);
    display:none;
    transition: all 0.3s ease;
}
.course_pg_left_title h3.active:after{transform: rotate(225deg);top: 8px;}
.course_pg_sec .course_box {width:50%;padding:0 20px;margin: 0 0 55px 0;}
.course_pg_sec .course_box_inner{height:100%;background: #e4f4ef;}
.course_pg_sec .course_content{background: #e4f4ef;}


.course_tabing_all{}
.course_container{display: none;}
.course_container:first-child{display: block;}
.course_pg_cat_title{}
.course_pg_cat_title h2{
    font-size: 34px;
    line-height: 1.2;
    color: var(--color_steel_blue);
    font-weight: 600;
    margin-bottom: 30px;
}
.course_list{}
.course_pg_box_outer{width: 100%;}
.course_pg_box{border: 1px solid var(--color_deep_sky_blue);border-radius: 10px; padding: 20px 20px;margin-bottom: 30px;}
.course_pg_box_title{}
.course_pg_box_title h3{
      font-family: "Outfit", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    line-height: 1.4em;
    color: #283C5A;
}
.course_pg_box_sub_title{margin-bottom: 10px;}
.course_pg_box_sub_title h4{
      font-family: "Outfit", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    font-style: normal;
    line-height: 1.5em;
    color: #515151;
}
.course_pg_box_content{}
.common_content_style p{
      font-size: 16px;
    font-weight: 400;
    color: var(--color_gray_light);
    line-height: 1.5;
    padding-bottom: 15px;
}
.common_content_style ul{list-style: none;}
.common_content_style li{
      font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 10px;
}
.common_content_style li:last-child{margin-bottom: 0;}
.common_content_style>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 21px;
    height: 18px;
    background-image: url(../images/list-scholare-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.common_content_style>ul>li ul{padding: 5px 0;}
.common_content_style>ul>li ul li{padding-left: 25px;}
.common_content_style>ul>li li::before{
 content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url(../images/checklist-icon.svg);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.course_info{
  list-style-type: disc;
  margin-left: 70px;
  margin-top: -6px;
  margin-bottom: 10px;
  color: #3a3a3a;
  font-size: 16px;
}
.course_info li p{
  font-size: 16px;
  padding-bottom: 4px;
}
.course_reg_checkbox_box.course_reg_checkbox_box_with_content label{
  justify-content: start;
}
.course_reg_checkbox_box.course_reg_checkbox_box_with_content{display: block;}

.common_banner_content{ max-width: 840px;margin: 15px auto 0;text-align: center;}
.common_banner_content p{}


.course_pg_content{text-align: left;margin-bottom: 70px;}

.how_it_works_box_icon.elementor-widget .elementor-widget-container{height: auto;}
.common_content_list{}
.common_content_list ul li{
      font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    position: relative;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 10px;
}
.common_content_list .elementor-widget-container>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url(../images/checklist-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.common_content_list .elementor-widget-container>ul>li ul {
    padding: 5px 0 0;
}
.common_content_list .elementor-widget-container>ul>li ul li {
    padding-left: 16px;
    color: var(--color_gray_light);
}
.common_content_list li:last-child {
    margin-bottom: 0;
}
.common_content_list .elementor-widget-container>ul>li li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background-color: var(--color_gray_light);
    border-radius: 100%;
}
.faq_box_content ul{
    list-style: outside;
    padding: 0;
    color: var(--color_gray_light);
    line-height: 1.5;
    padding-left: 21px;
}
.faq_box_content li {
    margin-bottom: 12px;
}

/* tutor/teacher page  */
.our_team_sec{padding: 80px 0;background-image: url('../images/faq-bg-image-transparent.webp');background-repeat: repeat;}
.our_team_inner{display: flex;flex-wrap: wrap;row-gap: 40px;margin: 0 -20px;max-width: 1150px;margin: 0 auto;}
.our_team_box{width: calc(33.33% - 40px);margin: 0 20px;box-shadow: 2px 2px 15px 0px #00341c1a;background: var(--white);}
.our_team_box_info{}
.our_team_box_img{position: relative;padding-top: 70%;}
.our_team_box_img img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
.our_team_box_detail{padding: 15px 20px}
.our_team_box_name{}
.our_team_box_name h2{font-family: "Outfit", Sans-serif;font-size: 20px;font-weight: 600;text-transform: capitalize;font-style: normal;line-height: 1.2em;color: #283C5A;}
.our_team_box_post{}
.our_team_box_post h3{font-family: "Outfit", Sans-serif; font-size: 16px; font-weight: 600; line-height: 1.5em; color: #515151;margin-top: 6px;}
.our_team_box_content{margin-top: 15px;}
.our_team_box_content p{font-size: 16px;}
.our_team_box_btn{margin-top: 20px;}
.our_team_box_btn a{}
.our_team_box_all_content{max-width: 920px;border: 5px solid #219ebc;padding: 25px;}
.our_team_box_all_content p{}




@media screen and (max-width: 1350px) {


  .nav-menu {
    padding-right: 5px;
    padding-left: 10px;
  }

  .content_top_entry h1 {
    font-size: 62px;
    line-height: 1.2;
  }

  .content_top_entry p {
    font-size: 22px;
  }

  .content_top_entry {
    width: 62%;
  }

  .banner_section_inner>.wrapper {

    padding: 100px 20px;
  }

  .our_testimonials_section {


    background-size: 100% 100%;
  }
}

@media screen and (max-width: 1280px) {
  .content_top_entry h1 {
    font-size: 56px;

  }


  .content_top_entry {
    width: auto;
    max-width: 705px;
  }


  .banner_section_inner>.wrapper {
    padding: 70px 20px;
  }

  .banner_image_ab>img,
  .banner_section {
    min-height: 490px;
  }

  .scroll_mouse {
    width: 21px;

  }

  .site_button>span {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .site_button {
    min-width: 137px;
    padding: 2px 2px 2px 20px;
  }

  .empowering_ai_section {
    padding: 80px 0;

  }

  .powering_ai_content.paragraph_pra p {
    font-size: 24px;


  }

  .powering_ai_content {
    width: auto;

    max-width: 733px;
  }

  .wy_choose_ctc {
    width: 100%;
  }

  .why_choose_section {

    gap: 65px;
  }

  .heading_02 h2 {
    font-size: 43px;
  }

  .wy_choose_out {

    gap: 45px;
  }

  .wy_choose_blog {
    width: calc(50% - 22.5px);
  }

  .wy_choose_out:nth-child(even) .wy_choose_blog:nth-child(odd) .wy_choose_ctc {

    padding: 70px 20px 50px 0;
  }

  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {

    padding: 70px 0px 50px 20px;
  }

  .our_course_section {
    padding: 80px 0;
  }

  .pricing_box_outer {


    min-width: 280px;
  }

  .pricing_container {

    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    margin: 0 -20px;
    padding-left: 8px;
    justify-content: left;
  }


  /* width */
  .pricing_container::-webkit-scrollbar {
    width: 10px;
    height: 5px;
  }

  /* Track */
  .pricing_container::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  /* Handle */
  .pricing_container::-webkit-scrollbar-thumb {
    background: var(--color_deep_sky_blue);
    border-radius: 10px;
  }

  /* Handle on hover */
  .pricing_container::-webkit-scrollbar-thumb:hover {
    background: var(--color_deep_sky_blue);
  }

  .pricing_box_title.heading_03 h3 {

    font-size: 19px;
  }

  .pricing_box_title.sub_pricing_til.heading_03 h3 {
    font-size: 17px;

  }

  .pricing_box_cat {
    width: 100px;
    padding: 30px;
    height: 100px;
  }

  .pricing_box_pricing.paragraph_pra p>span {
    font-size: 24px;
  }






  .box_pricing_list .list_wph_ctc ul li::before {
    top: 5px;
    width: 14px;
    height: 14px;
  }

  .box_pricing_list .list_wph_ctc ul li {
    font-size: 15px;
    padding-left: 21px;
  }

  .pricing_box_btn .site_button>span {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .our_services_section {
    padding: 0 0 80px;
  }

  .abt_link_row {

    margin-top: 35px;
  }

  .ab_services_link {
    font-size: 18px;
  }

  .get_started_content.heading_03 h3 {
    font-size: 25px;
  }

  .works_started_icon {

    margin-bottom: 30px;
  }

  .get_started_btn {

    margin-top: 50px;
  }

  .our_testimonials_section {
    padding: 80px 0;
    background-size: cover;
  }




  .our_tls_arrow_next::after,
  .our_tls_arrow_prev::after {

    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;

    background-size: 25px;
  }

  .img_user_title_sl {
    width: 100%;

  }

  .tls_swiper_content {
    padding: 30px 30px 30px 25px;
  }

  .our_tls_arrow_prev {
    right: 100px;
  }

  .faq_sec {
    padding: 80px 0;
  }

  .faq_pg_sec::before,
  .faq_pg_sec::after,
  .faq_sec::after,
  .faq_sec::before {

    width: 70px;
    height: 205px;
  }


  .f__top_info {

    padding: 50px 40px;
  }

  .f__top_info_outer:after,
  .f__top_info:after {

    width: 75px;
    height: 73px;
  }

  .f__top_info__text.heading_02 h2 {

    font-size: 36px;
  }



  .footer__content {

    padding: 80px 0;
  }

  .footer__branding {
    width: 270px;

    margin-right: 50px;
  }

  .footer__logo img {
    max-width: 212px;
  }

  .footer__heading {

    font-size: 18px;

    margin-bottom: 14px;
  }

  .footer__links {

    gap: 30px;

    width: calc(100% - 270px);
  }

  .footer__column {
    width: calc(33.33% - 10px);
  }

  .footer__column:first-child {
    width: calc(22% - 24px);
  }

  .footer__column:last-child {
    width: calc(42% - 10px);
  }

  .f__top_info__info a {
    font-size: 20px;
  }

  .get_started_sec {
    padding: 0px 0 80px;
  }






  /* .sticky_header_inner .header_img_sec {
    width: 50%;
  } */

  .sticky_header_inner {
    padding: 15px 0 15px;
  }

  .sticky_header_inner .header_img_sec a {
    max-width: 162px;
  }

  .error_pg_sec::before {
    bottom: 0;
    width: 70px;
    height: 205px;
  }

  .error_pg_sec::after {
    top: 0;
    width: 70px;
    height: 205px;
  }

  .error_pg_sec {
    background-position: left 0;
  }

  .page_title_section_text .txt_inn h1 {
    font-size: 48px;
  }

  .faq_pg_sec {
    padding: 50px 0 80px;
  }

  .form_field {
    padding: 0 10px;
  }

  .form_field_full {
    margin: 0 -10px;
  }

  .fm_input.textarea_src {
    height: 115px;
  }
  .nav-menu>li{margin: 0 6px;}
  .header_btn_sec{width: 25%;}
  .header_menu_sec {width: 60%;}
}

@media screen and (max-width: 992px) {
  .menu_expand {
    display: inline-block;
  }

  .nav_menu_container {
    display: block;
    position: fixed;
    top: 0;
    left: -220px;
    bottom: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    text-align: left;
    margin-right: 0px;
    background: #ffffff;
    width: 100%;
    padding: 20px 20px 45px 0;
    max-width: 600px;
  }

  .nav_menu_container.state-active {
    clear: both;
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header_sec.active .nav_menu_container {
    padding: 0;
  }

  .header_img_sec {
    width: 50%;
    order: 1;
  }

  .header_img_sec a {
    max-width: 180px;
  }

  .header_btn_sec {
    width: 50%;
    order: 2;
  }

  .haeder_mobile_menu_top {
    display: inline-block;
    width: 100%;
    padding-left: 20px;
  }

  .expand_plus,
  .cross_button {
    display: block;
  }

  .nav-menu {
    padding: 50px 0 20px;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-menu .sub-menu li:hover>a {
    background: none;
  }

  .nav-menu .sub-menu li {
    border: none;
  }

  .nav-menu .sub-menu>.menu-item-has-children>a::before,
  .nav-menu>.menu-item-has-children>a::before,
  .nav-menu>li>a:after {
    display: none;
  }

  .nav-menu>li.current-menu-item>a,
  .nav-menu .sub-menu li a,
  .nav-menu>li>a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.2em;
  }

  .nav-menu .sub-menu li ul,
  .nav-menu .sub-menu {
    padding-left: 20px;
    width: auto;
    position: relative;
    display: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    left: 0;
    transform: translate(0, 0);
    top: 0;
    transition: none;
  }

  .header_mobile_menu {
    display: flex;
  }

  .header_btn_sec {
    gap: 25px;
  }

  .header_sec {
    padding: 20px 0 20px;

  }

  .header_mobile_logo {

    padding-top: 5px;
  }
  .content_top_entry h1 {
    font-size: 48px;
  }

  .content_top_entry {
    padding: 20px 0;
    max-width: 600px;
  }

  .content_top_entry p {
    font-size: 20px;
  }

  .banner_btn {
    margin-top: 25px;
  }

  .banner_image_ab>img,
  .banner_section {
    min-height: 435px;
  }


  .empowering_ai_section {
    padding: 70px 0;
  }

  .powering_ai_content.paragraph_pra p {
    line-height: 1.3;
    font-size: 22px;
  }


  .wy_choose_blog {
    width: 100%;
  }

  .wy_choose_out {
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
    gap: 30px
  }

  .wy_choose_img img {

    height: auto;
  }

  .why_choose_section {
    gap: 60px;
    padding: 70px 0 50px;
  }

  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {
    padding: 0;
  }

  .heading_02 h2 {
    font-size: 38px;
  }


  .wy_choose_out:nth-child(even) .wy_choose_blog:nth-child(odd) .wy_choose_ctc {
    padding: 0;
  }

  .wy_choose_out:nth-child(even) {
    flex-direction: column-reverse;

  }

  .wy_choose_out:nth-child(even)::after {

    right: -10%;
    top: auto;
    bottom: 101px;
    width: 90px;
    height: 207px;
  }


  .our_course_section {
    padding: 0px 0 50px;
  }

  .heading_03 h3 {
    font-size: 18px;
  }




  .cre_swiper_content .heading_03 {
    padding-top: 15px;
  }

  .our_course_sl {

    padding-bottom: 60px;
  }

  .our_service_title.paragraph_pra p br {
    display: none;
  }

  .pricing_box_cat {
    width: 90px;
    padding: 25px;
    height: 90px;
  }

  .pricing_box_details {
    padding: 20px 0px 0px;
  }

  .pricing_box_title.heading_03 h3 {
    font-size: 18px;
  }

  .pricing_box_contant p,
  .pricing_box_pricing.paragraph_pra p {
    font-size: 15px;
  }

  .pricing_box_contant {
    padding: 0px 0 20px;
  }

  .pricing_box_pricing.paragraph_pra p>span {
    font-size: 27px;
  }

  .pricing_box_pricing {

    padding-bottom: 12px;
    /* max-width: 190px; */
  }

  .pricing_box {

    padding: 25px 15px 25px;
  }

  .our_services_section {
    padding: 0 0 70px;
  }

  .get_started_container {

    gap: 40px 30px;
  }

  .get_started_content.heading_03 h3 {
    font-size: 22px;
  }


  .works_started_icon {
    margin-bottom: 25px;
    width: 70px;
    height: 73px;
    padding: 17px;
    margin-left: 45px;
  }

  .get_started_box {
    width: calc(33.33% - 20px);
  }

  .our_testimonials_section {
    padding: 70px 0;

  }

  .our_tls_title {
    padding-bottom: 20px;
  }

  .get_started_sec {
    padding: 0px 0 70px;
  }



  .our_tls_arrow_next::after,
  .our_tls_arrow_prev::after {

    padding: 11px;

    background-size: 22px;
  }

  .our_tls_arrow_prev {
    right: 85px;
  }

  .our_tls_arrow_next,
  .our_tls_arrow_prev {
    top: -45px;
  }

  .img_user_title_ft {
    margin-top: 0;
  }

  .img_user_title_ft h5 {
    font-size: 18px;
  }

  .testimonials_reviews img {
    max-width: 24px;
  }

  .testimonials_reviews {
    margin-bottom: 17px;
  }

  .tls_swiper_content {
    padding: 25px;
  }

  .faq_sec {
    padding: 70px 0;
  }

  .faq_inner_title {
    margin-bottom: 15px;
  }

  .faq_pg_sec::before,
  .faq_pg_sec::after,
  .faq_sec::after,
  .faq_sec::before {
    width: 60px;
    height: 197px;
  }

  .faq_btn {

    margin-top: 35px;
  }

  .f__top_info {
    padding: 50px 0;
  }

  .f__top_info_outer:after,
  .f__top_info:after {
    width: 50px;
    height: 50px;
  }

  .f__top_info__text.heading_02 h2 {
    font-size: 31px;
  }

  .f__top_info__label {
    font-size: 15px;


  }

  .f__top_info__info a {
    font-size: 18px;
  }

  .f__top_info__icon {

    padding: 16px;

    width: 55px;
    height: 55px;
  }

  .footer__content {
    padding: 70px 0 35px;
  }

  .footer__column {
    width: calc(50% - 20px);
  }

  .footer__column:first-child {
    width: calc(40% - 10px);
  }

  .footer__column:nth-child(2) {
    width: calc(60% - 20px);
  }

  .footer__column:last-child {
    width: 100% !important;
  }

  .footer__bottom_bar {
    padding: 12px 0;
  }


  .nav-menu>li.current-menu-item>a,
  .nav-menu .sub-menu li a,
  .nav-menu>li>a {

    font-size: 16px;

  }

  .header_img_sec a {
    max-width: 160px;
  }


  .sticky_header_inner {
    padding: 12px 0 12px;
  }

  .sticky_header_inner .header_img_sec a {
    max-width: 140px;
  }

  .page_title_section img {
    min-height: 220px;
    object-fit: cover;
    max-height: 220px;
  }

  .fm_input {

    font-size: 17px;

  }

  .faq_sub_title.paragraph_pra p {
    font-size: 20px;
  }

  .faq_sub_title.paragraph_pra {
    max-width: 645px;
    padding-bottom: 20px;
  }
  .course_reg_form_title h3{font-size: 20px;}
  .course_reg_form h4{font-size: 18px;}
  .course_reg_sec{padding: 80px 0 60px;}
.course_recommendation_form_sec .form_field{width: 100%;}
.course_recommendation_form_sec .fm_input{padding: 12px 0px;font-size: 16px;}
.our_course_btn{padding: 30px 0 10px 0px;}
.course_pg_left_inner{width:100%;}
	 .course_pg_left{width:40%;}
	 .course_pg_right{width:60%;}
   .course_pg_cat_title h2{font-size: 28px;}
   .course_pg_sec {padding: 50px 0 50px;}
   .common_banner_content{margin: 8px auto 0;}
   .our_team_sec{padding: 70px 0;}
   .our_team_inner{margin: 0 -15px;row-gap: 30px;}
   .our_team_box{width: calc(50% - 30px);margin: 0 15px;}
}


@media screen and (max-width: 767px) {
  .header_btn {
    display: none;
  }

  .haeder_mobile_menu_bottom {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
  }

  .header_sec {
    padding: 18px 0 18px;
  }

  .sticky_header_inner .header_img_sec a {
    max-width: 188px;
  }

  .header_img_sec a {
    max-width: 150px;
  }

  .content_top_entry h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .content_top_entry p {
    font-size: 18px;
    line-height: 1.4;
  }

  .banner_section_inner>.wrapper {
    padding: 50px 20px;
  }

  .banner_image_ab>img,
  .banner_section {
    min-height: 400px;
  }

  .powering_ai_content.paragraph_pra p {
    line-height: 1.4;
    font-size: 20px;
  }

  .heading_02 h2 {
    font-size: 32px;

    margin-bottom: 10px;
  }

  .list_wph_ctc h3 {
    font-size: 18px;
  }

  .list_wph_ctc ul li::before {

    top: 3px;
    width: 18px;
    height: 16px;
  }

  .list_wph_ctc ul li {
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
  }

  .classroom_list_wt {

    margin-top: 0;
  }

  .our_course_sl {
    padding-bottom: 50px;
  }

  .our_course_title,
  .our_service_title {
    padding-bottom: 20px;
  }

  .our_services_out::after,
  .our_services_out::before {
    width: 70px;
    height: 90px;
  }

  .pricing_box_cat {
    width: 80px;
    padding: 23px;
    height: 80px;
  }

  .get_started_container {
    gap: 40px 25px;
  }

  .get_started_box {
    width: calc(50% - 12.5px);
  }

  .get_started_content.heading_03 h3 {
    font-size: 20px;
  }

  .get_started_btn {
    margin-top: 35px;
  }

  .works_started_icon {
    margin-bottom: 20px;
    width: 60px;
    height: 63px;
    padding: 13px;
    margin-left: 0;
  }

  .get_started_title {

    margin-bottom: 30px;
  }

  .our_tls_arrow_next::after,
  .our_tls_arrow_prev::after {
    padding: 9px;
    background-size: 20px;
  }

  .our_tls_arrow_next,
  .our_tls_arrow_prev {
    top: -25px;
  }

  .our_tls_arrow_prev {
    right: 80px;
  }

  .tls_swiper_content {
    padding: 20px;
  }

  .faq_pg_sec::before,
  .faq_pg_sec::after,
  .faq_sec::after,
  .faq_sec::before {
    display: none;
  }

  .faq_box {

    padding: 0px 0 0px 20px;
  }

  .site_button {
    min-width: 132px;
    padding: 2px 2px 2px 18px;
  }

  .f__top_info__text.heading_02 h2 {
    font-size: 26px;
  }

  .f__top_info__item_content {
    width: calc(100% - 70px);
  }

  .f__top_info .f__top_info__content,
  .footer__content {
    flex-wrap: wrap;
  }

  .f__top_info__text,
  .f__top_info__contact {
    width: 100%;
  }

  .footer__branding,
  .footer__links {
    width: 100%;

  }

  .footer__branding {
    margin-right: 0px;
    padding: 0;
  }

  .footer__content {
    gap: 30px;
  }

  .ft_logo_ctc {
    margin-top: 22px;
  }

  .footer__logo img {
    max-width: 185px;
  }

  .pricing_box_btn .site_button {
    font-size: 15px;
    padding: 2px 2px 2px 15px;
  }

  .pricing_box_btn .site_button>span {
    width: 32px;
    height: 32px;
    padding: 9px;
    min-width: 32px;
  }

  .ab_services_link {
    font-size: 16px;
  }

  .abt_link_row {
    margin-top: 30px;
  }

  .paragraph_pra p {

    line-height: 1.4;
  }

  .page_title_section img {
    min-height: 160px;
    max-height: 160px;
  }

  .search_part_content h2 a {
    font-size: 16px;
  }

  .error_page_content h1 {
    font-size: 26px;
  }

  .error_page_content h2 {
    font-size: 38px;
  }

  .page_title_section_text .txt_inn h1 {
    font-size: 40px;
  }

  .faq_pg_sec {
    padding: 35px 0 60px;
  }
  .course_reg_sec{padding: 50px 0 40px;}
  .course_reg_form_sec{padding: 30px 20px 15px;}
  .course_reg_form_box{margin-bottom: 10px;row-gap: 10px;}
  .course_reg_form_title h3{margin-bottom: 0;}
  .course_reg_form_sec label,
  .course_reg_form h4 {font-size: 16px;}
  .course_recommendation_form_sec .form_field{width: 50%;}
  .our_course_swiper_next{right: calc(50% - 55px);} 
  .our_course_swiper_prev{left: calc(50% - 55px);}
  .our_course_btn {padding: 25px 0 0px 0px;}

  .course_pg_left{width:100%;margin-bottom:30px;padding-right:0;}
	 .course_pg_right{width:100%;}
	 .course_pg_left_title h3{
	     cursor: pointer;
        background: var(--sky_light);
        padding: 20px 20px 20px 20px;
        border: none;
	 }
	 .course_pg_left_title h3{border-bottom: 1px solid #d5ddc4;}
	 .course_bg_cat_mobile .course_pg_left_title h3:after{display:inline-block;}
	 .course_bg_cat_mobile .course_pg_cat_list{display:none;padding: 10px 20px;}
	 .course_pg_sec {padding: 40px 0 30px;}
	 .course_pg_left_title h3{font-size: 21px;}
	 .course_pg_no_course_post{font-size: 22px;}
   .course_pg_cat_title h2 {font-size: 24px;margin: 10px 0 25px;}
   .course_pg_box_title h3{font-size: 20px;}
   .pricing_box_pricing.paragraph_pra p>.from_content_text {top: -4px; font-size: 15px;}
   .common_banner_content p{font-size: 16px;}
   .course_pg_content p{font-size: 16px;}
   .course_pg_content{margin-bottom: 50px;}
   .our_team_sec{padding: 45px 0;}
   .our_team_inner{margin: 0;row-gap: 30px;}
   .our_team_box{width: 100%;margin: 0;}
   .our_team_box_name h2{font-size: 18px;}
}


@media screen and (max-width: 479px) {
  .header_mobile_logo {
    max-width: 38%;
  }

  .nav-menu {
    padding: 35px 0 20px;
  }

  .header_img_sec {
    width: 62%;
  }

  .sticky_header_inner .header_img_sec {
    width: 50%;
  }
  .header_btn_sec {
    width: 38%;
  }

  .content_top_entry h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .banner_btn {
    margin-top: 10px;
  }

  .banner_image_ab>img,
  .banner_section {
    min-height: 345px;
  }

  .content_top_entry {
    padding: 0 0;

  }

  .empowering_ai_section {
    padding: 60px 0;
  }

  .powering_ai_content.paragraph_pra p {

    font-size: 18px;
  }


  .wy_choose_out {

    width: 100%;
    padding: 0 20px;

    gap: 20px;
  }

  .why_choose_section {
    gap: 50px;
    padding: 60px 0;
  }

  .heading_02 h2 {
    font-size: 30px;

  }

  .wy_choose_out:nth-child(even)::after {
    display: none;
  }

  .our_course_section {
    padding: 0px 0 60px;
  }

  .pricing_box_pricing.paragraph_pra p>span {
    font-size: 25px;
  }

  .our_services_section {
    padding: 0 0 60px;
  }

  .get_started_box {
    width: 100%;
  }

  .get_started_sec {
    padding: 0px 0 60px;
  }

  .our_testimonials_section {
    padding: 60px 0;
  }

  .our_tls_title>.heading_02 {
    max-width: 100%;
  }

  .our_tls_arrow_next,
  .our_tls_arrow_prev {
    top: 20px;
  }

  .our_tls_arrow_next::after,
  .our_tls_arrow_prev::after {
    padding: 8px;
    background-size: 18px;
  }

  .our_tls_title {
    padding-bottom: 60px;
  }

  .tls_swiper_content {
    padding: 18px;
  }

  .testimonials_reviews {
    margin-bottom: 15px;
  }

  .img_user_title_sl.paragraph_pra p {

    font-size: 15px;
  }

  .faq_sec {
    padding: 60px 0;
  }

  .faq_box {
    padding: 0;
  }

  .faq_box_title {

    padding: 16px 32px 16px 0;
  }

  .faq_box_title::after,
  .faq_box.active .faq_box_title::after {

    right: 10px;
  }

  .faq_box_content {

    padding: 0 36px 20px 0;

  }

  .faq_btn {
    margin-top: 30px;
  }


  .f__top_info__icon {
    padding: 15px;
    width: 50px;
    height: 50px;
  }

  .f__top_info__item_content {
    width: calc(100% - 61px);
  }

  .footer__content {
    padding: 60px 0 25px;
  }

  .footer__column {
    width: 100% !important;
  }


  .footer__content {
    gap: 25px;
  }

  .footer__bottom_bar {
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column-reverse;
  }

  .footer__bottom_bar p {

    line-height: 1.5;
  }

  .footer__bottom,
  .social_links_ft {
    width: 100%;
  }

  .footer__links {
    gap: 25px;
  }

  .footer__heading {

    margin-bottom: 13px;
  }

  .footer__logo img {
    max-width: 172px;
  }

  .site_button>span {
    width: 37px;
    height: 37px;
    min-width: 37px;
    padding: 10px;
  }

  .site_button {
    min-width: 125px;
    padding: 2px 2px 2px 16px;
  }

  .sticky_header_inner .header_btn_sec {
    width: 50%;
  }

  .menu_expand i:nth-child(2) {
    margin: 8px 0;
  }

  .banner_btn .site_button {


    max-width: 270px;
  }

  .search_part_content .no-results .search-form {
    width: 100%;
  }

  .search_part_content .page-title {
    font-size: 28px;
  }

  .error_pg_sec {
    padding: 45px 0 60px;
    text-align: center;
  }

  .error_pg_inner {
    flex-direction: column-reverse;
  }

  .error_pg_left {
    width: 100%;
  }

  .error_pg_right {
    width: 90%;
  }

  .page_title_section_text .txt_inn h1 {
    font-size: 30px;
  }

  .form_field_btn {
    padding-top: 16px;
  }

  .pricing_box_pricing {

    /* max-width: 197px; */
  }

  .faq_sub_title.paragraph_pra p {
    font-size: 18px;
  }

  .faq_sub_title.paragraph_pra {

    padding-bottom: 7px;
  }
  .course_reg_form_sec textarea, .course_reg_form_sec input{padding: 12px 15px;}
  .course_recommendation_form_sec .form_field{width: 100%;}
}