@font-face {
  font-family: Raleway;
  src: url(../css/fonts/Raleway-VariableFont_wght.ttf);
}

@font-face {
  font-family: Montserrat-Regular;
  src: url("../css/fonts/MONTSERRAT-REGULAR.OTF");
}

@font-face {
  font-family: Montserrat-Bold;
  src: url("../css/fonts/MONTSERRAT-BOLD.OTF");
}

@font-face {
  font-family: Montserrat-Black;
  src: url("../css/font/MONTSERRAT-BLACK.OTF");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url("../css/fonts/MONTSERRAT-MEDIUM.OTF");
}

@font-face {
  font-family: Mona-Medium;
  src: url("../css/fonts/Mona-Sans-Medium.ttf");
}

@font-face {
  font-family: Mona-Bold;
  src: url("../css/fonts/Mona-Sans-Bold.ttf");
}

@font-face {
  font-family: Mona-Black;
  src: url("../css/fonts/Mona-Sans-Black.ttf");
}

.width100{
  float: left;
  width: 100%;
}

body{
  font-family: Raleway;
  font-size: 21px;
  line-height: normal;
  font-weight: normal;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
section{
  scroll-margin-top: 100px; 
}
#fullform{
    scroll-margin-top: 100px; 
}

/* Header starts */
/* Header */
header {
  background-color: #fff;
  padding: 10px 0;
}

/* Flex Layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Row layout */
.logo a {
  display: flex;
  align-items: center;
}

/* Each logo wrapper */
.logo-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Logo sizes */
.LBS-logo {
  height: 85px;
}

.acc-logo {
  height: 45px;
}

/* Spacing */
.logo-item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}

/* Divider line */
.logo-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #b4b4b4;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* MENU */
.menu_mainbox {
  display: flex;
  align-items: center;
}

.menu_box ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.menu_box li {
  list-style: none;
}

.menu_box li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  padding: 8px 14px;
  font-weight: 500;
  transition: 0.3s;
  font-family: 'Mona-Medium';
}

.menu_box li a:hover {
  background-color: #1A7000;
  color: #fff;
}

/* Toggle (mobile hidden) */
.toggle_menu {
  display: none;
}
/* Header Ends */


/* =========== Banner Section Start ============ */

#banner{
  margin: 0px 0 0 0 !important;
}
.banner_section{
  padding: 0;
}
.banner_box {
  background-image: url(../images/banner-img.webp);    
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  /* padding: 25px 0; */
  min-height: 711px;
  width: 100%;
}

.banner-content h1 span {
  color: #e32323;
  font-family: montserrat_black;
}

.banner-form {
  max-width: 350px;
  position: relative;
  border-radius: 40px;
  z-index: 1;
  margin: 0px 0 0 0;
}

.banner-form form {
  z-index: 2;
  position: relative;
  padding: 5px 20px 10px 20px
}

.banner-form h3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin: 15px 0;
}

.banner-form lable,
.tab-content h5,
.tab-content h6,
a.submit_btn {
  color: #fff
} 

textarea.form-control {
  resize: none;
  color: #a8a8a8;
  opacity: 1
}

.banner-form select.form-control {
  background: url("../images/new-images/arrow.png") 97% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #a8a8a8;
  cursor: pointer
}

.form-control::placeholder {
  color: #a8a8a8;
  opacity: 1
}

.form-control:-ms-input-placeholder {
  color: #a8a8a8;
  opacity: 1
}

.form-control::-ms-input-placeholder {
  color: #a8a8a8;
  opacity: 1
}


.banner-form-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 20px
} 

.banner-form .form-control {
  font-size: 12px;
  line-height: 18px;
  border-radius: 4px;
  height: auto;
  min-height: auto;
  padding: 8px;
  max-height: 60px;
  margin:0 0 10px 0;
}
.mobile_view {
  display: none;
}
.btn_submit {
  padding: 9px 25px;
  color: #fff !important;
  font-weight: 500;
  border: 2px solid;
  border-radius: 25px;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  background: linear-gradient(113deg, #efa51c 0, #f6ab007d 100%);
  font-family: 'Montserrat-Regular';
}

.btn_submit:hover{
  text-decoration: none;
  color: #efa51c !important;
  background: #fff !important;
  border: 2px solid #efa51c !important;
}

select {
color: #9e9e9e;
}
option:not(:first-of-type) {
color: black;
}

.loader { 
  display: none; 
  border: 4px solid rgba(255, 255, 255, 0.3); 
  border-top: 4px solid #efa51c; 
  border-radius: 50%; 
  width: 15px; 
  height: 15px; 
  animation: spin 1s linear infinite; 
  margin-left: 10px; 
} 

@keyframes spin { 
  0% { 
      transform: rotate(0deg); 
  } 

  100% { 
      transform: rotate(360deg); 
  } 
} 

.loading { 
  background-color: #ccc; 
  pointer-events: none; 
}


.widget-form {
    max-width: 65%;
    margin: 185px 0 0 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.banner_box {
    position: relative;
}
.ee-form-body{
  font-size: 12px !important;
}
.ee-form-widget .btn.btn-submit {
    font-size: 15px;
    color: #000 !important;
    background: #fff !important;
}
.ee-form-widget .btn.btn-submit:focus {
    color: #000 !important;
    background-color: #f5c9cc !important;
}
.ee-form-widget.ee-container {
    background-color: #f6bc00a6 !important;
    padding: 15px !important;
} 
.ee-form-widget .check-box-field>label:not(.error)>span {
  color: #fff;
}
.ee-form-heading {
  color: #26251a !important;
} 

/* Desktop: float widget over banner */
@media (min-width: 992px) {
  .form-banner-mainbox {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%); 
    z-index: 5;
  }

  .widget-form {
      margin: 185px 0 0 130px;
      max-width: 70%;
  }
}
/* -------BANNER-END--------- */

/* <!--------------------Counter On Scroll starts---------------------> */
.features {
  padding: 20px;
  background-color: #fff;
  color: #E87B2C;
  height: 90%;
  box-shadow: 0 4px 3px #e4e3df, 0 -3px 3px #e4e3df;
}
.features h2 {
  font-size: 55px;
  font-weight: 700;
}
.features p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}


/* SECTION */

 .lbs-features {
  margin-top: 0px;
  position: relative;
  z-index: 1;

  /* Background Image */
  background-image: url('../images/header-bg.webp');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;

  padding-bottom: 80px; /* space for bg visibility */
}

/* CONTAINER BOX */
.features-inner {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 25px 25px;
  border-radius: 25px; /* subtle, not too round */
  /* border: 1px solid #eee; */
  margin-top: -100px;
  box-shadow: 0px 20px 40px 0px #0000001A;
}

/* HEADING */
.features-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

.features-heading span {
  color: #00569f; /* subtle brand red */
}

/* STATS */
.stat-item {
  position: relative;
  padding: 20px 10px;
}

/* VERTICAL DIVIDER */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 0.5px;
  background: #000;
}

/* NUMBER */
.stat-item h3 {
  font-size: 34px;
  font-weight: 700;
  color: #1A7000;
  margin-bottom: 5px;
  font-family: Montserrat-Bold;
}

/* TEXT */
.stat-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {

  .features-inner {
    padding: 40px 25px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .stat-item:not(:last-child)::after {
    display: none; /* remove divider */
  }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 576px) {

  .features-heading {
    font-size: 22px;
  }

  .stat-item {
    padding: 15px 5px;
  }

  .stat-item h3 {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 13px;
  }
}
/*-------------------Counter On Scroll end---------------------*/

/*------------Career Section Starts----------------*/
/* Section */
.career-section {
  overflow: hidden;
  margin: 40px 0;
  padding-bottom: 70px;
}
.txt-heading{
  font-family: Mona-Black;
  font-size: 28px;
  color: #232323;
}
/* Feature items */
.feature-item {
  align-items: flex-start;
    position: relative;
}

.feature-item .icon img{
  width: 50px;
  margin-right: 15px;
  padding: 15px 0;
}

.feature-item p {
  margin: 0;
  color: #3E3E3E;
  font-family: Mona-Medium;
  padding: 0 250px 0 40px;
  font-size: 18px;
}

.feature-item::before {
    content: "";
    position: absolute;
    left: 14%;
    top: 10%;
    height: 75%;
    width: 0.5px;
    background: #D9D9D9;
}

/* Image wrapper */
.image-wrapper {
  position: relative;
}

/* Main Image */
.main-img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  width: 85%;
  top: 95px;
  left: -150px;
}

/* Overlapping Image */
.overlap-img {
  position: absolute;
  top: 14px;
  right: 55px;
  width: 70%;
  border-radius: 20px;
  z-index: 2;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

/* Green box */
.green-box {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #1A7000;
  bottom: -40px;
   right: 140px;
  z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .overlap-img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }

  .green-box {
    display: none;
  }
}

/*------------Career Section end----------------*/

/* -------------Recruiters section starts---------- */
.recruiters_section{
  background: #1A7000;
  padding: 40px 20px;
}
/* Slider wrapper */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.logo-track {
  display: flex;
  width: calc(200%); /* because duplicated */
  animation: scroll 25s linear infinite;
}

/* Each logo */
.rc-item {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 15px;
}

.rc-item img {
  width: 100%;
  border-radius: 30px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Hover effect */
.rc-item img:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* -------------Recruiters section ends----------   */

/* ===========Placement Section start============  */
/* SECTION BG */
.placement-section {
  overflow: hidden;
  padding: 60px 0 0 0;
}

.sub-text{
    color: #3E3E3E !important;
    font-size: 18px;
    font-family: 'Mona-Medium';
}

/* DOTTED BG */
.placement-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  top: 0;
  left: 0;
  background-image: url('../images/header-bg.webp'); /* your dots */
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}

/* CARD */
.placement-card {
  border-radius: 30px;
  overflow: hidden;
}

/* BOXES */
.box {
  padding: 30px;
  text-align: center;
}

.box h3 {
  color: #1A7000;
  font-weight: 700;
  font-size: 32px;
  font-family: 'Mona-Black';
}

.box p {
  margin: 0;
  color: #282828;
  font-family: 'Mona-Medium';
}

.student-img {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

/* ===========Placement Section ends============  */

/* -----------------Programme section start ----------------*/
.prog-section{
  padding: 60px 0;
}
.model-card{
  border-radius:20px;
  border:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
  font-weight:500;
  background: #1A7000;
  color: #fff;
  display: flex;
  flex-direction: row;
  height: 105px;
  align-items: center;
  position: relative;
}
.model-card h6{
  font-size: 18px;
  color: #fff;
  text-align: left;
  font-family: 'Mona-Bold';
  padding: 20px 25px;
}
.model-card .icon{
  width: 40%;
  position: relative;
}
.model-card .icon::after {
    content: "";
    position: absolute;
    left: 93%;
    top: 0;
    height: 100%;
    width: 0.5px;
    background: #D9D9D9;
}
/* ---------------Programme section end---------------------- */

/*------------------ about section starts----------------- */
.about-section {
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/footer-bg.webp') no-repeat center;
  background-size: contain;
  z-index: -1;
  top: -215px;
}

/* Green card */
.about-card {
  background-color: #1A7000;
  color: #fff;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  margin: 0 -60px 0 0;
}

/* Heading */
.about-card h2 {
  color: #FFC200;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 25px;
  font-family: 'Mona-Black';
}

/* Image */
.about-img-wrapper {
  position: relative;
}

.about-img {
  border-radius: 30px;
  width: 90%;
  height: 90%;
  object-fit: cover;
}

/* Overlap effect */
@media (min-width: 992px) {
  .about-img-wrapper {
    margin-left: -110px;
    margin-top: 80px;
  }
}

/* Text spacing */
.about-card p {
    font-size: 17px;
    line-height: 1.7;
    font-family: 'Mona-Medium';
}
/*---------------- about section end ---------------*/

/* ------------------Award section starts------------------- */
.awards-section {
  padding: 100px 0;
}

/* Title (same style reuse) */
.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #FFC200;
  text-align: left;
  font-family: 'Mona-Black';
}

/* Card */
.aw-box {
  background: #1A7000;
  width: 90%;
  margin: 0 auto;
  border-radius: 40px;
  padding: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.award-card, .award-card1{
  position: relative;
  margin: 0 auto;
}

.award-card1::after {
  content: "";
  position: absolute;
  left: 96%;
  top: -30px;
  height: 125px;
  width: 0.5px;
  background: #D9D9D9;
}

.award-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 280px;
  top: 25px;
  height: 70%;
  width: 0.5px;
  background: #D9D9D9;
}

/* Image */
.award-card .award1 {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}
.award-card .award2 {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}
/* ------------------Award section ends------------------- */

/* <!---------------- Eligibility section starts ------------------> */
.eligibility-section{
  padding: 20px 0;
}
.eligibility-section .txt-heading{
  font-family: 'Mona-Black';
  margin: 0 30px;
}
.eligibility-section ul li{
  font-family: 'Mona-Medium';
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  padding: 15px 30px 0 0;
  text-align: justify;
}
/* <!---------------- Eligibility section ends ------------------> */ 


/* ===========Top button starts============  */
#myBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 99;
  border: none;
  outline: 0;
  background-color: #FFC200;
  color: #000;
  cursor: pointer;
  padding: 5px;
  border-radius: 40px;
  font-size: 22px;
  opacity: 0.9;
  height: 40px;
  width: 40px;
}
#myBtn:hover {
  /* background-color: #555; */
  opacity: 1;
}
.reg-desk {
    display: none;
    position: fixed;
    bottom: 150px;
    right: 0;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #FFC200;
    color: #000;
    cursor: pointer;
    padding: 18px 5px;
    /* border-radius: 10px; */
    font-size: 15px;
    opacity: 0.9;
    height: 140px;
    width: 30px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    font-family: 'Montserrat-Medium';
  }
  .reg-desk:hover {
    /* background-color: #555; */
    opacity: 1;
  }
  .reg-desk a{
    color: #000;
  }

  .reg-mob{
      display: none;
  }
/* ===========Top button end============  */

/* ===========Footer section startts============  */
.footer-section-heading {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  background: #FFC200;
  border-radius: 30px;
  color: #000;
  padding: 5px 20px;
  width: 30%;
  font-family: 'Mona-Black';
}

footer {
  background-color: #272727;
  padding: 60px 0 10px 0;
  color: #fff;
}

footer p {
  font-family: 'Mona-Medium';
  line-height: 25px;
  font-size: 17px;
}
.footer_left_mainbox p span{
  font-size: 30px;
}
.footer_left_mainbox img{
  margin-bottom: 30px;
}
.footer_right_mainbox{
  float: right;
  position: relative;
}
footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover, .footer a:focus {
  color: #fff;
  text-decoration: none;
}
.footer_link{
  text-align: right;
  padding-right: 50px;
  margin-bottom: 30px;
}
.footer-icon{
    width: 19px;
    margin: 0 3px 0 0;
}
.footer_right_mainbox::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 0px;
    height: 90%;
    width: 0.5px;
    background: #D9D9D9;
}
.copyright{
  font-size: 12px;
  font-family: 'Mona-Medium';
}
/* ===========Footer section ends============  */

/* ===========Thank you page section start============  */
.thankyoutext {
  text-align: center;
  padding: 50px;
  font-family:Mona-Medium;
}
.thankyou_button {
  text-align: center;
  margin-bottom: 30px;
}
.thankyou_button .banner-btn {
font-size: 28px;
width: 86%;
padding: 40px;
color: #7c2357;
text-decoration: none;
}
.thankyou_banner_section{
  padding: 150px 0 120px 0;
  font-family: Mona-Medium;
}
.ty_btn {
  font-family: Mona-Medium;
  background: #1A7000;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: 0.4s;
}
.ty_btn:hover {
  text-decoration: none;
  color: #1A7000;
  background: #fff;
  border: 1px solid #1A7000;
}
.btn_tysubmit a {
  font-family: Mona-Medium;
  background: #00569f;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  text-transform: 0.4s;
  text-decoration: none;
}
.btn_tysubmit a:hover {
  text-decoration: none;
  color: #00569f;
  background: #fff;
  border: 1px solid #00569f;
}

/* ===========Thank you page section ends============  */

/* --------------------Responsive Section Starts----------------------------- */
@media screen and (min-width: 1600px) and (max-width: 2000px) {
  .navbarmob{
    display: none;
  }

.banner_box {
  background-image: url(../images/banner-img.webp);    
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-color: #a6c94540; */
  /* padding: 25px 0; */
  min-height: 880px;
  width: 100%;
}
.widget-form {
  margin: 230px 0 0 150px;
  max-width: 80%;
}
  .banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 180px
  } 
    .about-img {
    border-radius: 30px;
    width: 75%;
    height: 75%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1500px) {

#myBtn {
  display: block;
}

.banner_box {
  background-image: url(../images/banner-img.webp);    
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-color: #a6c94540; */
  /* padding: 25px 0; */
  min-height: 700px;
  width: 100%;
}
 .banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 80px
  } 
  .about-img {
    border-radius: 30px;
    width: 75%;
    height: 75%;
    object-fit: cover;
  }
  .career-section {
    overflow: hidden;
    margin: 40px 0;
    padding-bottom: 90px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  #mob-specialization{
    display: block;
  }

  #myBtn {
    display: block;
  }
}

@media (max-width: 1199px) {
.widget-form {
    margin: 15px 0 0 65px !important;
    max-width: 80%;
  }
  .feature-item p {
    padding: 0 186px 0 40px;
  }
}

@media (max-width: 1024px) {
  .menu_open{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
  }
    /* Default → show hamburger */
  .toggle_menu {
    display: block;
    cursor: pointer;
  }

  /* Hide close button initially */
  .toggle_menu_close {
    display: none;
  }

  /* When menu is open */
  .menu_open .toggle_menu {
    display: none; /* hide hamburger */
  }

  .menu_open .toggle_menu_close {
    display: block; /* show close */
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
  }
   .menu_box {
  width: 300px;
  background-color: #1A7000;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  transform: translateX(100%); /* hidden */
  transition: 0.3s ease;
  z-index: 500;
  padding-top: 60px;
}

.menu_open .menu_box {
  transform: translateX(0); /* slide in */
}
  .menu_box li{
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    border-bottom: 1px dotted #fff;
  }
  .menu_box li a{
    width: 100%;
    
    color: #fff;
    background-image: none !important;
    padding: 7px 25px;
    font-size: 16px !important;
  }
  .menu_box ul {
    display: flex;
    margin: 0 20px;
    flex-direction: column;
}
  .banner_box {
    background-image: url(../images/banner-img.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    /* background-color: #fefcf5; */
    padding: 25px 0;
    min-height: 556px;
    width: 100%;
  }
  .banner-form {
    margin: -18px 0 0 0;
  }

  .features-inner {
    margin-top: 0;
  }

  .feature-item p {
    padding: 0 186px 0 40px;
  }

  .award-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 240px;
  }

  .about-img-wrapper {
    margin-left: -68px;
    margin-top: 25px;
  }
  .our-courses .courses-box {
    padding: 20px;
    margin: 0 40px;
  }
 
  .navbarmob{
    display: none;
  }

  #myBtn {
    display: block;
  }
  .widget-form {
    margin: 15px 0 0 65px !important;
    max-width: 80%;
  }
  
}

@media screen and (max-width:992px) {

.thankyou_mainbox {
  height: auto;
  margin-bottom: 25px;
}
.thankyou_heading {
  font-size: 40px;
  text-align: center;
}
.thankyou_heading span {
  font-size: 25px;
}
/* .banner_box {
  background-image: url(../images/banner-mob-img.webp) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  margin: 0;
  min-height: 650px !important;
  background-color: #fff;
} */

/* .banner-form {
  margin: 580px auto 0 auto !important;
} */

.widget-form {
  max-width: 80%;
  box-shadow: none ;
}
#myBtn {
  display: block;
}
/* .lbs-features {
  margin-top: 95px;
} */
.main-img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  width: 85%;
  top: 95px;
  left: -10px;
}
.feature-item .icon img {
    width: 50px;
    margin-right: 15px;
    padding: 15px 10px 0 0;
}
.feature-item::before {
    content: "";
    position: absolute;
    left: 15%;
    top: 20%;
}
.feature-item p {
  padding:12px 0 0px;
  font-size: 16px;
}
.overlap-img {
  position: absolute;
  top: 14px;
  right: -62px;
  width: 70%;
  border-radius: 20px;
  z-index: 2;
}
.green-box {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #1A7000;
  bottom: -40px;
  right: 0;
  z-index: 0;
}
.box p {
  font-size: 16px;
}
.model-card .icon {
  width: 60%;
}
.model-card h6 {
  padding: 0px 5px;
}
.about-card h2 {
  font-size: 19px;
}
.about-card p {
  font-size: 14px;
}
.about-card {
  padding: 30px;
}
.aw-box {
  width: 100%;
}
.award-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 225px;
  top: 8px;
  height: 80%;
}
.footer_right_mainbox::before {
  left: -100px;
}
}

@media screen and (max-width:768px) {

.banner_form{
  width: 100%;
  margin: 0 0 50px 0;
}
.banner_girl{
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.banner_girl img{
  max-width: 150px;
}

body{
  font-size: 16px;
}

.courses_heading_grey{
  font-size: 14px;
  padding: 10px 40px;
}
.reimaging_list {
  width: 100%;
}
.reimaging_icon{
  text-align: right;
  width: 30%;
}
.reimaging_text{
  width: 60%;
  font-size: 44px;
  text-align: left;
  margin: 0 0 0 10px;
}
.more_btn_link a {
  width: 100%;
  margin: 0 0 10px 0;
}
.text35 {
  font-size: 25px;
}
.footer_box a {
  float: left;
  padding: 7px 20px;
  width: 100%;
  border-bottom: 1px dotted #ccc;
}
.banner_text{
  font-size: 40px;
  line-height: normal;
}
.owl-carousel_banner .owl-dots{
  margin: 0 20px 0px 0;
}

.about_left{
  padding: 60px 0px 10px 0px;
}

.footer_box{
  padding: 30px 0;
  text-align: center;
}
.footer_leftbox {
  width: 100%;
  margin: 0 0 40px 0;
}
.footer_logo{
  padding: 0 0 20px 0;
  text-align: center;
}
.footer_logo img{
  max-height: 100px;
}
.footer_content{
  width: 100%;
}
.footer_rightbox{
  width: 100%;
}
.footer_rightbox input[type="text"]{
  text-align: center;
}
.footer_rightbox .green_btn{
  float: none;
}

.login-popup .box .img-area{
  display: none;
}
.login-popup .box .form{
  flex: 0 0 100%;
  max-width: 100%;
}
#our-courses {
  padding: 20px 0;
}
.our-courses .courses-box {
  margin: 11px 0;
  text-align: center;
}
.our-courses .content-box {
  margin: 0 0 0 0;
}
.our-courses .courses-box h3 {
  margin-bottom: 0px;
}
.banner_box {
  background-image: url(../images/banner-img.webp) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  margin: 0;
  min-height: 460px !important;
  background-color: #fff;
  /* margin: 80px 0 0 0; */
}
.banner-form {
  margin: 440px auto 0 auto;
}
.reimaging_text .num-txt {
  margin: -73px 0px 0 92px;
}
.reimaging_text .num-txt1 {
  margin: -69px 0px 0 90px;
}
.about_img img {
  margin: 20px 0;
}
footer p {
  text-align: center;
}
.footer-section-heading {
  text-align: center;
  margin: 0 auto 20px auto;
}
.footer-section-heading::after {
  display: none;
  /* margin: 53px 0 0 43px;
  width: 60%; */
}
.navbarmob {
  display: block;
  overflow: hidden;
  background-color: #7c2357;
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 999999;
  margin-bottom: 0;
  width: 100%;
  min-height: auto
}

.navbarmob a {
  float: left;
  display: block;
  /* color: #1a1a1a; */
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
}

.navbarmob a:hover {
  background-color: #7c2357;
  color: #fff
}

.navbarmob a.active {
  background-color: #7c2357;
  color: #fff
}

.copyright {
  font-size: 12px;
  /* margin-bottom: 40px; */
  /* font-family: Montserrat-Medium; */
}
.section-heading::after {    
 display: none;
}

.banner-form {
  margin: 440px auto 0 auto !important;
}
.widget-form {
    /* margin: 20px auto; */
    /* margin: 440px auto 30px auto !important; */
    max-width: 50%;
}
.overlap-img {
  position: absolute;
  top: 14px;
  right: -25px;
}
.txt-heading {
  font-family: Mona-Black;
  font-size: 25px;
}
.reg-mob{
    display: block;
    overflow: hidden;
    background-color: #1A7000;
    color: #fff;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    margin-bottom: 0;
    width: 100%;
    min-height: auto
  }
  .reg-mob a {
    float: left;
    display: block;
    /* color: #1a1a1a; */
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
  }
    
  .reg-mob a:hover {
    color: #fff
  }
  
  .reg-mob a.active {
    /* background-color: #c5161d; */
    color: #fff
  }
  .reg-desk{
    display: none !important;
  }
  .copyright {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .eligibility-section ul li {
    text-align: justify;
    font-size: 14px;

  }
  .rc-item {
    width: 120px;
    margin: 0 10px;
  }
  .footer-logo{
    text-align: center;
  }
}

@media screen and (max-width:580px) {
.thankyou_banner_section {
  padding: 0 !important;
}
.thankyou_mainbox {
  height: auto;
  margin-bottom: 25px;
}
.thankyou_heading {
  font-size: 40px;
  text-align: center;
}
.thankyou_heading span {
  font-size: 25px;
}
.banner_box {
  background-image: url(../images/banner-mob-img.webp) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  margin: 0;
  min-height: 925px !important;
  background-color: #fff;
  margin: 0px 0 0 0;
}
.banner-form {
  margin: 800px auto 0 auto !important;
}

.section-heading {
  font-size: 35px;
}
.footer-section-heading::after {
  margin: 53px 0 0 43px;
  width: 60%;
}

.widget-form {
  max-width: 90%;
}

#footer_section, .footer_right_mainbox{
  text-align: center;
  float: none;
}
.footer_right_mainbox::before {
  display: none;
}
.footer-section-heading {   
  width: 60%;
  margin: 20px auto;
}
.footer_link {
  text-align: center;
}
.model-card .icon {
  width: 40%;
}
.overlap-img {
  position: absolute;
  top: 14px;
  right: 0px;
  width: 60%;
}
.main-img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  width: 85%;
  top: 95px;
  left: 0;
}
.feature-item .icon img {
  width: 50px;
  margin-right: 15px;
  padding: 15px 0px 0 0;
}
.txt-heading {
  text-align: center;
}
.about-card {
  margin: 0 0px 0 0;
  text-align: center;
}
.about-img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}
.award-card1::after, .award-card:not(:last-child)::after{
  display: none;
}
.section-title {
    text-align: center;
}
.award-card .award1 {
  max-height: 210px;
  margin-bottom: 30px;
}
.award-card .award2 {
  max-height: 210px;
}
.awards-section {
    padding: 40px 0;
}
.career-section {
  padding-bottom: 100px;
}
.LBS-logo {
    height: 60px;
}
.acc-logo {
    height: 35px;
}
.about-img-wrapper {
  margin-left: 0;
  margin-top: 25px;
}
}

@media screen and (max-width: 450px) {
.banner-form {
  margin: 760px auto 0 auto !important;
}

}
@media screen and (max-width: 380px) {
.banner-form {
  margin: 690px auto 0 auto !important;
}

.footer-section-heading::after {
  margin: 53px 0 0 15px;
  width: 65%;
}
.feature-item .icon img {
  width: 44px;
}
footer p {font-size: 14px;
}
}

@media screen and (min-width: 381px) and (max-width: 490px) {
/* .banner-form {
  margin: 800px auto 0 auto !important;
} */
}

@media screen and (max-width: 320px) {
.menu_mainbox {
  float: right;
  width: auto;
  position: relative;
  z-index: 50;
  margin: -85px 0 0 0;
}
.logo{
  width: 70%;
}
.banner-form {
  margin: 600px auto 0 auto !important;
}
.banner_box {
  background-image: url(../images/banner-mob-img.webp) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  margin: 0;
  min-height: 200px !important;
}
.LBS-logo {
    height: 45px;
}
.acc-logo {
    height: 30px;
}
.toggle_menu {
  margin: 85px 0px 0 0;
}
.feature-item::before {
  display: none;
}
.student-img {
    position: relative;
    z-index: 2;
    max-width: 250px;
}
footer p {
    font-size: 12px;
}
}
