@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  --theme: #2F2E7D;
  --base: #ADAFB2;
  --transition: .3s ease-in-out 0s;
  /*background: #F9F9F9 !important;*/
  overflow-x: hidden;
  /*background: rgba(230, 230, 230, 0.29) !important;*/
}

.inter {
  font-family: 'Inter', sans-serif;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1260px !important;
  }
}


.col-column {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
}

.light-m {
  font-family: "IBM Plex Serif", system-ui;
  font-weight: 300;
  font-style: normal;
}

.regular-m {
  font-family: "IBM Plex Serif", system-ui;
  font-weight: 300;
  font-style: normal;
}

.medium-m {
  font-family: "IBM Plex Serif", system-ui;
  font-weight: 300;
  font-style: normal;
}

.semibold-m {
  font-family: "IBM Plex Serif", system-ui;
  font-weight: 200;
  font-style: normal;
}

.bold-m {
  font-family: "IBM Plex Serif", system-ui;
  font-weight: 700;
  font-style: normal;
}




.regular {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
}

.semi {
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.med {
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.bold {
  /*font-weight: bold;*/
  font-family: 'Inter', sans-serif;
}

p {
  margin-bottom: 0 !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
}

ul li {
  list-style-type: none;
}

.top_left {
  display: flex;
  align-items: center;
  height: 100%;
}

.top_bar {
  padding: 8px;
  background: #F8F8F8;
}

.top_f_flex {
  display: flex;
  column-gap: 17px;
  align-items: center;
}

.top_block {
  display: flex;
  column-gap: 8px;
  align-items: center;
}

.top_text p {
  font-size: 16px;
  line-height: 19px;
  color: #404041;
}

.follow_text {
  font-size: 16px;
  line-height: 19px;
  color: #ADAFB2;
}

.top_rigt ul li a {

  line-height: 32px;
  color: #404041;
  /*background: var(--theme);*/
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.top_rigt ul li a:hover {
  background: #ADAFB2;
}

.top_rigt ul li {
  display: inline-block;
  margin-left: 8px;
  margin-right: 15px;
}

.top_rigt {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media screen and (min-width: 992px) {
  .mobile_nav__toggler {
    display: none;
  }
}

.navigation {
  padding: 12px 0;
  background: #fff;
  transition: .5s;
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  transition: .5s;
  width: 100%;
}

.top_icon svg {
  /*width: 18px;*/
  /*height: 18px;*/
}

.d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu_list {
  /*display: flex;*/
  /*padding-left: 68px !important;*/
}

.menu_list>li {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.logo {
  float: left;
}

.main_menu_nav {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
}

.menu_list li a {
  color: #404041;
  display: block;
  align-items: center;
  position: relative;
  transition: all .5s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 12px;
  font-size: 16px;
  line-height: 20px;
  transition: .3s ease-in-out 0s;
}

.menu_list li.active a::before {
  background: var(--theme);
  opacity: 1;
}

.menu_list li.active a {
  color: var(--theme);
  /*font-weight: 600;*/
}

.menu_list li a:hover {
  /*font-weight: 600;*/
  color: var(--theme);
}

.menu_list li a::before {
  content: '';
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: var(--theme);
  border-radius: 0;
  opacity: 0;
  transition: .5s ease-in-out 0s;
}

.menu_list li:hover a::before {
  opacity: 1;
}

.menu_list li ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  flex-direction: colum;
  justify-content: flex-start;
  align-items: flex-start;
  transition: .5s ease;
  z-index: 99;
  box-shadow: 0 0 65px 0 rgb(0 0 0 / 10%);
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.menu_list li ul.submenu li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  transition: .5s ease;
}

.menu_list li ul.submenu li a {
  font-size: 16px;
  line-height: 30px;
  display: flex;
  padding: 10px 20px;
  transition: .5s;
  color: #000;
  display: block;
}

.menu_list li:hover ul.submenu {
  opacity: 1;
  visibility: visible;
}

.menu_icon_line {
  width: 19.4px;
  height: 1.5px;
  background: #636363;

}

.menu_icon {
  margin-left: 26px;
  cursor: pointer;
}

.icon_menu {
  cursor: pointer;
}

.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  /*min-height: 730px;*/
  /*max-height: 730px;*/
  transform: translate3d(0px, 0, 0);
  transition-property: transform;
  /*overflow: hidden;*/
}

.swiper-slide-active .image_layer {
  transform: scale(1.1);
}

/*.image_layer  
{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}*/
@media screen and (min-width: 769px) {
  .image_layer {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: left center !important;
    z-index: 1;
  }
}

.image_layer img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.swiper-container .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.swiper-container .swiper-wrapper .swiper-slide .slider_content {
  /*position: absolute;
  top: 50%;
  color: #ffffff;
  font-weight: bold;
  transform: translateY(-50%);
  text-align: left;*/
}

.swiper-container .swiper-wrapper .swiper-slide-active p {
  /*animation-name: fade-in;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: both;*/
}

.slider_content {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  /*height: 100%;*/

  display: flex;
  align-items: center;
}

.banner_content_text {
  /*padding-left: 46px;*/
}

.swiper-slide {
  position: relative;
}

.banner_block_title span.block_title {
  font-size: 19px;
  color: #fff;
  line-height: 25px;
  padding: 7px 24px;
  background: var(--base);
  text-transform: uppercase;
  color: #fff;
}

.no_bg {
  background: transparent !important;
}

.main_title {
  /*font-size: 120px;*/
  /*line-height: 152px;*/
  font-size: 70px;
  line-height: 80px;
  color: #fff;
  text-transform: capitalize;
}

.sub_title {
  font-size: 44px;
  line-height: 52px;
  text-transform: capitalize;
  color: #FFFFFF;
  padding-top: 8px;
  margin-bottom: 31.84px !important;
  max-width: 492px;
}

/*.image_layer::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
}*/
.frachaise {
  cursor: pointer;
  position: fixed;
  top: 40%;
  right: 0;
  background: var(--base);
  transform: rotate(-90deg) translateY(-50%);
  z-index: 9;
  border-radius: 20px 20px 0px 0px;
  transform-origin: right;
  transition: .3s;
}

.frachaise:hover {
  background: var(--theme);
}

.frachaise p {
  color: #fff;
  padding: 4px 25px;
  font-size: 18px;

}

.frachaise p svg {
  width: 35px;
  height: 35px;
  fill: #fff;
  padding-left: 5px;
}

.header_btn {
  display: flex !important;
}

.header_btn a {
  display: inline-flex !important;
  text-decoration: none;
  padding: 4px 10px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  transition: .5s ease-in-out 0s;
  text-transform: capitalize;
  font-size: 19px;
  line-height: 22px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  column-gap: 8px;
  transition: .3s;
  height: 48px;
}

.header_btn a:hover {
  background: #fff !important;
}

.rd-more {
  padding: 16px;
  font-weight: 100;
}

.icon_banner {
  width: 29px !important;
  height: 29px !important;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: .3s;
  justify-content: center;
}

.header_btn a:hover .icon_banner {
  background: var(--theme) !important;
}

.header_btn a:hover .icon_banner svg path {
  fill: #fff !important;
}

.banner_block_title {
  display: flex;
}

.swiper-pagination {
  cursor: pointer;
  bottom: 50% !important;
  right: 23px;
  left: initial !important;
  transform: translateY(-50%) rotate(90deg) !important;
  width: auto !important;
}

.swiper-pagination-bullet {
  opacity: .4;
  width: 10px !important;
  background: #fff !important;
  height: 10px !important;
  margin-right: 12px !important;
  /*margin: 5px !;*/
  border-radius: 50% !important;
}

.swiper-pagination-bullet.active {
  opacity: 1 !important;
}

.feature_box {
  display: flex;
  align-items: center;
  column-gap: 19px;
  /*width: 1.5px; */
  /*height: 100%;*/
  border-right: 1.5px solid #f2f2f2;
  /*background: #F2F2F2;*/
}

.feature_content h3 {
  font-size: 20px;
  line-height: 24px;
  color: #636363;
  padding-bottom: 6px;
  margin-bottom: 0;
}

.feature_content p {
  line-height: 23px;
  font-size: 14px;
  color: #686565;
  padding-bottom: 9px;
  max-width: 261px;
}

.learn_mr {
  font-size: 15px;
  line-height: 22px;
  text-decoration: none;
  color: #686565;
}

.feature_container_box {
  padding: 37px 42px 39.25px;
  background: #fff;
  box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.04);
}

.features {
  /*margin-top: -91px;*/
  z-index: 999;
  position: relative;
  /*background: rgba(230, 230, 230, 0.29);*/
}

.ml-31 {
  margin-left: 31px;
}

.about {
  padding: 123px 0 97px;
}

.about_image {
  width: 507.65px;
  height: 570.7px;
  border-radius: 253.824px 246px 0px 0px;
  position: relative;
}

.about_image::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -10px;
  width: 507.65px;
  background: #fff;
  border-radius: 253.824px 246px 0px 0px;
  height: 570.7px;
  z-index: -1;
}

.indicator p {
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  padding: 5.88px 14.12px;
  background: var(--base);
  display: inline-block;
  margin-bottom: 13px !important;
}

.about_description h1.abt_heading,
.about_description h2.abt_heading {
  font-size: 30px;
  line-height: 60px;
  color: #404041;
  margin-bottom: 4px !important;
}

.about_description p {
  font-size: 16px;
  line-height: 30px;
  color: #404041;
}

.about_mision {
  margin-top: 22px;
}

.mis_icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--base);
  border-radius: 15px 15px 0px 15px;
}

.mis_block {
  display: flex;
  column-gap: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0 !important;
}

.mis_content h5 {
  font-size: 17px;
  line-height: 20px;
  color: #636363;
  padding-bottom: 5px;
}

.mis_content p {
  font-size: 14px;
  line-height: 26px;
  color: #686565;
}

.vis_icon {
  background: var(--theme);
}

.counter_section {
  /*  padding: 38px 43px;*/
  background: #fff;
  /*  max-width: 610px;*/
  /*  margin-left: -105px;*/
  margin-top: 40px;
  position: relative;
}

.counter_box,
.abt_inner_desc .counter_flex .counter_box p {
  text-align: center;
}

.counter_box h1 {
  font-size: 40px;
  line-height: 40px;
  color: var(--theme);
}

.counter_box p {
  font-size: 16px;
  line-height: 20px;
  color: #404041;
}


.counter_flex {
  display: flex;
  column-gap: 46px;
  justify-content: space-between;
}

.about_content {
  padding-left: 30px;
}

.enquiry {
  /*padding: 82px;*/
  background: url('../images/shaded.png');
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.enquiry::before {
  /*content: '';*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 168, 155, 0.77);
}

.prelative {
  position: relative;
  z-index: 9;
}

/*.enquiry_left p
{
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.12em;
  color: #fff;
  padding-bottom: 9.2px;
}*/
.enquiry_left h1 {
  font-size: 53px;
  line-height: 66px;
  color: #fff;
}

.play_icon {
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 99;
  cursor: pointer;
}

.play_icon:hover {
  /*background: red;*/
}

/*.play_icon::after  
{
  content: '';
  position: absolute;
  top: -5.64px;
  left: -5.64px;
  width: 57px;
  height: 57px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
}
.play_icon::before  
{
  content: '';
  position: absolute;
  top: -11.41px;
  left: -11.41px;
  width: 67.81px;
  height: 67.81px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
}*/
.video_play {
  display: flex;
  column-gap: 24px;
  align-items: center;
}

.play_details p {
  font-size: 17px;
  color: #fff;
  line-height: 20px;
  letter-spacing: 0;
}

.video_play {
  margin-top: 46px;
}

img {
  /*width: 100%;*/
}

.enquiry_form img {
  width: 100%;
}

.enquiry_form {
  /*padding: 52px 30px 44px;*/
  background: #fff;
}

.form_heading h3 {
  font-size: 25px;
  line-height: 30px;
  color: #636363;
  padding-bottom: 9px;
}

.form_heading p {
  font-size: 14px;
  line-height: 26px;
  color: #686565;
}

.form_heading {
  padding-bottom: 40px;
}

.enquiry_form input,
.enquiry_form select {
  height: 53px;
  border: none;
  background: #f3f3f3;
  margin-bottom: 18px;
  border-radius: 0 !important;
  color: #B9A7A7;
}

.enquiry_form ::placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #B9A7A7 !important;
}

.enquiry_form textarea {
  height: 110px;
  border: none;
  background: #f3f3f3;
  margin-bottom: 18px;
  border-radius: 0 !important;
  color: #B9A7A7;
  padding: 19px 18px;
}

.enq_sbmt {
  display: block;
  padding: 18.5px 20px;
  background: var(--theme);
  font-size: 16px;
  width: 100%;
  color: #fff;
  transition: .5s;
  border: none;
}

.cont_button {
  background: var(--theme) !important;
}

.enq_sbmt:hover {
  background: var(--theme);
}

.enquiry_form {
  position: relative;
  top: 87px;
  box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.04);
}

.dc_flex {
  display: flex;
  align-items: center;
}

.courses {
  padding: 63px 0 63px;
  background: rgba(229, 229, 229, 0.29);
}

.heading_crs {
  text-align: center;
  padding-bottom: 53px;
}

.heading_crs p {
  font-size: 19px;
  line-height: 22px;
  color: var(--base);
  padding-bottom: 5px;
}

.heading_crs h1 {
  font-size: 48px;
  line-height: 60px;
  color: #636363;
}

.course_item {
  padding: 25px;
  border-radius: 0 !important;
  border: 1px solid #F5F5F5 !important;
  background: #FFFFFF;
  transition: .3s ease-in-out 0s;
  cursor: pointer;
  margin-bottom: 36px;
}

.course_item:hover {
  box-shadow: 0px 30px 50px rgba(26, 31, 35, 0.07);
  border: none;
}

.course_item .card-header {
  border-bottom: 0;
}

.course_item .card-header img {
  width: 100%;
}

.course_item .card-body {
  background: transparent;
  position: relative;
  padding: 0 5px;
}

.crs_icon {
  position: absolute;
  top: -33px;
  right: 25px;
  width: 67px;
  height: 67px;
  background: var(--base);
  box-shadow: 0px 14px 18px rgba(239, 82, 70, 0.22);
  border-radius: 15px;
  line-height: 67px;
  text-align: center;
}

/*.course_detail
{
  padding: 56px 0 00px;
}*/
.course_detail h3 {
  font-size: 22px;
  line-height: 26px;

  color: #636363;
  padding-bottom: 9px;
}

.course_detail p {
  font-size: 16px;
  line-height: 30px;
  color: #686565;
}

.learn_more a {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  line-height: 22px;
  display: block;
  color: var(--theme);
}

.learn_more {
  padding-top: 13.5px;
  text-align: right;
  margin-top: 20px;
  border-top: 2px solid rgba(225, 225, 225, 0.45);
  ;
}


.discover_column h1 {
  font-size: 49px;
  line-height: 69px;
  color: #fff;
  padding-bottom: 15px;
  max-width: 566px;
}

.clr {
  color: var(--theme);
}

.discover_column p {
  font-size: 17px;
  line-height: 29px;
  max-width: 562px;
  color: #AAAAAA;
}

.appoinment_btn {
  margin-top: 18.25px;
}

.appoinment_btn a {
  padding: 17.5px 27.46px;
  background: var(--base);
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  display: inline-block;
  border: none;
  text-decoration: none;
  transition: .5s;
}

.discover_column {
  border-right: 2.5px solid rgba(255, 255, 255, 0.17);
  ;
}

.auth_image {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  overflow: hidden;
}

.auth_details h3 {
  font-size: 22px;
  color: var(--theme);
  line-height: 26px;
}

.auth_details p {
  font-size: 17px;
  line-height: 20px;
  color: #AAAAAA;
}

.client_author {
  display: flex;
  column-gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.client_says p {
  font-size: 17px;
  line-height: 39px;
  color: #686565;
}

.testimonial_box {
  position: relative;
  padding-left: 39px;
  padding-top: 63px;
  padding-bottom: 38px;
  padding-right: 41px;
}

.quote {
  position: absolute;
  top: 0;
  right: 0;
}

.client {
  padding: 71px 0 70px;
  background: #fff !important;
}

.client .heading_crs {
  padding-bottom: 66px;
}

footer {
  padding: 84px 0 47px;
  background-color: #404041;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.footer-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer_address {
  padding-top: 31px;
}

.footer_address ul li {
  color: #cacaca;
  margin-bottom: 0;
  word-wrap: break-word;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.74;
  padding-bottom: 10px;
}

.footer_col h3 {
  color: #f7f7f7;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 21px !important;
}

.footer_menu ul li a {
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #cacaca;
  padding-bottom: 15px;
  transition: .3s;
  display: block;
}

.footer_copy p {
  font-size: 15px;
}

.footer_btn a {
  display: block;
  background: var(--theme);
  padding: 0 36px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  height: 56px;
  line-height: 56px;
  border-width: 0;
  border-radius: 5px;
}

.chat_btn {
  background: var(--base) !important;
  margin-top: 15px;
}

.d_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list li {
  display: inline-block;
}

.list {
  float: right;
}

.list a {
  font-size: 18px;
  display: block;
  text-align: center;
  height: 48px;
  width: 48px;
  background: transparent;
  color: #696969;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  position: relative;
  line-height: 44px;
  margin-left: 20px;
  transition: .3s;
  color: #cacaca;
}

.footer_copy {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer_copy p {
  color: #cacaca;
}

.f_last_row {
  padding-top: 50px;
}

.inner_header {
  padding: 10% 0 10%;
  position: relative;
  /*background-image: url(https://www.heraldsinternational.in/wp-content/themes/mitech/assets/images/title-bar-01-bg.jpg);*/
  background-color: #f6f2ed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.inner_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}

.inner_heading {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: space-between;
}

.inner_heading h1 {
  color: #fff;
  font-size: 48px;
}

.bread_crumb {

  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  height: 50px;
}

.bread_crumb ol {
  column-gap: 10px;
}

.breadcrumb {
  margin-bottom: 0 !important;
}

.breadcrumb li {
  color: #fff !important;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}

/*.btn::before
{
  position: absolute;
  content: '';
  background-color: var(--base);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  z-index: -1;
}*/
/*.btn::after
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -1;
}*/
/*.header_btn:hover .btn::before
{
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn:hover
{
  color: #fff !important;
}*/
/*.btn:hover::after
{
  transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}*/
.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about_container {
  /*  padding: 213px 0 40px;*/
  background: url('../images/about-bg.jpg');
}

.inner_page_mision .mis_block {
  display: block;
}

.inner_page_mision .mis_icon {
  width: 120px;
  height: 120px;
  text-align: center;
  background: var(--base);
  border-radius: 45px 45px 0px 45px;
  line-height: 120px;
}

.inner_page_mision .mis_icon svg {
  width: 100px;
  height: 100px;
}

.inner_page_mision .mis_content h5 {
  font-size: 25px;
  line-height: 25px;
}

.inner_page_mision .mis_content {
  padding-top: 30px;
}

.inner_page_mision .mis_content p {
  font-size: 16px;
  padding-top: 10px;
}

.inner_testimonial .testimonial_box {
  background: #fff;
}

.inner_testimonial .quote svg {
  background: #04a8a8;
  width: 120px;
  height: 120px;
  fill: #fff;
}

.inner_testimonial .testimonial_box {
  margin-top: 55px;
}

.inner_testimonial .testimonial_box::before {
  content: '';
  width: 50px;
  height: 50px;
  background: #fff;
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}

.inner_testimonial .discover_column h1 {
  margin: auto;
  max-width: 742px;
  text-align: center;
  /*max-width: 100%;*/
}

.inner_testimonial .discover_column p {
  text-align: center;
  margin: auto;
}

.inner_testimonial .appoinment_btn {
  text-align: center;
}

.inner_testimonial .discover_column {
  border: none;
}

.coll_box {
  border-radius: 20px;
  border: 1px solid #f1f1f1;
}

.content_coll p {
  font-size: 16px;
  line-height: 30px;
  color: #404041;
  padding-top: 5px;
}

.content_coll h3 {
  color: var(--theme);
  padding-bottom: 5px;
  font-size: 22px;
}

.collaborate {
  padding: 125px 0 75px;
  background: #fff;
}

.m-top {
  margin-top: -110px;
}

.abt_cols_img {
  border-radius: 25px;
  overflow: hidden;
}

.abt_inner_desc .main_desc {
  /*  padding: 55px 140px 0;*/
  text-align: center;
}

.abt_inner_desc .main_desc .mis_block {
  display: block;
}

.abt_inner_desc .main_desc .mis_icon {
  margin: 0 auto 20px;
  width: 89px;
  height: 89px;
  line-height: 89px;
  border-radius: 50px;
}

.abt_inner_desc .main_desc .mis_icon svg {
  width: 65px;
  height: 65px;
}

.abt_inner_desc .main_desc .mis_content h5 {
  font-size: 22px;
  padding-bottom: 15px;
}

.abt_inner_desc .main_desc .mis_content p {
  font-size: 16px;
  line-height: 37px;
}

.abt_inner_desc .main_desc .mis_block {
  padding: 30px;
  /*border: 1px solid #eaeaea;*/
  background: #ffffff;
}

.bg_Sec {
  background: #04a89b0f;
}

.abt_inner_desc .about_mision {
  margin-top: 50px;
}

.abt_inner_desc h1.abt_heading {
  max-width: 70%;
  margin: auto;
  padding-bottom: 20px;
}

.abt_inner_desc .counter_section {
  max-width: 100%;
  margin-left: 0;
  background: transparent;
}

.abt_inner_desc .counter_flex {
  justify-content: space-between;
}

.abt_inner_desc .counter_flex .counter_box p {
  padding-top: 15px;
}

.abt_inner_desc .counter_box h1 {
  font-size: 50px;
}

.split {
  padding: 75px 0;
}

.uk_image {
  padding: 0 25px;
}

.about_uk {
  padding: 25px;
}

.about_uk ul li button.active {
  background: transparent !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 3px solid var(--base) !important;
  color: var(--base) !important;
}

.about_uk ul li button {
  color: #636363;
  font-weight: 600;
  padding: 15px 25px;
}

.about_uk ul li button:hover {
  color: var(--base);
}

.bg_white {
  background: #fff !important;
}

.content_para {
  padding: 35px 0px;
}

.content_para h4 {
  padding-bottom: 25px;
}

.content_para p {
  font-size: 16px;
  line-height: 37px;
  color: #686565;
  text-align: justify;
}

.pb-25 {
  padding-bottom: 25px;
}

.txt_inter {
  color: var(--theme);
  font-style: italic;
}

.qual_list li {
  padding: 5px;
  color: #B9A7A7;
}

.qual_list li i {
  color: var(--base);
  padding-right: 8px;
}

.univ_flex {
  display: flex;
  align-items: center;

}

.univ_flex {
  padding-bottom: 25px;
}

.university_sidebar {
  padding: 20px;
  overflow: hidden;
  /*border-radius: 25px;*/
  box-shadow: 0 0 30px rgb(51 51 51 / 10%);
}

.benefits {
  margin: 0 15px;
  padding-top: 50px;
}

.log_univ {
  width: 200px;
}

.university_card h3 {
  padding-bottom: 15px;
  padding-top: 35px;
  font-size: 23px;
}

.university_card p {
  font-size: 15px;
  line-height: 30px;
  color: #686565;
  text-align: justify;
}

.entrol_btn {
  margin-top: 25px;
}

.entrol_btn button {
  display: block;
  color: #fff;
  font-size: 16px;
  background: var(--base);
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  padding: 10px;
}

.university_sidebar .owl-dots button {
  width: 10px;
  height: 10px;
  background: var(--theme) !important;
  border-radius: 50%;
  margin-left: 5px;
}

.university_sidebar .owl-dots {
  text-align: center;
}

.university_sidebar {
  margin: 0 15px;
}

.ben_content h4 {
  color: var(--theme);
  padding-bottom: 15px;
}

.ben_content p {
  font-size: 15px;
  line-height: 30px;
  color: #B9A7A7;
}

.benefits_flex {
  margin-bottom: 25px;
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.icon_ben {
  width: 130px;
  align-items: center;
  display: flex;
  height: 130px;
}

.image_wrapper {
  position: relative;
}

.image_wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-180deg, rgba(4, 168, 155, 0), #04a89bb0 61%);
  transition: .5s;
}

.image_wrapper:hover {
  background: linear-gradient(-180deg, rgba(4, 168, 155, 0), #04a89b 61%) !important;
  transition: .5s;
}

.heading_wrapper {
  position: absolute;
  bottom: 15px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.heading_wrapper h3 {
  font-size: 22px;
  padding-top: 20px;
}

.text_wrapper p {
  font-size: 15px;
  line-height: 30px;
  color: #B9A7A7;
  padding-top: 25px;
  text-align: center;
}

.heading_ben {
  padding-bottom: 45px;
}

.benefits_box {
  margin-bottom: 25px;
}

.apmnt_image_mg {
  margin: 40px 15px;
}

.apmnt_image_mg img {
  width: 100%;
}

.apmnt_image {
  cursor: pointer;
  overflow: hidden;
}

.apmnt_image img {
  transition: .5s;
}

.apmnt_image:hover img {
  transform: scale(1.03);
}

.image_wrapper:hover img {
  transition: .5s;
}

.image_wrapper {
  overflow: hidden;
  cursor: pointer;
}

.image_wrapper:hover img {
  transform: scale(1.1);
}

.form-container {
  padding: 60px 50px;
  background: #f9f6ff;
}

.contact_container {
  background: #fff;
}

.form-container input,
.form-container select {
  height: 56px;
  border: none;
  background: #fff;
  margin-bottom: 18px;
  border-radius: 0 !important;
  color: #B9A7A7;
}

.form-container .enq_sbmt {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-container textarea {
  height: 150px;
  border: none;
  background: #fff;
  margin-bottom: 18px;
  border-radius: 0 !important;
  color: #B9A7A7;
  padding: 19px 18px;
}

.form-container .form_heading {
  text-align: left;
}

.form-container .form_heading {
  padding-left: 35px;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 65px;
}

.form-container .form_heading h3 {
  font-size: 35px;
  line-height: 52px;
  text-transform: capitalize;
  max-width: 600px;
}

.form-container .form_heading::before {
  content: '';
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--theme);
}

.form-container ::placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #B9A7A7 !important;
}

.contact_info {
  padding: 80px 40px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /*text-align: center;*/
  z-index: 1;
}

.contact_info::before {
  background: linear-gradient(to bottom, rgba(239, 82, 70, 0.95), rgba(239, 82, 70, 0.95));
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact_item+.contact_item {
  margin-top: 45px;
}

.contact_item h3 {
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
}

.contact_item p {
  color: #ffffffb3;
  line-height: 1.7em;
  margin-top: 5px;
}

.form_heading .indicator p {
  color: #fff;
}

.form-container .form_heading p {
  font-size: 16px;
  line-height: 32px;
}

.cont_icon svg {
  width: 50px;
  height: 50px;
  fill: #636363;
}

.cont_icon {
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  /*margin-bottom: 25px;*/
}

.contact_item {
  display: flex;
  column-gap: 23px;
  align-items: start;
}

.fnt_Strng {
  font-size: 20px;
}

.map iframe {
  width: 100%;
  height: 400px;
}

.contact_container {
  /*  padding: 75px 0 75px;*/
}

.form-control:focus {
  box-shadow: none !important;
}

.blog_image {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog_image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s ease-in-out 0s;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  z-index: 1;
}

.blog_item:hover .blog_image::before {
  opacity: 1;
}

.blog_item {
  margin-bottom: 35px;
  cursor: pointer;
}

.blog_image img {
  transition: .5s ease;
  width: 100%;
}

.blog_item:hover .blog_image img {
  transform: scale(1.1);
}

.blog_content {
  position: relative;
  display: block;
  background: #fff;
  margin-left: 40px;
  margin-top: -110px;
  z-index: 2;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

.news_botm {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 13px 40px 13px;
  background: var(--theme);
}

.news_botm a {
  color: #fff;
  text-decoration: none;
  transition: .5s;
}

.news_date {
  display: inline-block;
  padding: 8px 25px;
  background: var(--base);
  color: #fff;
  font-size: 15px;
  position: absolute;
  top: -39px;
  right: 0;
  border-radius: 20px 0 0 0;
}

.news_content {
  padding: 28px 40px;
  position: relative;
  display: block;
}

.news_content h3 {
  text-transform: capitalize;
  line-height: 39px;
  color: #636363;
}

.news_content p {
  font-size: 16px;
  line-height: 32px;
  padding-top: 15px;
  color: #686565;
}

.news_content .learn_icon svg {
  fill: var();
}

.news_more .learn_icon svg {
  background: #fff !important;
  border-radius: 50px;
  transition: .5s;
}

.news_botm a:hover {
  color: #ffffffa8;
}

.news_botm a:hover .learn_icon svg {
  background: #ffffffa8 !important;
}

.contact_item ul li a {
  background: #fff;
  border: none;
  color: #636363;
}


.icon_con svg {
  width: 45px;
  height: 45px;
}

.close_icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.side_navigation {
  padding: 40px;
  position: fixed;
  top: 0;
  right: -300px;
  opacity: 0;
  background: #fff;
  z-index: 9999;
  height: 100%;
  width: 300px;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
  transition: .5s ease-in-out 0s;
}

.overlay_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  transition: .5s ease-in-out 0s;
  background: rgba(0, 0, 0, .8);
  height: 100%;
  z-index: 9997;
}

.ov_bg {
  width: 100%;
}

.nav_open {
  right: 0;
  opacity: 1;
}

.side_logo {
  margin-top: 10px;
}

.close-container {
  position: relative;
  margin: auto;
  width: 22px;
  height: 22px;
  /*margin-top: 100px;*/
  cursor: pointer;
}

.leftright {
  height: 3px;
  width: 22px;
  position: absolute;
  margin-top: 24px;
  background-color: var(--theme);
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in;
}

.rightleft {
  height: 3px;
  width: 22px;
  position: absolute;
  margin-top: 24px;
  background-color: var(--theme);
  border-radius: 2px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in;
}

label {
  color: #000;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.close {
  margin: 60px 0 0 5px;
  position: absolute;
}

.close-container:hover .leftright {
  transform: rotate(-45deg);
  background-color: var(--base);
}

.close-container:hover .rightleft {
  transform: rotate(45deg);
  background-color: var(--base);
}

.close-container:hover label {
  opacity: 1;
}

.side_menubar ul li a {
  color: #636363;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  padding: 12px 10px;
  display: block;
  letter-spacing: 0;
}

.side_menubar ul li {
  border-bottom: 1px solid #f1f1f15e !important;
}

.side_menubar ul li:last-child {
  border-bottom: none !important;
}

.side_menubar {
  margin-top: 30px;
}

.con_flex {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.icon_con svg {
  fill: var(--theme);
}

.con_detail h3 {
  color: var(--base);
  font-size: 20px;
}

.con_detail p {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #636363;
}

.side_cons_numb {
  position: absolute;
  bottom: 40px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: .5s;
  z-index: 1000;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

.menu_icon div span {
  width: 100%;
  right: 0;
  height: 2px;
  background-color: #636363;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.menu_icon div:hover span:nth-child(1),
.menu_icon div:hover span:nth-child(2),
.menu_icon div:hover span:nth-child(3) {
  width: 100%;
}

.menu_icon div span:nth-child(1) {
  position: absolute;
  top: -2px;
  width: 25.6px;
}

.menu_icon div span:nth-child(2) {
  position: absolute;
  top: calc(50% - 4px);
  width: 19.4px;
}

.menu_icon div span:nth-child(3) {
  position: absolute;
  top: calc(100% - 6px);
  width: 13.4px;
}

.menu_icon div {
  width: 27px;
  height: 20px;
  position: relative;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.main_menu_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swiper-container .swiper-wrapper .swiper-slide {
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
}

.side_navigation li.active a {
  color: var(--theme);
}

.side_navigation {
  padding: 25px;
  overflow: scroll;
}

.side_navigation li:hover a {
  color: var(--theme);
}

.side_navigation li a {
  transition: .3s;
}

/*.how_wrk_wrapper,.blog_inner_wrapp {
    padding: 75px 0;
}*/
.blog_details {
  padding: 30px 0;
}

.blog_details h2 {
  color: #404041;
  padding-bottom: 15px;
  line-height: 45px !important;
}

.post_date.mb-0.regular {
  font-size: 14px;
}

.blog_details p {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 37px;
  color: #686565;
  text-align: justify;
}

.blog_imp {
  position: relative;
  padding: 40px 50px;
  background: var(--theme);
}

.blog_imp .blog_quote {
  position: absolute;
  top: 25px;
  right: 25px;
}

.blog_imp p {
  font-size: 16px;
  line-height: 37px;
  color: #fff;
  padding-left: 45px;
  position: relative;
}

.blog_imp p::before {
  content: '';
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background: #fff;
}

.blog_para p {
  padding: 35px 0;
  font-size: 16px;
  line-height: 37px;
  color: #686565;
  text-align: justify;
}

.blog_col_img {
  overflow: hidden;
}

.side_widget {
  /*box-shadow: 0px 20px 30px rgb(49 67 139 / 8%);*/
  background-color: #f8f8f8;
  margin-bottom: 25px;
  padding: 30px;
}

/*.sb_widget_title {
    line-height: 1;
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-weight: 600;
}*/
.sb_widget_title:before {
  left: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 48px;
  position: absolute;
  background-color: var(--theme);
}

.ul_li {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.form_item input {
  height: 60px;
  padding: 0 20px;
  width: 100%;
  outline: none;
  display: block;
  box-shadow: none;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid #e8ebf2;
}

.sb_search input {
  flex: 1;
  height: 60px;
  background-color: #fff;
}

.sb_search .btn {
  flex: 0 0 120px;
  min-width: auto;
  cursor: pointer;
  height: 60px;
}

.btn.btn_danger {
  color: #ffffff;
  background: var(--theme);
  border: none !important;
  border-radius: 0 !important;
}

.form_item {
  position: relative;
}

.sb_search {
  display: flex;
  align-items: center;
}

.sb_widget_title {
  line-height: 1;
  font-size: 20px;
  position: relative;
  margin-bottom: 30px !important;
  padding-bottom: 10px;
  font-weight: 600;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}

.recent_post_group>li {
  margin-top: 30px;
  list-style: none;
}

.recent_post_item {
  display: flex;
  align-items: center;
}

.recent_post_item .item_image {
  flex: 0 0 95px;
}

.item_content {
  padding-left: 10px;
}

.recent_post_item .item_title {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 22px;
}

.item_content a {
  text-decoration: none;
  color: #404041;
  font-weight: 700;
}

.item_content a:hover {
  color: var(--base);
}

.social_bordered a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  color: #9199ac;
  justify-content: center;
  border: 1px solid #9199ac;
  margin-right: 10px;
  transition: .3s;
}

.social_bordered a:hover {
  background: var(--theme);
  color: #fff;
}

.social_icon a {
  background-color: transparent;
  transition: .5s;
  text-decoration: none;
}

.list a:hover {
  background: var(--theme);
  color: #fff;
  border-color: var(--theme);
}

.blog_col_img img {
  width: 100%;
}

.blog_col_img {
  /*  margin-bottom: 30px;*/

}

.blog_cols .col-md-4 {
  /*width: 50%;*/
}

.step_details p {
  font-size: 16px;
  line-height: 37px;
  color: #686565;
}

.step_details h1 {
  padding-bottom: 30px;
  color: #636363;
}

.step-idicator h3 {
  font-size: 20px;
  color: var(--theme);
  padding: 12px 25px;
  background: var(--theme);
  display: inline-block;
  background: #04a89b14;
  border-radius: 30px;
  margin-bottom: 15px !important;
}

.d_center_med {
  display: flex;
  align-items: center;
}

.step_no {
  position: absolute;
  top: 0%;
  right: 0%;
  /*transform: translate(-50%, -50%);*/
  font-size: 250px;
  width: 100%;
  height: 100%;
  color: #03766d14;
  z-index: -1;
}

.column_details {
  position: relative;
}

.work_main {
  max-width: 800px;
  text-align: center;
  margin: auto;
}

.work_main h1 {
  color: var(--base);
  padding-bottom: 30px;
}

.work_main p {
  font-size: 16px;
  line-height: 37px;
  color: #686565;
}

.header_btn a,
.enq_sbmt {
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.header_btn a::before,
.enq_sbmt::before,
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0%;
background: var(--base);
content: '';
transition: .5s;
z-index: -1;
}

.enq_sbmt::before {
  background: var(--theme);
}

.header_btn a:hover {
  color: #fff;
}

.header_btn a:hover::before,
.enq_sbmt:hover::before {
  height: 100%;
}

.learn_mr,
.arrow svg path {
  transition: .7s;
}

.learn_mr:hover,
.learn_more a:hover {
  color: var(--base);
}

.learn_mr:hover .arrow svg path,
.learn_more a:hover .learn_icon svg path {
  stroke: var(--base);
}

.appoinment_btn a:hover {
  background: var(--theme);
  color: #fff;
}

.course_item .crs_icon,
.appoinment_btn button,
.entrol_btn button {
  transition: .7s;
}

.course_item:hover .crs_icon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  /*left: 0;*/
}

.logo_box {
  text-align: center;
}

.chat_btn,
.apply_btn {
  transition: .7s;
}

.apply_btn:hover {
  background: var(--base);
  color: #fff;
}

.chat_btn:hover {
  background: var(--theme) !important;
  color: #fff;
}

.client .owl-carousel .owl-item img {
  width: auto !important;
  margin: auto;
}

.owl-dots {
  line-height: 0;
}

.testimonial_column .owl-dots button,
.inner_testimonial .owl-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #AAAAAA !important;
  margin-left: 9px;
  transition: .5s;
}

.testimonial_column .owl-dots {
  text-align: right;
}

.testimonial_column .owl-dots button.active,
.inner_testimonial .owl-dots button.active {
  width: 28.5px;
  background: var(--base) !important;
}

.inner_testimonial .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.entrol_btn button:hover {
  background: var(--theme);
  color: #fff;
}

.university_sidebar .owl-dots button.active {
  background: var(--base) !important;
  width: 20px;
  border-radius: 20px;
}


.backtotop {
  right: 15px;
  z-index: 99;
  bottom: 50px;
  display: none;
  position: fixed;
  transition: .5s;
}

.show1 {
  display: block;
}

.backtotop .scroll {
  z-index: 1;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  transition: .5s;
}

.backtotop .scroll:before,
.backtotop .scroll:after {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  /*border: 2px solid #c8c8c8;*/
  background: var(--theme);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /*box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);*/
}

.backtotop .scroll i:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.backtotop .scroll i {
  left: 50%;
  z-index: 1;
  font-size: 15px;
  position: absolute;
  color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.backtotop .scroll i:nth-child(2) {
  top: 110%;
  opacity: 0;
  visibility: hidden;
}

.backtotop .scroll:hover:before {
  opacity: 0;
  transform: scale(0.3);
}

.backtotop .scroll:hover i:nth-child(1) {
  top: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.backtotop .scroll:hover i:nth-child(2) {
  top: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.icon .num_icon {
  font-size: 28px;
  color: var(--theme);
  line-height: 28px;
}

.icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #b6b5ff3b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_coll {
  padding-top: 25px;
}

.footer_menu ul li a:hover {
  color: var(--theme);
}

.country {
  padding: 150px 0 30px;
  /*background: var(--base);*/
}

.country_logo {
  width: 152px;
  height: 72px;
  background: #fff;
  padding: 15px;
}

.contry_left .heading_crs {
  text-align: left !important;
}

.view_all_link {
  padding-top: 30px;
}

.view_all_link a {
  text-decoration: none;
  color: #636363;
  font-size: 20px;
  display: inline-block;
}

.contry_left .heading_crs .ind {
  padding-bottom: 15px;
}

.country .country_box {
  /*cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-left: 15px;
    margin-right: 15px;*/

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  /* margin-left: 15px; */
  /* margin-right: 15px; */
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin: auto auto 50px;
  transition: .5s;
}

.country .country_box:hover {
  transform: scale(1.1);
}

.head_off {
  text-transform: uppercase;
  text-decoration: underline;
}

.swiper-slide::before {
  /*content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 9;*/
}


.enq_modal .modal-body {
  padding: 0 35px 35px 35px !important;
  border-bottom: none !important;
}

.enq_modal .heading {
  text-align: center;
  padding-bottom: 40px;
}

.enq_modal .heading h6 {
  letter-spacing: 2px;
  padding-bottom: 5px;
}

.enq_modal .heading h2 {
  margin-top: 0;
  font-weight: bold;
}

.log_label {
  font-weight: 400;
  padding-bottom: 5px;
  color: #000;
}

.login-input {
  border: 1px solid #0f0d0d;
  border-radius: 0 !important;
  padding: 5px 15px !important;
  display: block;
  margin-bottom: 25px;
  height: 55px !important;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 651px !important;
    margin: 1.75rem auto;
  }
}

.modal-content {
  border-radius: 0 !important;
}

.modal-header {
  border-bottom: none !important;
}

.submit_btn {
  display: block;
  padding: 18.5px 20px;
  background: var(--base);
  font-size: 19px;
  width: 100%;
  color: #fff;
  transition: .5s;
  border: none;
}

.submit_btn:hover {
  background: var(--theme);
}

.h_Auto {
  height: auto !important;
}

.header_btn a:hover {
  color: var(--theme) !important;
}


.menu_list>li:hover .sub__menu {
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 32px !important;
}

.sub__menu {}

.sub__menu {
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px !important;
}

.sub__menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  background: #fff;
  height: auto;
  z-index: 999;
  /*max-width: 900px;*/
  width: 250px;
  margin: auto;
  transform: translateX(-50%);
  padding: 30px;
  box-shadow: 0px 30px 50px rgb(26 31 35 / 7%);
}

.sub__menu li a {
  display: block;
  padding: 15px 25px;
  line-height: 24px !important;
}

.sub__menu li a::before {
  content: '';
  display: none;
}

.sub__menu li a:hover {
  background: var(--theme);
  color: #fff;
  font-weight: normal !important;
}

.sub___menu {
  display: none;
  background: var(--theme);
}

.sub___menu li a {
  color: #fff !important;
  text-align: center;
}

.sub___menu li a:hover {
  background: var(--base);
  color: #fff;
}

.styd_abrd_countries_heading .heading_crs {
  text-align: center !important;
}

.styd_abrd_countries .country_box {
  cursor: pointer;
  display: block;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  border-radius: 50%;
  /*overflow: hidden;*/
  width: 250px;
  height: 250px;
  margin: auto auto 135px;
  transition: .5s;
}

.study_country {
  padding: 0px 0 0px;
  /*background: var(--base);*/
}

.styd_abrd_countries .country_box img {
  width: 100%;
}

.country_name_detail {
  display: block;
}

.country_name_detail {
  text-align: center;
  padding-top: 15px;
}

.country_name_detail .view_all_link {
  padding-top: 0px;
}

.view_all_link a:hover {
  color: var(--theme);
}

.country_box:hover .country_box_imag {
  transform: scale(1.05);
}

.country_box .country_box_imag {
  transition: .5s;
}

.country_box:hover .country_name_detail h1 {
  color: var(--base);
}

.menu_list li.active .sub__menu a {
  color: #000;
  font-weight: 400;
}

.menu_list li.active .sub__menu a:hover {
  color: #fff !important;
}

.side_menubar ul li .menu_down {
  background: #cccccc52;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 7px;
}

.menu_down svg path {
  stroke: #ADAFB2;
}

.side_menubar ul li {
  position: relative;
}

.arrow_up {
  transform: rotate(180deg);
}

.apmnt_image_mg {
  display: none;
}

.view_more_btn_sec {
  text-align: center;
}

.view_more_btn_sec button {
  padding: 24px 75px;
  background: var(--base);
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  display: inline-block;
  border: none;
  text-decoration: none;
  transition: .5s;
  border: none;
  font-weight: 600;
  position: relative;
}

.view_more_btn_sec button:hover {
  background: var(--theme);
}

.view_more_btn_sec button::before {
  content: 'View More';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.second_block {
  display: none;
}

.ee::before {
  content: 'View Less' !important;
}






.login_bg {
  background: url(https://studyabroad-dm.com/wp-content/themes/dmoverseas/assets/img/pics/about-us-2.jpg) !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.login_container_sec {
  background: linear-gradient(143.45deg, #FFFFFF 4.24%, rgba(255, 255, 255, 0.47) 96.37%);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(8.5px);
  padding: 50px 50px;
  border-radius: 30px;
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login_logo {
  text-align: center;
  padding-bottom: 15px;
}

.login_bg label {
  opacity: 1;
  letter-spacing: 0px;
  font-size: 16px;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.login_bg input {
  background: linear-gradient(143.45deg, #FFFFFF 4.24%, rgba(255, 255, 255, 0.47) 96.37%);
  border: 1px solid #dbdbdb;
  backdrop-filter: blur(8.5px);
  padding-left: 20px !important;
  border-radius: 30px !important;
  margin-bottom: 15px;
}

.login_bg .login_btn a {
  padding: 15px 20px;
  display: block;
  border-radius: 30px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-decoration: none !important;
  transition: .5s;
  background: var(--base);
}

.login_bg .login_btn a:hover {
  background: var(--theme);
}


@media screen and (max-width: 767px) {
  .login_container_sec {
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .login_container_sec {
    min-width: 280px;
    padding: 35px 25px;
  }
}




/*----------------------new page styles-----------------*/
.top_icon {
  line-height: 0;
}

.main_menu_right {
  display: none;
}

.banner_block_title {
  font-size: 16px;
  line-height: 22px;
  color: #ADAFB2;
}

.banner_content_text {
  color: #fff;
}

.banner_content_text h2 {
  font-size: 48px;
}

.banner_para {
  font-size: 16px;
  line-height: 30px;
  padding: 15px 0;
}

.slider_content {
  width: 650px;
  padding: 72px 98px 72px 41px;
  background: var(--theme);
  border-bottom-right-radius: 196px;
}

.overlay1 {
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, rgb(47 46 125 / 71%), rgba(47, 46, 125, 0));
}

.course-product .card-header img {
  width: 100%;
}

.course-product {
  border: none !important;
}

.course-product .card-header {
  border: none !important;
  border-radius: 0 !important;
  background: transparent;
}

.crs-body-title {
  display: flex;
  align-items: center;
  column-gap: 11px;
}

.crs-body {
  background: var(--theme);
}

.cars-heading {
  color: #fff;
}

.cars-heading h1,
.cars-heading h2 {
  font-size: 24px;
  padding: 10px 0px;
}

.main_desc h2 {
  font-size: 30px;
}

.card-body-para p {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}

.crs-body {
  padding: 30px 30px 40px !important;
  position: relative;
}

.crs-body::before {
  width: 80%;
  height: 6px;
  background: #fff;
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

  {
  padding-top: 20px;
}

.card-body-para ul {
  padding-top: 15px !important;
  padding-left: 15px !important;
}

.card-body-para ul li {
  position: relative;
  list-style-type: disc !important;
  color: #fff !important;
  font-size: 16px;
  padding-bottom: 10px;

}

.btn-readmore a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
  background: var(--theme);
  padding-right: 10px;
  position: relative;
}

.btn-readmore a:hover {
  padding-left: 10px;
  color: #fff;
}

.btn-readmore {
  position: relative;
  margin-top: 15px;
}

.btn-readmore::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .2);
}

.bg-second {
  background: #ADAFB2;
}

.bg-second .btn-readmore a {
  background: #ADAFB2;
}

.left_course_column p {
  font-size: 15px;
  line-height: 15px;
  padding: 7px 16px;
  border-radius: 70px;
  border: 1px solid #D9D9D9;
  color: #404041;
  display: inline-block;
  margin-bottom: 10px !important;
}

.left_course_column h1,
.left_course_column h2 {
  color: #404041;
  font-size: 30px;
  line-height: 40px;
}

.d-flex_row {
  display: flex;
  align-items: center;
}

.course-product {
  margin: 0 10px;
}

.arow_icon {
  width: 25px !important;
}

.custom-nav button,
.custom-navs button,
.custom-nav-1 button {
  background: transparent !important;
  border: transparent !important;
  width: 35px !important;
  margin-right: 10px;
}

.custom-nav button img,
.custom-navs button img,
.custom-nav-1 button img {
  width: 35px !important;
  transition: .3s;

}

.custom-nav button:hover img,
.custom-navs button:hover img,
.custom-nav-1 button:hover img {
  opacity: .5;
}

.custom-nav,
.custom-navs,
.custom-nav-1 {
  padding-top: 30px;
}

.courses-row {
  padding: 66px 0 60px;
}

.heading_cmn p.sm-short {
  font-size: 15px;
  line-height: 15px;
  padding: 7px 16px;
  border-radius: 70px;
  border: 1px solid #D9D9D9;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px !important;
}

.heading_cmn h1 {
  font-size: 50px;
  line-height: 55px;
}

.heading_cmn h2 {
  font-size: 30px;
  line-height: 55px;
  color: white;
}

.abt_cmn-para p {
  padding: 10px 0px;
  text-align: center;
  color: #fff;
  line-height: 34px;
  font-size: 16px;
  font-weight: normal;
}

.d-flex {
  display: flex;
}

.hig_def h4 {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 10px;
}

.h_box {
  column-gap: 10px;
  border-right: 2px solid rgba(255, 255, 255, .5);
  padding: 12px 0;
}

.hig_def p {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
}

.b_none {
  border: none !important;
}

.enquiry {
  padding-top: 89px;
}

.highlated {
  padding-bottom: 58px;
  padding-top: 20px;
}

.service_container {
  padding: 71px 0;
  position: relative;
}

.service_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #E6F4F6;
  z-index: -1;
}

.service_heading h1,
.service_heading h2 {
  color: #404041;
  font-size: 30px
}

.service-row .card {
  /*margin: 0 !important;*/
}

.service-row {
  padding-top: 39px;
}

.service-row .card .crs-body::before {
  display: none;
}

.testimonial {
  background: var(--theme);
  padding: 54px 0 142px;
}

.testimonial .left_course_column p {
  color: #fff;
}

.testimonial .left_course_column h1 {
  color: #fff !important;
}

.testimonial-box>.d-flex {
  column-gap: 30px;
}

.test-author {
  padding-top: 23px;
}

.test_content p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}

.test-author>.d-flex {
  column-gap: 13px;
}

.test-author .test-content h4 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  padding-bottom: 10px !important;
}

.test-author .test-content div {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}

.testimonial_row .owl-dots button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5) !important;
  border: none !important;
  margin-right: 8px;
}

.testimonial_row .owl-dots button.active {
  background: rgba(255, 255, 255, 1) !important;
}

.testimonial_row {
  position: relative;
}

.custom-dot {
  position: absolute;
  bottom: 13%;
  right: 0;
  z-index: 999;
}

.video-test {
  /*padding: 5px 0 0 0 !important;*/
  margin-top: -120px;
}

.video_container {
  position: relative;
  max-height: 600px;
  /*  margin-right: -160px;*/
  overflow: hidden;
}

.video_container img {
  width: 100%;
}

.video_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.watch-trail {
  position: absolute;
  bottom: 47px;
  left: 43px;
  color: #fff;
}

.watch-trail .d-flex {
  column-gap: 10px;
  cursor: pointer;
}

.blog {
  padding: 74px 0 96px;
}

.blog_cmn_para p {
  font-size: 16px;
  line-height: 30px;
  color: #404041;
}

.blog-product {
  /*margin: 0 10px;*/
  border: none !important;
}

.blog-product .card-header {
  border: none !important;
  border-radius: 0 !important;
  background: transparent;
}

.blog-product .blog-crs-body {
  padding: 16px 0 0 !important;
  position: relative;
}

.card-body-paras h4 {
  color: #404041;
  font-size: 16px;
  padding-top: 6px;
  line-height: 30px;
}

.date_info .svg {
  line-height: 0 !important;
}

.date-ment>.d-flex {
  column-gap: 18px;
}

.date_info>.d-flex {
  column-gap: 8px;
}

.date_info p {
  color: #ADAFB2;
}

.blog_btn {
  margin-top: 10px;
}

.blog_btn a {
  padding: 10px 25px;
  background: var(--theme);
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
}

.blog_btn a:hover {
  color: #fff;
  background: #ADAFB2;
}

.blog_row {
  padding-top: 43px;
}

.newsletter p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.footer_form .input_form_news {
  position: relative;
}

.footer_form .input_form_news input {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  min-width: 420px;
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  color: rgba(255, 255, 255, .5);
  padding: 17px 10px !important;
}

.footer_form .input_form_news .icon-in {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.newsletter,
.footer_row {
  padding-left: 34px;
}

.footer-column h3 {
  color: #fff;
  font-size: 22px;
  padding-bottom: 34px;
}

.first-row {
  padding-bottom: 66px;
}

.footer-column>.d-flex {
  column-gap: 70px;
}

.br_name {
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 11px;
}

.r_para ul li {
  color: #fff;
  font-size: 16px;
  line-height: 32px;
  padding-bottom: 20px;
}

.footer_social ul li {
  display: inline-block;
  margin-right: 8px;
}

.footer_social ul li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  text-align: center;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.footer_social ul li a:hover {
  background: #ADAFB2;
}

.footer_social ul li a path {
  fill: #404041 !important;
}

.footer_social ul li a:hover path {
  fill: #fff !important;
}

.footer_btm-row p {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
}

.footer_btm-row a {
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.btm-row {
  margin-left: 34px !important;
}

.sec_btm_row a {
  padding: 0 25px;
  border-right: 2px solid #fff;
}

.footer_btm-row p {
  font-size: 16px;
}

.pr_0 {
  padding-right: 0 !important;
  border-right: 0 !important;
}

.btm-row {
  padding-top: 25px;
  margin-top: 47px !important;
  border-top: 2px solid rgba(255, 255, 255, .3);
}

.sec_btm_row {
  float: right;
}

.sec_btm_row a:hover {
  color: #fff;
}

.footer_btm-row p>a:hover {
  color: #fff;
}

footer {
  overflow: hidden;
}

.watch-trail a {
  text-decoration: none;
  color: #fff;
}

.watch-trail a:hover {
  color: #fff;
}

.page_wrapper {
  padding: 60px 0;
}

.about-image {
  position: relative;
  max-width: 485px;
}

.abt-image {
  max-width: 260px;
  border: 8px solid #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .06);
  position: absolute;
  bottom: -60px;
  right: -20%;
  z-index: 9;
}

.h_color {
  color: #404041;
}

.section_title {
  padding-bottom: 20px;
}

.section_title h2 {
  font-size: 30px !important;
  line-height: 40px;
}

.main-ov-heading h2 {
  font-size: 30px !important;
  line-height: 40px;
  font-weight: 300;
}

.cr_inner_cont h2 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
}

.bg-career_bann h3 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 300;
}

.abt-desc p,
.cr_inner_cont p,
.faq_row .accordion-body {
  color: #404041;
  line-height: 30px;
  text-align: justify;
  font-size: 16px;
  font-weight: normal;
}

.list_para {
  margin-top: 12px;
}

.list_para li {
  line-height: 40px;
  /* text-align: justify; */
  font-size: 16px;
  color: #404041;
  /* padding-bottom: 4px; */
  font-weight: normal;
}

.list_para li i {
  color: var(--theme);
  padding-right: 8px;
}

.years-exp strong {
  display: block;
}

.exp_num {
  font-size: 40px;
  color: var(--theme);
  line-height: 80px;
}

.years-exp {
  padding-top: 25px;
}

.exp_title {
  font-size: 30px;
  line-height: 34px;
}

.years-exp .d-flex {
  column-gap: 10px;
}

.cmn_tit_tag {
  font-size: 15px;
  line-height: 15px;
  padding: 7px 16px;
  border-radius: 70px;
  border: 1px solid #D9D9D9;
  color: #404041;
  display: inline-block;
  margin-bottom: 10px !important;
}

.abt_inner_desc {
  padding-top: 70px;
}

.abt_scond-colmn p,
.abt_right_scond-colmn p {
  text-align: justify;
}

.abt_scond-colmn {
  padding-right: 15px;
}

.abt_right_scond-colmn {
  padding-left: 15px;
}

.abt_inner_desc {
  padding-bottom: 60px;
}

.collaborate .section_title {
  max-width: 70%;
  margin: auto;
  padding-bottom: 20px;
}

.coll_box {
  position: relative;
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 45px 25px 20px;
  z-index: 9;
  overflow: hidden;
  transition: .3s;
  cursor: pointer;
  background: #e6e6ff3b;
}

.coll_box:hover::before {
  transform: scaleY(1);
}

.coll_box::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  transform: scaleY(0);
  transition: transform .5s ease;
  z-index: -1;
  transform-origin: bottom center;
}

.coll_box .icon_banner {
  background: var(--theme);
}

.coll_box .icon_banner svg path {
  fill: #fff !important;
}

.coll_box:hover .icon_banner {
  background: #fff;
}

.coll_box:hover .icon_banner svg path {
  fill: var(--theme) !important;
}

.coll_box:hover .content_coll h3,
.coll_box:hover .content_coll p,
.coll_box:hover .content_coll a {
  color: #fff;
}

.coll_box:hover .icon {
  background: #fff;
}

.cs_heading_color {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding-top: 10px;
}

.cs_bold {
  display: flex;
  align-items: center;
  column-gap: 5px;
  border-top: 1px solid #f1f1f1;
  margin-top: 15px;
  justify-content: center;
}

.inner_mtop {
  /*  margin-top: 50px;*/
}

.bg-blue {
  background: var(--theme);
}

.bg-blue .content_coll h3,
.bg-blue .content_coll p,
.bg-blue .content_coll a {
  color: #fff;
}

.bg-blue .icon {
  background: #fff;
}

.cr_content {
  padding: 30px 0;
}

.cr_content .cr_inner_cont h1 {
  padding-bottom: 20px;
}

.pb_5 {
  padding-bottom: 8px;
}

.split_cr>p {
  padding-bottom: 18px;
}

.split_content {
  padding-left: 12px;
}

.mt_30 {
  margin-top: 50px;
}

.cr_content .cr_inner_cont h2 {
  padding-bottom: 15px;
}

.split_content strong {
  color: var(--theme);
}

.widget {
  background-color: #f8f8f8;
  padding: 30px;
  margin-bottom: 30px;
}

.wid-title h3 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 22px !important;
}

.wid-title h3::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 3px;
  background: #ecf1f5;
}

.wid-title h3::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 30%;
  bottom: 0;
  border-radius: 3px;
  left: 0;
  border-radius: 3px;
  background: var(--theme) !important;

}

.caourses_widget-block a {
  position: relative;
  display: inline-block;
  padding: 16px 20px;
  background-color: #ffffff;
  width: 100%;
  font-weight: 500;
  z-index: 9;
  margin: 5px 0;
  font-size: 16px;
  color: #404041;
  transition: .2s;
}

a {
  text-decoration: none !important;
}

.active_wd {
  background: var(--theme) !important;
  color: #fff !important;
}

.caourses_widget-block a:hover {
  background-color: #ADAFB2;
  color: #fff;
}

.right-side-widget {
  margin-left: 20px;
}

.icon_wd {
  font-size: 36px;
  color: var(--theme);
}

.section_diw .d-flex {
  column-gap: 10px;
}

.dw_name h5 {
  font-size: 16px;
  line-height: 24px;
}

.dw_name p {
  font-size: 14px;
  line-height: 17px;
}

.dwn-icon {
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme);
  font-size: 16px;
  color: #fff;
  transition: all .4s ease-in-out;
}

.bg-col {
  background-color: #ADAFB2;
}

.download_item {
  margin-bottom: 20px;
  background: #fff;
  padding: 10px 15px;
  cursor: pointer;
}

.log-bann {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.contact-widget h5 {
  color: #fff;
  text-align: center;
  line-height: 28px;

}

.contact-bt-button a {
  padding: 20px 30px;
  background-color: #ADAFB2;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
}

.contact-bt-button a:hover {
  background: #fff;
  color: var(--theme);
}

.contact-bt-button a i {
  padding-left: 5px;
}

.contact-bt-button a::before,
.contact-bt-button a::after {
  content: "";
  background-color: #fff;
  width: 0;
  height: 50%;
  position: absolute;
  transition: all .3s cubic-bezier(.785, .135, .15, .86);
  z-index: -1;
}

.contact-bt-button a::before {
  top: 0;
  left: 0;
}

.contact-bt-button a::after {
  bottom: 0;
  right: 0;
}

.contact-bt-button a:hover::before,
.contact-bt-button a:hover::after {
  width: 100%;
}

.contact-widget {
  padding: 50px 35px !important;
}

img {
  width: 100%;
}

.cb-block ul li {
  display: flex;
  column-gap: 10px;
  align-items: baseline;
  line-height: 34px;
}

.cb-block {
  padding: 32px 30px;

}

.cb-block h3 {
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 300;
}

.clr-1 {
  background: var(--theme);
  color: #fff;
  margin-bottom: 20px;
}

.clr-2 {
  background: #ADAFB2;
  color: #fff;
}

.split-cb-right ul li {
  display: flex;
  column-gap: 10px;
  align-items: baseline;
  line-height: 34px;
}

.split-cb-right h3 {
  padding-bottom: 12px;
  font-size: 30px;
  font-weight: 300;
}

.split-cb-right ul li i {
  color: var(--theme);
}

.career_banner {
  margin: 65px 0 45px;
  background: var(--theme);
}

.bg_content_Cr {
  padding: 50px;
  text-align: center;
  color: #fff;

}

.bg_content_Cr h4 {
  max-width: 70%;
  font-size: 35px;
  line-height: 52px;
  margin: auto;
}

.bg-career_bann {
  padding: 35px;
}

.bg-career_bann h3 {
  padding-bottom: 15px;
  color: #fff;
}

.bg-career_bann p {
  text-align: justify;
  line-height: 32px;
  font-size: 16px;
}

.bg-career_bann h4,
.bg-career_bann p {
  color: #fff;
}

.main-ov-heading {
  padding-bottom: 25px;
}

.col-column p {
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
}

.col-ul {
  padding-top: 15px;
  padding-bottom: 0px;
}

.col-ul li {
  padding-bottom: 8px;
}

.col-ul li>ul {
  padding-left: 25px !important;
}

.inner_ul {
  margin-left: 20px !important;
  margin-top: 10px !important;
}

.inner_ul li {
  list-style-type: circle !important;
}

.cr_accordian .accordion-body {
  padding: 2rem;
}

.cr_accordian {
  /*  max-width: 80%;*/
  margin: 20px auto 45px;
}

/*.accordion-item:first-of-type .accordion-button
{
  background: var(--theme) !important;
  color: #fff !important;
}*/
.accordion-button.collapsed::after {
  content: '\f0d7';
  /* Replace with the Unicode character of your font icon */
  font-weight: 700;
  background: none !important;
  font-family: 'Font Awesome 6 Free';
}

.accordion-button:not(.collapsed)::after {
  background: none !important;
  font-weight: 700;
  content: '\f0d8';
  /* Replace with the Unicode character of your font icon */
  font-family: 'Font Awesome 6 Free';
  transform: initial !important;
  color: #000;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #ADAFB2 !important;
  color: #fff !important;
  font-weight: 700;
}

.f_logo img {
  width: auto !important;
}

.contact_heading h1 {
  padding-bottom: 13px;
}

.contact_heading p {
  font-size: 16px;
  line-height: 30px;
}

.contact_item_row h3 {
  padding-bottom: 20px;
  font-size: 23px;
  text-transform: capitalize;
}

.contact_split {
  padding-top: 15px;
}

.contact_split .r_para ul li {
  color: #404041;
  line-height: 29px;
}

.contact_split .branch_address {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dashed #dddddd;
}

.mob_numb {
  font-size: 16px !important;
  /*font-weight: 800 !important;*/
}

.b_none {
  border-bottom: none !important;
}

.contact_item_row {
  padding-right: 20px;
}

.form-container h2 {
  padding-bottom: 20px;
}

.inner_blog_row .blog-product {
  margin-bottom: 35px;
}

.d-block {
  display: block;
}

.abt-desc {
  padding-right: 15px;
  ;
}

.planing {
  padding-top: 40px !important;
  background: url('../images/testi-bg.png');

  background-size: cover;
}

.plng-box {
  padding: 50px 20px 32px 25px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #eaeaea;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  ;
}

.p-icon {
  width: 80px;
  height: 80px;
  background-color: #F5F7F8;
  margin-bottom: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-icon img {
  width: 40px;
  height: 40px;
}

.box-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 90px;
}

.plan-box-content h4 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px !important;
  color: var(--theme);
}

.plan-box-content p {
  font-size: 16px;
  line-height: 30px;
  /* text-align: justify; */
}

.b_blockk {
  display: block;
}

.ptop_20 {
  padding-top: 25px;
}

.en-roll {
  padding: 50px 30px;
  margin-top: 60px;
  ;
  background: url('../images/shaded.png');
  background-size: cover;
}

.max-w {
  /* max-width: 60%; */
  margin: auto;
  column-gap: 15px;

}

.en-heading {
  color: #fff;
  font-size: 30px;
  ;
}

.dwn-load {
  background: #fff;
  border: none !important;
  padding: 10px 25px !important;
  margin-left: 20px;

}

.abt_company {
  padding: 60px 0;
  background-color: var(--theme);
}

.row-tab .flex-column button {
  color: #fff;
  padding: 16px;
  background-color: transparent !important;
  border-radius: 0 !important;
  font-size: 20px;
  border: 2px solid #fff;
  margin: 8px 0;
}

.row-tab .flex-column {
  width: 380px;
  flex: none;
}

.abt_company .en-heading {
  margin-bottom: 20px;
}

.row-tab .flex-column button.active {
  background: #fff !important;
  color: var(--theme);
  font-weight: 200 !important;
}

.right_tab_con_left {
  padding-left: 30px;
}

.right_tab_con_left p {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
  text-align: justify;
}

.listing_tb {
  padding-top: 25px !important;
}

.listing_tb li {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.listing_tb li i {
  padding-right: 13px;
  font-size: 10px;
}

.img_tab {
  padding: 25px 0;
}

.faq_col .accordion-item {
  border-radius: 0 !important;
}

.faq_col .accordion-item .accordion-button {
  border-radius: 0 !important;
}

.faq_col .accordion-item {
  margin-bottom: 15px;
  border: none !important;
}

.faq_col .accordion-button::after {
  color: #fff !important;
}

.faq_col .accordion-button {
  color: #fff;
}

.faq_col .accordion-button {
  background: var(--base) !important;
}

.page_faq .en-heading {
  color: #404041;
}

.faq_row {
  margin-top: 22px !important;
}

.page_faq {
  padding: 20px 0 0;
}

.faq_row .accordion-body {
  background: #efefef;
}

.faq_row .accordion-body ul {
  margin-left: 20px !important;
  margin-top: 10px !important;
}

.faq_row .accordion-body ul li {
  list-style-type: disc !important;
}

.accordion-button:not(.collapsed) {
  font-weight: normal !important;
}

.client{
    margin-bottom:90px !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
.client_box
{
  border-radius: 250px;
  padding: 15px 30px;
  min-width: 216px;
  
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client_row .d-flex 
{
  column-gap: 20px;
}
.client_box img 
{
  mix-blend-mode: multiply;
}


.pagination_cutom {
    text-align: center;
    margin-top: 20px;
}

.pagination_cutom button {
    background-color: var(--theme);;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination_cutom button:hover {
    background-color: var(--theme);;
}









