:root{
  --text-color:#222;
  --red_color:#E3010F;
  --red_color1:#EE4A62;
  --white_color:#fff;
  --black_color:#000;
  --yellow_color:#0596a9;
  --pt-100:100px;
  --pb-100:100px;
  --pt-90:90px;
  --pb-90:90px;
  --pt-80:80px;
  --pb-80:80px;
  --pt-70:70px;
  --pb-70:70px;
  --pt-60:60px;
  --pb-60:60px;
  --pt-50:50px;
  --pb-50:50px;
  --pt-40:40px;
  --pb-40:40px;
  --pt-30:30px;
  --pb-30:30px;
  --pt-20:20px;
  --pb-20:20px;
  --pt-10:10px;
  --pb-10:10px;
  --font-size-42:42px;
  --font-size-52:52px;
  --font-size-62:62px;
  --font-size-48:48px;
  --font-size-32:32px;
  --font-size-30:30px;
  --font-size-28:28px;
  --font-size-26:26px;
  --font-size-24:24px;
  --font-size-22:22px;
  --font-size-20:20px;
  --font-size-18:18px;
  --font-size-16:16px;
  --font-size-14:14px;
}
.pt-100{
  padding-top:var(--pt-100);
}
.pt-90{
  padding-top:var(--pt-90);
}
.pt-80{
  padding-top:var(--pt-80);
}
.pt-70{
  padding-top:var(--pt-70);
}
.pt-60{
  padding-top:var(--pt-60);
}
.pt-50{
  padding-top:var(--pt-50);
}
.pt-40{
  padding-top:var(--pt-40);
}
.pt-30{
  padding-top:var(--pt-30);
}
.pt-20{
  padding-top:var(--pt-20);
}
.pt-10{
  padding-top:var(--pt-10);
}
.pb-100{
  padding-bottom:var(--pb-100);
}
.pb-90{
  padding-bottom:var(--pb-90);
}
.pb-80{
  padding-bottom:var(--pb-80);
}
.pb-70{
  padding-bottom:var(--pb-70);
}
.pb-60{
  padding-bottom:var(--pb-60);
}
.pb-50{
  padding-bottom:var(--pb-50);
}
.pb-40{
  padding-bottom:var(--pb-40);
}
.pb-30{
  padding-bottom:var(--pb-30);
}
.pb-20{
  padding-bottom:var(--pb-20);
}
.pb-10{
  padding-bottom:var(--pb-10);
}
.mt-70{
  margin-top:var(--pt-70);
}
body {
 /* font-family: 'Spartan';
 */
 font-family: "Poppins", sans-serif;
  color: #444444;
}
a {
  color: #2487ce;
  text-decoration: none;
}
a:hover {
  color: #469fdf;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
 /* font-family: 'Spartan';
 */
 font-family: "Poppins", sans-serif;
 /*font-family: 'League Spartan', sans-serif;
  */
  line-height: normal;
}
p{
  font-size:var(--font-size-16);
  color:var(--text-color);
  font-weight:400 ;
 /* font-family: 'Spartan';
 */
 font-family: "Poppins", sans-serif;
  line-height: 28px;
  letter-spacing: 0.1px;
}
/*-------------------------------------------------------------- # Disable aos animation delay on mobile devices --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
      transition-delay: 0 !important;
 }
}
/*-------------------------------------------------------------- # Header --------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #b31b38;
  z-index: 997;
  padding:10px 0;
  border-bottom: 1px solid #e6f2fb;
  position: initial;
  z-index: 2;
  top: 0;
  width: 100%;
}
#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo img {
  max-height: 60px;
}
@media (max-width: 992px) {
  #header .logo {
      font-size: 28px;
 }
}
/*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/
/** * Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul.menu_main {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar li a.apply_now{
  background: var(--red_color);
  position: relative;
  height: 50px;
  font-size: 16px;
  padding: 10px 30px;
  color: var(--white_color);
  border-radius: 8px;
}

/*  */


.menu-links .nav > li > .sub-menu, .menu-links .nav > li > .mega-menu {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}


.menu-links .nav > li .sub-menu {
  background-color: #ffffff;
  border: 1px solid #f4f4f4;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
  border-radius: 6px;
  top: 100%;
}
.menu-links .nav > li .sub-menu li a {
  color: #303030;
  display: block;
  font-size: 14px;
  padding: 8px 20px;
  text-transform: capitalize;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;

}
.menu-links .nav > li .sub-menu li {
  border-bottom: 1px dashed #e4e4e4;
  position: relative;
}

.menu-links .nav > li:hover > .sub-menu, .menu-links .nav > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu-links .nav > li:hover > a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  top: 90%;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  transform: rotate(45deg);
  z-index: 11;
}



/*  */

.dropdown-menu {
  min-width: 190px;
}
.navbar .dropdown li{
  padding: 8px 0;
}
.navbar li a.apply_now img{
  height: 50px;
}
.sidenav .navbar-nav ul li {
  display: flex;
}
/* .sidenav .navbar-nav ul li::after{
  content: "";
  width: 2px;
  height: 24px;
  display: inline-block;
  background-color: #ddd;
} */
.sidenav .navbar-nav ul li:last-child::after{
  display: none;
}
.sidenav .navbar-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-16);
  color: #fff;
  /* white-space: nowrap; */
  transition: 0.3s;
  font-weight: 400;
  padding:  8px;

}
.sidenav .navbar-nav ul li a:hover{
  color: var(--red_color);
}
.sidenav .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--blue_color);
}
.sidenav .navbar-nav ul li a i {
  margin-left: 2px;
  margin-top: 3px;
  font-size: 11px;
}



/* .navbar a.apply_now:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a.apply_now {
  color:var(--blue_color);
}
*/
.warm_button,.white_button{
  background:var(--red_color);
  color:var(--white_color);
  font-size:var(--font-size-16);
  height:42px;
  line-height: 42px;
  padding:0 30px;
  display: inline-block;
  border-radius: 50px;
  border:none
}
.white_button{
  background-color:#c8576c;
  color:#fff;
}
.warm_button:hover,.white_button:hover{
  color:var(--white_color);
  background:#c8576c;
}
.top_button_part {
  gap: 20px;
}
.social-media {
  display: flex;
  gap: 10px;
}
.social-media a{
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  width: 30px;
  height:30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b31b38;
}
/* Banner Section CSS Start */
.carousel-item::after {
  content: "";
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  top: 0;
}
.carousel-item img{ height: 600px; object-fit: cover; }



.carousel-caption {
  position: absolute;
  right: auto;
  bottom: auto;
  left: 50%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 1; 
}
.carousel-caption h5 {
  font-size: var(--font-size-52);
  line-height: 65px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 900;
}
.outline_text_block{ display: block;}
/*span.outline_text_white {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}
*/.carousel-caption p {
  font-size: var(--font-size-18);
  line-height: normal;
  color: var(--white_color);
  margin: 0;
}
.button_large {
  background: #b31b38;
  color: var(--white_color);
  font-size: var(--font-size-18);
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  display: inline-block;
  border-radius: 50px;
  display: inline-block;
  min-width: 243px;
}
.button_large:hover {
  background:#b31b38;
  color: var(--white_color);
}
.caption_text_box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.carousel-control-next, .carousel-control-prev {
  width: 50px;
 height: 50px;
  border-radius: 50px;
  background-color: #b31b38;
  top: 50%;
  margin-top: -25px;
}
.carousel-control-prev {
  left: 50px;
}
.carousel-control-next {
  right: 50px;
}
/* Banner Section CSS End */

.hedding{
  font-size:var(--font-size-32) ;
  text-transform: capitalize;
  color: #000000bf;
  line-height: 40px;
  font-weight: 900;
}
.red_color{
  color:var(--red_color);
}
/*  */
.industrial_box_row{
  padding: 30px;
  box-shadow: 0 0 10px 10px #0000001f;
  margin-top: -90px;
  position: relative;
  border-radius: 20px;
  z-index: 1;
  background: -webkit-linear-gradient(130deg, #ffffff 45%, #b31b38 45%);
  background: -o-linear-gradient(130deg, #ffffff 45%, #b31b38 45%);
  background: -moz-linear-gradient(130deg, #ffffff 45%, #b31b38 45%);
  background: linear-gradient(130deg, #ffffff 45%, #b31b38 45%);
}
.industrial_box_row{ display: flex;justify-content: space-between;}
.industrial_box_left { width: 45%;}
.industrial_box_left h5{ font-size: var(--font-size-32);
   color: #000000bf; font-weight: 900;}
.industrial_box_left .outline_text{ display: block;}
/* .outline_text_black{     -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--black_color);
  color: transparent;}*/
  .text_black{ display: block; }
.industrial_box_right{ width: 55%;text-align: right;
  display: flex;
  justify-content: end;
  gap: 20px;
  align-items: center;
}
.outline-button{ 
  background: transparent;
  color: var(--white_color);
  font-size: var(--font-size-18);
  height: 65px;
  line-height: 60px;
  padding: 0 40px;
  border-radius: 0;
  display: inline-block;
  border: 1px solid var(--white_color);
  gap: 10px;

}
.outline-button:hover{ 
  background: var(--white_color);
  color: #b31b38;
  font-size: var(--font-size-18);

}
.fill-button{ 
  background: var(--white_color);
  color: #b31b38;
  font-size: var(--font-size-18);
  height: 65px;
  line-height: normal;
  padding: 4px 40px;
  border-radius: 0;
  display: inline-block;
  border: 1px solid var(--white_color);
  max-width: 243px;
}
.fill-button:hover{ 
  background: transparent;
  color: var(--white_color);

  border: 1px solid var(--white_color);

}


/*  */
.college_logo_section{     margin-top: -80px;
  background: #b31b38c7;
}


/* courses tab section css start */
.courses_tab .nav-tabs{
  justify-content: center;
  gap: 20px;
  margin:10px 0 30px;
  border:none 
}
.courses_tab .nav-tabs .nav-link{
  padding: 5px 20px;
  border: 1px solid #b31b38;
  color: #222;
  font-weight: 500;
  border-radius: 50px;
  font-size: var(--font-size-18);
 color:var(--black_color) 
}
.courses_tab .nav-tabs .nav-link.active{
  border: 1px solid #b31b38;
  color: var(--white_color);
  background-color:#b31b38 
}
.courses_item {
  box-shadow: 0 0 10px 4px rgba(0,0,0,0.15);
  border-radius: 8px ;
  overflow: hidden;
  background-color: var(--white_color);
}
.owl-carousel .owl-item{
  padding: 15px;
}
.courses_item_text_box{
  padding:20px 10px ;
 position: relative;
  background-color: var(--white_color);
}
.course_span {
  position: absolute;
  right: 15px;
  width: 52px;
  height: 52px;
  border-radius: 50px;
  border: 5px solid #fff;
  background-color: #b31b38;
  color: var(--white_color);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -71px;
}
.courses_item_text_box h2{
  font-size: var(--font-size-18);
  color: var(--black_color);
  font-weight: 500;
  margin: 0px;
  min-height: 50px;
}
.button_row a{
  background-color: #b31b38;
  padding: 13px;
  color: var(--white_color);
  display: inline-block;
  width: 100%;
  font-size: var(--font-size-18);
}
.button_row a:hover{
  background-color: #b31b38;
  color: var(--white_color);
}
.courses_section,.testimonials_section {
  background: url('../../assets/testimonials-bg.svg');
  background-repeat:no-repeat ;
  background-position: left bottom ;
}
#nav-tabContent{ position: relative; z-index: 1;}


/* courses tab section css End */
/* student_welcome_section css start */
.student_welcome_section{
  position: relative;
}
.student_welcome_section::after{
  bottom: 0;
  display: inline-block;
  position: absolute;
  background-color: #DAA106;
  content: "";
  height: 150px;
  width: 100%;
}
.student_welcome_section img{
  position: relative;
  z-index: 2;
}
.courses_item_img_box img{ height: 250px; object-fit: cover; object-position: top; }
/* student_welcome_section css End */
.help_section {
  background:url('../../assets/help-section-bg.jpg');
  background-size: cover;
}
.help_right img{ margin-top: -100px; max-width: 100%;}

.help_left_box_part { display:flex; justify-content: space-between; align-items: left; flex-direction: column; }
.help_left_box_part h2{ color: var(--white_color); font-size: var(--font-size-42);}

.help_left_box_part .outline-button {
  background: transparent;
  color: var(--white_color);
  font-size: var(--font-size-18);
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
  border-radius: 0;
  display: inline-block;
  border: 1px solid var(--white_color);
  gap: 10px;
  min-width: 243px;
}
.help_left_box_part .outline-button:hover {
  background: var(--white_color);
  color: var(--black_color);
  font-size: var(--font-size-18);
  border: 1px solid var(--white_color);

}

.help_left_box_part .fill-button {
  background: var(--yellow_color);
  color: var(--black_color);
  font-size: var(--font-size-18);
  height:55px;
  line-height: 55px;
  padding: 0px 20px;
  border-radius: 0;
  display: inline-block;
  border: 1px solid var(--yellow_color);
  min-width: 243px;text-align: center;
}
.help_left_box_part .fill-button:hover {
  background: var(--white_color);
  color: var(--black_color);
  border: 1px solid var(--white_color);

}
.help_left_part {
  display: flex;
  flex-direction: column;
  gap: 50px;

}

.blog-item {
  box-shadow: 0 0 10px 10px #dddddd59;
}
.blog-item-img{ position: relative;}
.blog-item-img img{ width: 100%; height: 250px; object-fit: cover; }
.blog-item-text { padding: 20px; 
  display: flex;
  flex-direction: column;
  gap: 12px;
 }
   .blog-item-text h2{  font-size: var(--font-size-18);
    color: var(--black_color); font-weight: 500;

      display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

   }
    span.admin_user {
      background: #b31b38;
      color: var(--white_color);
      padding: 2px 10px;
      display: inline-block;
      border-radius: 50px;
      bottom: -13px;
      position: absolute;
      left: 20px;
      font-size: 14px;
  }
.blog-item-text a{ font-size: var(--font-size-16); color: #b31b38; font-weight: 600;}
.blog-item-text a:hover{ color: var(--black_color);}


.Scholarships_section {
  margin-bottom: -64px;
  background:url('../../assets/scholarships-img-bg-new.svg');
  background-position: bottom right;
  background-repeat: no-repeat;
}
.regulatory_section{
  position: relative;
  background:url('../../assets/regulatory-bg.svg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.regulatory-logo ul{
  display: flex;
  margin: 0;
  padding: 0;
}
.regulatory-logo li {
  list-style: none;
  justify-content: space-between;
}
.regulatory-logo img{
  width: 100%;
}
.subscribe_section {
 background:url('../../assets/scholarships-img-bg-new.svg');
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}
.subscribe_inner_section{
  border-radius: 0;
  position: relative;
  background:url('../../assets/sub-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.subscribe_inner_section::before{
  content: "";
  background: url('../../assets/sub-left-img.png');
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 170px;
  height: 170px;
  display: inline-block;
  position: absolute;
  left: 50px;
  top:50px;
}
.subscribe_inner_section::after{
  content: "";
  background: url('../../assets/sub-right-img.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width:170px;
  height: 170px;
  display: inline-block;
  position: absolute;
  right: 50px;
  top:50px;
}
.subscribe_box {
  max-width: 520px;
  margin: 0 auto;
}
.subscribe_box h2 {
  font-size: var(--font-size-32);
  font-weight: bold;
  color:#1B1C57;
  margin-bottom: 20px;
 ;
}
.subscribe_box_form form {
  background: #fff;
  display:flex;
  align-items: center;
  padding: 7px 7px 7px 15px;
  border-radius: 50px;
  box-shadow: 0 0 3px 2px #00000014;
  width:100%;
  justify-content: space-between;
}
.subscribe_box_form i {
  font-size: var(--font-size-24);
  color: var(--blue_color);
  padding-right: 10px;
}
.subscribe_box_form input{
  width: 100%;
  border: none;
  font-size: var(--font-size-18);
  font-weight: 500;
  text-transform: capitalize;
}
.subscribe_box_form input:focus{
  border: transparent;
  outline: transparent;
}
.subscribe_box_form button{
  background-color: #b31b38;
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--white_color);
  border:none;
  font-size: var(--font-size-18);
}

/* testimonials section css start */
.testimonials-img img {
  height: 90px;
  width: 90px;
  object-fit: cover;
  border-radius: 50px;
}
.testimonials-card {
  box-shadow:0 0 7px 0px #00000052;
  padding: 20px;
  text-align: left;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background-color: var(--white_color);
  border-radius: 8px;
}
.testimonials-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.testimonials-card p {
  font-size: var(--font-size-16);
  letter-spacing: 0.2px;
}
.testimonials-name-left h3 {
  font-size: var(--font-size-18);
  margin: 0;
  color: #01252A;
  font-weight: 600;
}
.testimonials-name-left p {
  font-size: var(--font-size-14);
  margin: 0;
  color: #01252A;
}
.testimonials-star-right i {
  color: #FFB901;
  font-size: var(--font-size-18);
}
/* testimonials section css End */
.footer-menu h5{
  color: var(--white_color);
  font-size: var(--font-size-22);
  margin-bottom: 10px;
}
.footer-menu ul{
  padding-left: 16px;
  margin: 20px 0 0;
}
.footer-menu ul li {
  list-style: outside;
  margin-bottom:10px;
  color: #fff;
}
.footer-menu ul li a{
  color: #fff;
  font-size: var(--font-size-16);
}
.footer-menu ul li a:hover{
  color: var(--white_color);
}
.footer-logo{
  background-color: var(--white_color);
  display: inline-block;
  padding:5px ;
  border-radius: 0;
}
.footer_about_box img{
  border-radius: 0;
  height: 60px;
}
.footer-address{
 margin: 20px 0;
}
.footer-address p{
  font-size: var(--font-size-16);
  font-weight: 300;
  color:var(--white_color) ;
  margin-bottom: 3px;
}
.footer-address a{
  color: var(--white_color);
}
.footer-address p strong{
  font-weight: 600;
}
footer {
  background:#b31b38;
  padding: 40px 0 20px;
}
.footer_content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_bottom {
  text-align: center;
  border-top: 1px solid #dddddd4f;
  padding: 20px 0 0;
  color: var(--white_color);
}
.footer_about_box{ padding-bottom: 10px;}
.owl-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-next::before {
  content: " \F135";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font-size-22);
}
.owl-prev::before {
  content: " \F12C";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font-size-22);
}
.owl-theme .owl-controls .owl-buttons div{
  background-color: #E0E3EB;
  color: var(--white_color);
  padding: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.owl-theme .owl-controls .owl-buttons div:hover{
  background-color:#b31b38;
  color: #fff;
}
.closebtn {
  display: none;
}
.button-header{ margin-left: 10px;}



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

  .menu-links .nav > li:hover > a:after{ display: none;}
.menu-links .nav > li .sub-menu {
  background-color: #003e72 ;
  border: none;
  display: none !important;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 0;
  position: initial;
  visibility: visible;
  width: 100%;
  z-index: 10;
  border-radius: 6px;
  top: 100%;
}
.menu-links .nav > li .sub-menu li a{ padding: 8px 10px;}
.menu-links .nav > li.open .sub-menu {
  display: block !important;}


  .navbar-expand-lg .navbar-collapse{
      flex-direction: column;
     display: block !important;
 }
  .sidenav a{
     color: #fff !important;
 }
  .sidenav .navbar-nav ul li{
      padding:  0 !important;
     border: 1px solid #dddddd38
 }
 .sidenav .navbar-nav ul li a{ padding: 12px 8px;}
 .sidenav .navbar-nav ul li.open a{ background-color: #05707e  !important;}
 .menu-links .nav > li .sub-menu li{     border-bottom: 1px dashed #05707e;}
  .sidenav .navbar-nav ul li a{
      font-size: var(--font-size-16) !important;
      color: var(--white_color);
 }
  .closebtn {
      display: inline-block;
 }
  .sidenav .navbar-nav ul li::after{
     display: none;
 }
  .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 99999;
      top: 0;
      left: 0;
      background-color: var(--yellow_color);
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
 }
  .sidenav a {
      padding: 8px 8px 8px 32px;
      text-decoration: none;
      font-size: 25px;
      color: #818181;
      display: block;
      transition: 0.3s;
 }
  .sidenav a:hover {
      color: #f1f1f1;
 }
  .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 25px;
      font-size: 36px;
      margin-left: 50px;
 }
  .box_de{
     font-size:30px;
     cursor:pointer;
      color: #fff;
      display: block !important;
 }
  .sidenav .navbar-nav ul li{
      display: inline-block;
      text-align: left;
      width: 100%;
 }
  .navbar ul {
      margin: 0;
      padding: 0;
     /* display: flex;
      */
      list-style: none;
      align-items: center;
      flex-direction: column;
      width: 100%;
 }
  .navbar-nav .dropdown-menu{
      background: #ffffff26;
 }
  .navbar-expand-lg .navbar-nav {
      flex-direction: column;
      margin: 0;
      text-align: left;
      align-items: baseline;

 }

 .rs-nav .menu-links li.open a {
  position: relative;
}
.menu-links .nav .open > a, .menu-links .nav .open > a:focus, .menu-links .nav .open > a:hover {
  background-color: inherit;
  border-color: #e9e9e9;
}


 .menu-links .nav > li .sub-menu, .menu-links .nav > li .mega-menu {
  border-radius: 0;
  border-width: 1px 0 1px 0;
}

 .menu-links .nav > li:hover > ul, .menu-links .nav > li:hover .sub-menu, .menu-links .nav > li:hover .mega-menu, .menu-links .nav > li .sub-menu li > .sub-menu {
  opacity: 1;
  visibility: visible;
  display: block;
  margin: 0;
}


 .menu-links .nav > li.open > .sub-menu li.open .sub-menu, .menu-links .nav > li.open > .mega-menu, .menu-links .nav > li.open > .sub-menu, .menu-links .nav > li ul.mega-menu ul {
  display: block;
  opacity: 1;
  margin-top: 0;
  box-shadow: none;
}
  .menu-links .nav > li .sub-menu li {
    border-bottom: none;
}
.sidenav .navbar-nav ul li{ border-color: var(--yellow_color); }
}
.box_de {
  font-size: 24px;
  cursor: pointer;
  color: var(--white_color);
  display: none;
  background: var(--yellow_color);
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50px;
  line-height: 40px;
}
.our_professors_item_img_box img{
 border-radius: 15px
}
.moretext {
  display: none;
}
.our_professors_hedding .sub_hedding::before {
  content: "";
  background: #fff;
  width: 50px;
  height: 2px;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -5px;
}
.will_you_get_section .sub_hedding::before{
  content: "";
  background: var(--red_color);
  width: 50px;
  height: 2px;
  position: absolute;
  left: 50%;
  margin-left: -280px;
  bottom: -7px;
}
.pricing_plans_section .sub_hedding::before {
  content: "";
  background: #fff;
  width: 50px;
  height: 2px;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -5px;
}
.float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 4px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float{
  margin-top:16px;
}
.float img{
  padding-top: 10px;
}
.bg_color_calss{
 background: #282461;
  padding: 20px
}
.bg_color_calss .box_bg_s h2{
  font-size: 35px;
  font-weight: 500;
  color: #ec2228;
  letter-spacing: 1px;
  border-top: 3px solid #ec2228;
  margin-top: 30px;
  padding-top: 25px;
}
.bg_color_calss .box_bg_s span{
 color: #fff;
}
#exampleModalToggle_tow .modal-dialog {
  max-width: 800px !important;
  margin-right: auto;
  margin-left: auto;
}
.photo_upload{
  background: #ec2228;
  padding: 100px 30px;
  text-align: center;
  color: #fff;
}
.bg_color_calss .box_bg_s p{
  font-size: 13px;
  color: #fff;
}
.box_top_fhr_f{
  color: #fff;
  font-weight: 500;
}
.hedding_top{
 background: #ef3a5d;
  padding: 10px 15px;
 margin: 0px 25px;
}
.hedding_top h3{
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0px;
  padding-left: 22px;
  position: relative;
}
.hedding_top h3::before {
  content: "";
  width: 15px;
  background: #282461;
  height: 15px;
  display: block;
  position: absolute;
  top: 7px;
  left: 0px;
}
#exampleModalToggle_tow .modal-body{
 padding: 0px
}
.form-control.top_control{
  text-align: center;
  display: inline-block;
  width: 10%;
  padding: 5px 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #e1e5e8;
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border-radius: 4px;
}
.form-control{
  display:block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #e1e5e8;
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border-radius: 4px;
}
/*.input_dd{
 display: flex;
}
*/
.label_box_top{
 margin: 0px;
 margin-right: 20px;
}
.padding_bitvin{
 padding: 20px 25px
}
.solution_right_img img{
  width: 100%;
}
.modal-header{ background: var(--red_color); color: var(--white_color);}
.modal-header .btn-close{ background-color: var(--white_color);}
.form-label{ color: var(--black_color);}
.form-control{ font-weight: 500; background-color: var(--white_color); color: var(--black_color); height: 42px;}




 /*footer css start*/

.modal-dialog {

  max-width: 1100px;

}

.applyNowPopup .modal-footer .buttonApplySubmit {
    padding: 10px 30px;
    font-size: 20px;
    width: auto;
   display: inline-block;
    background: #e31e24;
    border: 1px solid #e31e24;
    color: #fff;
}
.applyNowPopup .modal-footer .buttonApplySubmit:hover{  background: #000;
    border: 1px solid #000; color: #fff;  }




.modal-body {

  padding: 0; 

}

.modal-footer.AlgnCenter {

  text-align: left;

  display: block;

  padding-left: 0;

}

.applyNowPopup .close {

  position: absolute;

  width: 50px;

  height: 50px;

  background: var(--white_color);

  right: -20px;

  top: -20px;

  opacity: 1;

  border-radius: 50%;

  border: 1px solid #ddd;

  z-index: 1;

}

.popup-left-block {

  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  left: 0;

  margin: 0 0;

  padding: 25px;

  background: var(--lightgray);

}

.popup-left-block h3 {

  margin-bottom: 15px;

  font-size: 20px;

}

.help-list ul {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));
padding: 0;
  gap: 20px;

}

.help-list ul li {

  border: 1px solid #e9e9e9;

  color: var(--black-200);

  text-align: center;

  padding: 20px 0;

  background: var(--white);
  list-style: none;

}

.help-icon {

  max-width: 50px;

  margin: 0 auto 15px;

}

.img-responsive {

  display: block;

  height: auto;

  max-width: 100%;

}

.popup-right {

  padding: 25px 30px 25px 0;

}

.popup-heading {

  padding: 0px 0 15px;

}

.popup-heading h2 {

  font-weight: 600;

  font-size: 25px;

  color: #980000;

}

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

  .applyNowPopup .col-lg-5.col-12 {

    display: none;

  }

  .applyNowPopup .popup-right {

    padding: 15px;

  }

}
.form-group{    margin-bottom: 1rem;}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.form-control {
    background-color: #ffffff9e;
}
/*footer css End*/



.keywordsels {
  background: #f5f8f9;
  padding: 60px 0px;
}
.keywordsels a {
  color: #666;
  margin: 6px 8px;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 40px;
  white-space: nowrap;
  display: inline-block;
}
.keywordsels a svg {
  margin-left: 5px;
}
/*********** ------ PK ************/
.bannersave {
  background-image: url('/public/college/assets/img/banners.jpg');
  background-size: 100%;
  height: 550px;
}
.ddd {
  height: 550px;
  width: 100%;
}
.ddd h5 {
  padding-top: 35%;
  color: #fff;
  font-size: 27px;
}
.ddd h5 {
  padding-top: 30%;
  color: #fff;
  font-size: 44px;
  line-height: 55px;
}
.ddd span {
  color: #fff;
  display: inline-block;
  padding: 14px 0px;
}
.ddd a {
  background: #fff;
  color: darkred;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 11px;
  border-radius: 4px;
  font-size: 13px;
}
.mainhead h5 {
  color: #fff;
  font-size: 26px;
}
.logonew {
  width: 10%;
  margin-right: 1%;
}
.logonew img {
  width: 100%;
  padding-bottom: 5px;
}
.mylest {
  text-align: left;
  padding-top: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 0 15%;
}
.red-text {
  color: #b31b38;
  font-weight: bolder;
  font-size: 35px;
}
.cname h5 {
  padding-top: 5px;
}
.cname h5 {
  padding-top: 5px;
  font-size: 30px;
  margin: 0;
  padding-bottom: 4px;
  font-style: oblique;
}
.hms i {
  font-size: 22px !important;
  margin: 0 !important;
}
.happynav {
  margin: 0 auto;
}
.newhead {
  padding: 4px 0 !important;
}
.top-header {
  background-color: #b31b38;
}
.top-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-header ul {
  display: flex;
  margin: 0;
  padding: 8px 0px;
}
.right-top-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 0 20%;
}
.view-360 {
  margin: 10px 0;
  padding-bottom: 4px;
}
.my-btn-r {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  padding: 10px 15px;
}
.right-top-header ul li:first-child {
  border-left: 0;
  margin-left: 7px;
  margin-right: 0px;
}
.right-top-header ul li {
  display: flex;
  align-items: center;
  height: 30px;
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 1px #A66D40;
  font-size: 16px;
    list-style: none;
    color: #000;
}
.top-header ul li a {
  color: #fff;
  font-weight: 400;
}
.header_icon_img {
  max-width: 100%;
  width: 21px;
  height: 21px;
}
.social-list a {
  height: 28px;
  width: 28px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-right: 5px;
}
.social-list a img {
  height: 12px;
}
.social-list a img.img-2 {
  display: none;
}
.newrowbox {
  margin-top: -25px;
  background: linear-gradient(130deg, #fff 45%, #6e214f 45%);
}
.newrowbox .fill-button {
  background: var(--white_color);
  color: #6e214f;
}
.logosss {
  margin-top: -141px;
  background: #5d1c47;
}
.newreg li {
  list-style: none;
  justify-content: space-between;
  margin: 1px;
}
.newreg img {
  width: 100%;
  border: 1px solid #D9DADA;
  padding: 8px;
  background: #fff;
}
.cagency-counterup-area.course-bg {
  background-color: transparent;
}
.cagency-counterup-area {
  background-color: #f4f5fa;
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
  padding-top: 300px;
  margin-top: -240px;
  text-align: center;
}
.cagency-counterup-item .number {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  z-index: 0;
}
.cagency-counterup-item .number::after {
	margin-top: -4%;
  position: absolute;
  content: "";
  width: 85px;
  height: 86px;
  background-image: url(https://hausloz.xtrazcon.com/assets/frontend/img/icon/cicon-01.svg);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-50%);
}
.cagency-counterup-item .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  position: relative;
}
.cagency-counterup-item .style-1.number::after {
  background-image: url(https://hausloz.xtrazcon.com/assets/frontend/img/icon/cicon-01.svg);
  margin-left: -4%;
}
.cagency-counterup-item .style-2.number::after {
  background-image: url(https://hausloz.xtrazcon.com/assets/frontend/img/icon/cicon-02.svg);
  margin-left: -4%;
}
.cagency-counterup-item .style-3.number::after {
  background-image: url(https://hausloz.xtrazcon.com/assets/frontend/img/icon/cicon-03.svg);
  margin-left: -1.5%;
}
.cagency-counterup-item .style-4.number::after {
  background-image: url(https://hausloz.xtrazcon.com/assets/frontend/img/icon/cicon-04.svg);
  margin-left: -1%;
}
.live-section {
  position: relative;
  background: #f8f4f0;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}
.live-section .main-image-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0px;
  z-index: 1;
}
.live-section .main-image-box .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}
.live-section .main-image-box .inner {
  position: relative;
  padding: 20px 0px;
}
.live-section .main-image-box .round-box {
  position: relative;
  display: block;
  float: right;
  right: -25px;
  width: 490px;
  height: 490px;
  border-radius: 50%;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.live-section .main-image-box .round-box::before {
  content: "";
  position: absolute;
  left: -65px;
  top: -45px;
  width: 490px;
  height: 490px;
  background: var(--thm-black);
  opacity: 0.2;
  border-radius: 50%;
}
.live-section .main-image-box .round-inner {
  position: relative;
  display: block;
  width: 490px;
  height: 490px;
  padding: 120px 40px 50px 70px;
  background: #b31b38;
  border-radius: 50%;
}
.live-section .main-image-box .title {
  position: relative;
}
.live-section .main-image-box .title h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 0px 0px 20px;
  background: none;
  line-height: 31px;
  font-family: calibri;
  color: #fff;
}
.live-section .main-image-box .more-link {
  position: relative;
  text-align: right;
}
.live-section .main-image-box .more-link a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  vertical-align: top;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: calibri;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  line-height: 1.25em;
}
.live-section .main-image-box .more-link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: solid 2px #fff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.fa-angle-right::before {
  content: "\f105";
}
.graduate {
  background: #f4f4f4;
  padding: 40px;
}

.about-category-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: #202020;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 54px;
}	
.pt--10 {
  padding-top: 10px;
}
.graduate-attributes {
  margin: 0 0 30px 0px;
  box-shadow: 0 0 20px #ccc;
  background: #fff;
  padding: 20px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.graduate-attributes p {
  font-size: 16px;
  line-height: 24px;
  font-family: Poppins, sans-serif;
  color: #333;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0px;
}
.mytabsection {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #d3dce6;
  font-family: monospace;
}
.popup {
  height: 80%;
  min-height: 480px;
  max-height: 480px;
  border-radius: 48px;
  box-sizing: border-box;
  border: 16px solid #ebf0f4;
  background-color: #dfe6ed;
  overflow: hidden;
  box-shadow: 16px 16px 48px #2e364330;
  position: relative;
}
.tabs {
  width: 100%;
  max-width: 240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}
.marker {
  position: absolute;
  width: 100%;
  height: 200%;
  display: flex;
  flex-direction: column;
  top: calc(-100%);
  left: 0;
  transition: transform .2s ease-in-out;
}
.marker #bottom, .marker #top {
  background-color: #ebf0f4;
  box-shadow: 32px 32px 48px #2e364315;
}
.marker #top {
  height: calc(50%);
  margin-bottom: auto;
  border-radius: 0 0 32px 0;
}
.marker #bottom {
  height: calc(50% - 72px);
  border-radius: 0 32px 0 0;
}
#tab1:checked ~ .marker {
  transform: translateY(calc(calc(50% / 6) * 0));
}
#tab2:checked ~ .marker {
  transform: translateY(calc(calc(50% / 6) * 1));
}
#tab3:checked ~ .marker {
  transform: translateY(calc(calc(50% / 6) * 2));
}
#tab4:checked ~ .marker {
  transform: translateY(calc(calc(50% / 6) * 3));
}
#tab5:checked ~ .marker {
  transform: translateY(calc(calc(50% / 6) * 4));
}
#tab6:checked ~ .marker {
  transform: translateY(calc(calc(51% / 6) * 5));
}
.tab-content {
  padding: 20px;
  margin-top: 20px;
  position: absolute;
  left: 20%;
  top: -6%;
  width: 80%;
}
.contentt {
  display: none;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.contentt {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 28px;
  letter-spacing: 0.1px;
  height: 420px;
}
.contentt p {
  margin-bottom: 5px;
}
.contentt ul {
  margin-bottom: 5px;
}
.worlds {
  background-image: url('/public/frontend/images/ton.jpg');
  background-size: 100%;
  height: 550px;
}
.worddd {
  height: 550px;
  width: 100%;
}

.worddd h5 {
  padding-top: 30%;
  color: #525d6f;
  font-size: 44px;
  line-height: 55px;
}
.worddd span {
  color: #525d6f;
  display: inline-block;
  padding: 14px 0px;
}