/* fonts */

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.woff2') format('woff2'), 
    url('font/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-ExtraBold.woff2') format('woff2'), 
    url('font/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
}
@font-face {
    font-family: 'Catamaran-Regular';
    src: url('font/Catamaran-Regular.ttf');
    font-weight: 400;
  }
  @font-face {
    font-family: 'Catamaran-SemiBold';
    src: url('font/Catamaran-SemiBold.ttf');
    font-weight: 600;
  }
body {
    font-size: 14px;
    line-height: 24px;
    font-family: 'Montserrat';
    color: #53534C;
    font-weight: 400;
    /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2F2F23;
}

h1 {
    font-size: 58px;
    line-height: 66px;
}

h2 {
    font-size: 38px;
    line-height: 45px;
}

h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
}

h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 18px;
}

h5 {
    font-size: 20px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 21px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #53534C;
    font-family: 'Montserrat';
}

img {
    max-width: 100%;
    height: auto;
}

img:focus {
    outline: none;
}

a {
    color: #B2001D;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    font-family: 'Montserrat';
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #444;
    outline: none;
}

.main-area ul li,
.main-area ol li {
    margin-bottom: 15px;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-bg {
    background-color: #224363;
}

.btn {
    color: #fff;
    background: #A30C13;
    border: solid 1px #B2001D;
    border-radius: 20px;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 10px;
    font-weight: 400;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn:hover,
.btn:focus {
    background: #fff;
    color: #B2001D;
}

header.page-header {
    /* position: fixed; */
    width: 100%;
    z-index: 100;
    top: 0;
    /* -webkit-transition: all .5s; */
    transition: all .5s;
}

/* .page-header {
    background-color: #fff;
    -webkit-transition: all .5s; 
    transition: all .5s;
} */


.logo{
  float: left;
  width: auto;
  /* max-width: 500px; */
  margin: 10px 0 10px 0;
}

.element-title{
    position: relative;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 32px;
    font-family: 'Montserrat';
}
.element-title .dark-font {
    font-weight: 900;
    color: #B40F15;
}

.element-title span {
    color: #B40F15;
    font-weight: 400;
}

h2.element-title.left {
    text-align: left;
}
section {
  scroll-margin-top: 100px; /* change as per header height */
}
#adm-process{
    scroll-margin-top: 100px; /* change as per header height */
}
/* Header Wrapper */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.header-container {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding: 12px 0px 12px 20px;
  flex-direction: column;
}

/* Logo */
.logo img {
  height: 26px;
  object-fit: contain;
}

/* Desktop Nav */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
}

/* .navbar ul li {
  margin: 0 0 0 15px;
} */

.navbar ul li a {
  text-decoration: none;
  color: #02244A;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  border-right: 1px solid #707070;
  padding: 0 10px;
}

.navbar ul li a:hover {
  color: #C12125;
}

.navbar ul li .last_menu {
    padding: 0px 10px;
    border: none;
}

/* Apply Button */
.apply-now-btn {
  background: #C12125;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.apply-now-btn:hover {
  background: #02244A;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
.navbar{
    margin-bottom: 0 !important;
}

/* -------------------------
   Mobile Menu
-------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #9a0601;
  padding: 20px;
  transition: 0.4s ease-in-out;
  z-index: 9999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px 0;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.close-menu {
  font-size: 35px;
  color: #fff;
  float: right;
  cursor: pointer;
}

 .applynow-btn{
    display: none;
    background-color: #c52f33;
    border-radius: 20px;
    text-decoration:none;
    padding: 8px 0px;
    color:#ffffff;
    text-align: center;
    }

.applynow-btn a{
    display:none;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat';
}

.applynow-btn:hover{
    color: #fff;
    font-family: 'Montserrat';
}

/* =========== Banner Section Start ============ */

#banner{
    margin: 0 !important;
  }
  .banner_section{
    padding: 0;
  }
  .banner_box {
    background-image: url(../images/banner-img.webp);     
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-color: #fff;
    /* padding: 25px 0; */
    min-height:637px;
    width: 100%;
  }
  
  .home_banner_slider {
    float: left;
    width: 100%;
    min-height: 630px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #050a10;
  }
  .banner-content h1,
  .banner-content h3 {
    color: #fff;
    font-family: 'Montserrat-Medium';
  } 
  
  .banner-content h1 span {
    color: #9c0b0d;
    font-family: 'Montserrat-Medium';
  }
  .banner4-content{
    margin-left:-30px !important;
  }
  .heading_banner {
    color: #FFF;
    font-size: 26px;
    line-height: 30px;
  }
  
  .heading_banner1 {
    color: #FFF;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
  }
  
  .heading_banner span {
    color: #9c0b0d;
    font-weight: 700;
  }
  
  /* banner section end */
  
  /* 5 Specialisations (Mobile Only) starts */
  .spl-section{
    display: none;
  }
  .spl-section .element-title {
    position: relative;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 32px;
    font-family: 'Montserrat';
}
/* Boxes */
.spl-box {
    background: #fff;
    padding: 25px 25px;
    border-radius: 12px;
    margin: 20px 0 0 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left: 5px solid #000;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    display: flex;
    gap: 12px;
    align-items: center;
}

.spl-box.box-right {
    margin-left: auto;
    border-right: 5px solid #000;
    border-left: none;
}

.spl-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Box Text */
.spl-box h4 {
    font-size: 20px;
    color: #A30C13;
    font-weight: 700;
    /* margin-bottom: 5px; */
    font-family: 'Montserrat';
}

.spl-box p {
    margin: 0;
    font-size: 15px;
}
.spl-box img{
    width: 15%;
    height: 5%;
}
  /* 5 Specialisations (Mobile Only) ends */

  /* <!------------------------form section start--------------------------> */
  .form-mainbox .form-heading {
    color: #000000;
    font-family: 'Montserrat';
    font-size: 30px;
    margin: 0 0 33px 0;
    text-align: center;
    font-weight: 900;
  }
  .form-mainbox {
    /* box-shadow: 0px 5px 28px #0000001A; */
    padding: 30px 45px 10px 45px;
    background-color: #f9f9f9;
    /* border-radius: 41px; */
    margin: 10px 0 0 0;
  }
  
  .form-box {
    position: relative;
    margin: 0 0 30px 0;
  }
  .form-label {
    background-color: #f9f9f9;
    font-family: 'Montserrat';
    position: absolute;
    top: -12px;
    left: 20px;
    color: #707070;
    padding: 0 2px;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
  }
  .form-box textarea, .banner-form-popup textarea{
    background-color: #f9f9f9;
    width: 100%;
    border: 1px solid #707070;
    line-height: normal;
    padding: 15px;
    border-radius: 5px;
    color: #707070;
    font-size: 12px;
    font-family: 'Montserrat';   
  }
  .form-control {
    background: #f9f9f9 0% 0% no-repeat padding-box !important;
    border: 0.5px solid #707070;
    border-radius: 7px;
    height: 45px;
  }
  select.form-control {
    background: url("../images/arrow.png") no-repeat 97% #f9f9f9 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #707070;
  }
  .form-mainbox .btn_submit{
    background-color: #c12125;
    color: #FFF;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid;
    font-family: 'Montserrat';
    padding: 5px 30px;
    transition-duration: 0.3s;
    font-weight: 800;
  }
  .form-mainbox .btn_submit:hover{
    background-color: #FFF;
    color: #c12125;
    border: 1px solid #c12125;
  }
  input:-internal-autofill-selected {
    background-color: #FFFF;
  }
  .loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #c12125; 
    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; 
  }
  .form{
    border-bottom: 1px solid;
    background: #f9f9f9;
  }

  .banner-form-wrap, .banner-form-popup .banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 45px;
}
.banner-form-popup{
    max-width: 510px;
    position: relative;
    background-color: #9d0c00;
    border-radius: 40px;
    z-index: 1;
}
/* =========== form section ends ============ */

/* -------------------Multiple Entry / Exit Options Section starts--------------------------- */
/* Section Base */
.wave-section {
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
    background: #faf7f5;
}

/* Wavy Background Shape */
.wave-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 350px;
    background: #A30C13;
    clip-path: ellipse(75% 45% at 50% 0%);
    z-index: 0;
}


/* Boxes */
.wave-box {
    background: #fff;
    padding: 25px 25px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left: 5px solid #000;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.wave-box.box-right {
    margin-left: auto;
    border-right: 5px solid #000;
    border-left: none;
}

.wave-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Box Text */
.wave-box h4 {
    font-size: 20px;
    color: #A30C13;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Montserrat';
}

.wave-box p {
    margin: 0;
    font-size: 15px;
}

.wave-info-box h4 {
    font-size: 22px;
    font-weight: 700;
}

.wave-info-box{
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    text-align: center;
}
.wave-info-box span{
   color: #A30C13;
   font-weight: 600;
}
/* Responsive */
@media (max-width: 768px){
    .wave-box,
    .wave-box.box-right {
        margin-left: 0 !important;
    }
    .wave-title {
        font-size: 28px;
    }
}

/* -------------------Multiple Entry / Exit Options Section ends--------------------------- */

/*--------Why Scms-N section starts----------------------------  */
.image-teaser-section {
    margin: 20px 0 0px 0;
    /* padding: 30px 0 20px; */
    padding: 40px 0 50px 0;
    background-image: radial-gradient(circle at 13% 47%, rgb(255, 246, 250) 0%, rgb(255, 246, 250) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(255, 205, 0, 0.1) 0%, rgba(255, 205, 0, 0.1) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgb(255, 246, 250) 0%, rgb(255, 246, 250) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03137254901960784) 0%, rgba(69, 69, 69, 0.03137254901960784) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.image-teaser-content p{
    text-align: justify;
    padding-left: 30px;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Montserrat';
}
.image-teaser img {
    box-shadow: -44px -44px 0 -39px #9a0601, 44px 44px 0 -39px #D4B35C;
    border: 6px solid #fff;
    width: 100%;
    margin-bottom: 30px;
}
/*--------Why Scms-N section ends----------------------------  */

/* Eligibility Box starts*/
/* Eligibility Box */
.eligibility-box {
    background: #ffffff;
    border-left: 6px solid #9a0601;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.eligibility-box .element-title{
    position: relative;
    text-align: left;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 32px;
    font-family: 'Montserrat';
}

.eligibility-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* Admission Process */
.admission-title {
    font-size: 32px;
    font-weight: 700;
    color: #801634;
    margin-bottom: 25px;
}

/* Step Flow Layout */
.admission-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    width: 30%;
    min-width: 260px;
    position: relative;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #D4B35C;
    text-align: center;
    transition: 0.3s;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 30px rgba(0,0,0,0.15);
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #801634;
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

.step-box p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
    font-family: 'Montserrat';
}

/* ELIGIBILITY section ends */

/*------------------Placement Highlights section starts----------------  */
.pl-highlts{
    background: #a30c13;
    padding: 0 0 30px 0;
    margin: 80px 0;
}

.pl-highlts .section-heading{
    font-size: 35px;
    font-family: 'Montserrat';
    font-weight: 800;
    line-height: normal;
    text-align: center;
    margin: 0 0 30px 0;
    color: #fff;
  } 

 /* The actual timeline (the vertical ruler) */
.pl-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .pl-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .tm-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  .tm-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -11px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .prog-left {
    left: 0;
  }
  
  /* Place the container to the right */
  .prog-right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .prog-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  /* Add arrows to the right container (pointing left) */
  .prog-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .prog-right::after {
    left: -13px;
  }
  
  /* The actual content */
  .pl-content {
    padding: 8px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    font-family: 'Montserrat';
    font-weight: 400;
  }
  .pl-content h3 {
    
    font-family: 'Montserrat';
    font-weight: 800;
  }
  .pl-content p{
    font-size: 20px;
  }
/*--------Placement Highlights section ends----------------------------  */


/* Ready Management Graduates section starts */
#mngmt-grad{
    background-color: #9a0601;
    width: 100%;
    max-height: 425px;
    padding: 50px 0 70px 0;
    margin-bottom: 150px;
}
.mngmt-grad .element-title {
    color: #fff;
    font-weight: 600;
 }
 .mngmt-grad .element-title span {
      color: #fff;
      font-weight: 400;
 }
   .mngmt-grad p{
    text-align: center;
    font-family: 'Montserrat';
    margin-bottom: 20px;
    line-height: 24px;
    color: #fff;
  }
  .mngmt-grad .pl-num-txt{
    float: left;
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    font-family: Montserrat;
    padding-top: 40px;
    font-weight: 900;
    color: #000;
  }
  .mngmt-grad .pl-reimaging_list{
    float: left;
    /* width:18%; */
    text-align: center;
  }
   .mngmt-grad .pl-reimaging_innerlist{
    float: left;
    width: 100%;
    transition-duration: 0.3s;
    margin: 2px 0 0 0;
    padding: 20px 0;
    /* border-radius: 20px; */
    border: 2px solid #fbc909;
    margin-bottom: 20px;
    height: 260px;
  }
  .mngmt-grad .pl-reimaging_innerlist:hover{
    margin: 0 0 2px 0;
    border: 1px solid #fbc909;
    transition-duration: 0.3s;
    box-shadow: 0 10px 10px #ececec;
  }
    .mngmt-grad .pl-reimaging_icon{
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
  }
    .mngmt-grad .pl-reimaging_icon img{
    max-width: 80px;
  }
  .mngmt-grad.pl-reimaging_text{
    float: left;
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    font-family: Montserrat-Medium;
    color: #000;
  }
  .mngmt-grad.pl-reimaging_text span{
    float: left;
    width: 100%;
    font-size: 12px;
    text-transform: capitalize;
    color: #000;
    font-family: Montserrat-Regular;
    padding: 0 15px;
  }
  .mngmt-grad.pl-reimaging_text p{
    float: left;
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    font-family: Montserrat-Medium;
    padding-top: 20px;
  }
    .mngmt-grad.pl-reimaging_text .num-txt {
    margin: -97px 0px 0 60px;
    font-size: 35px;
    }
   
/* Ready Management Graduates section ends */

/***************** Admission Process Section starts********************/
.admission-section {
    padding: 40px 0 30px;
}
.admission-img-wrap {
    position: relative;
}
.admission-img {
    padding: 40px 0 0;
}
.process {
    font-size: 17px;
    font-weight: 600;
    color: #B40F15;
    position: absolute;
    font-family: 'Montserrat';
}
.process.process-1 {
    left: 14%;
}
.process.process-3 {
    left: 46%;
}
.process span {
    color: #B40F15;
    /* color: #2F2F23; */
}
.process.process-5 {
    right: 14%;
}

.process.process-1, .process.process-3, .process.process-5 {
    top: 16%;
}

.process.process-2, .process.process-4, .process.process-6 {
    bottom: 10%;
}
.process.process-4 {
    right: 20%;
}   
.process.process-2 {
    left: 30%;
}
.process.process-6 {
    /* right: -3%; */
    right: 0;
}
/************** Admission Process Section ends***************/

/**************** Imp Dates section starts ********************/
.process-table {
    max-width: 850px;
    margin: 30px auto 20px;
    font-family: 'Montserrat';
}
.process-table .table th {
    font-size: 24px;
    color: #fff;
    background:#9c0b0d;
}
.date-section {
    padding: 30px 0;
}

tr,
th,
td {
    border: 1px solid #8888884D;
}

table th {
    text-align: center;
    color: #FFF;
    background: rgb(163, 12, 19);
    background: linear-gradient(180deg, rgba(163, 12, 19, 1) 0%, rgba(176, 14, 21, 1) 26%, rgba(194, 17, 23, 1) 100%);
}
.table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: transparent;
    color: var(--bs-table-striped-color);
}
/******************Imp dates section end *************/

/* -----------------Recruitments section start ----------------*/ 
 .our_recruiters_section{
    width: 100%;
    padding: 20px 0px 30px 0px;    
    /* background-color: #9a0601; */
    /* max-height: 313px; */
  }

  .our_recruiters_section .item{
    max-width: 200px;
  }
  .our_recruiters_section img{
    max-width: 200px;
  }

  /* .our_recruiters_section .owl-nav{
    display: none !important;
  } */
  .our_recruiters_section .hide-nav .owl-controls {
    display: none;
  }
  .our_recruiters_section .owl-dot{
    display: none;
  }
  .our_recruiters_section .item img{
    max-width:120px;
    margin: 0 auto;
  }
  .our_recruiters_section .item{
    padding: 8px;
    border-radius: 27px;
    border: 1px solid #DDd;
    max-width: 80%;
    margin: 0 auto;
    height: 130px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
  }
  .our_recruiters_section .owl-nav{
    float: left;
    width: 100%;
    margin: -7% 0 0 0;
    position: relative;
    z-index: 5;
    padding: 0 0px;
  }
  .our_recruiters_section .owl-nav button{
      float: left;
      width: 40px;
      background-image: url(../images/black_arrow.png) !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 46% !important;
      height: 40px;
      border: 1px solid #ccc !important;
      background-color: #fff !important;
      border-radius: 100px;
    }
  .our_recruiters_section .owl-nav .owl-next{
      float: right;
      transform: rotate(180deg);
  }
  .our_recruiters_section .owl-nav button span{
      display: none;
  } 
 
/* ---------------Recruitments section end---------------------- */

/*************** Footer Section starts*******************/
.footer-block h6 {
    text-transform: uppercase;
    color: #f7f7f7;
    font-size: 20px;
    line-height: 26px;
    margin: 0 auto 15px;
    font-family: 'Montserrat';
    font-weight: 800;
}

.footer-block address {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Montserrat';
}

.footer {
    font-family: 'Montserrat';
    background: #9a0601;
    padding: 80px 0 0 0;
}

.footer-block {
    padding-bottom: 10px;
}

.footer-menu,.footer-menu-links {
    display: block;
}

.footer-menu li, .footer-menu-links {
    padding: 0 0 10px;
}

.footer-menu li a{
    color: #fff;
    /* display: block; */
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}
.footer-menu-links h4, .footer-menu h4{
    color: #fff;
    /* display: block; */
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 800;
    line-height: 25px;
}
.footer-menu-links li a{
    color: #fff;
    /* display: block; */
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
.footer-menu li a:hover,
.footer-menu li a:focus,
.footer-menu-links li a:hover,
.footer-menu-links li a:focus {
    color: #fbc909;
    text-decoration: none;
}

.footer-block p{
    color: #fff;
    font-size: 16px;
    line-height: 29px;
    font-weight: 700;
}

ul.social-icons li {
    /* display: inline-block; */
    padding-top: 10px;
}

ul.social-icons li a {
    color: #2A2921;
    font-size: 14px;
    background-color: #fff;
    width: 27px;
    height: 27px;
    text-align: center;
    border-radius: 50%;
    padding: 5px 0;
    display: inline-block;
}

ul.social-icons li a:hover,
ul.social-icons li a:focus {
    color: #B40F15;
    background-color: #fff;
}
.made_by_text {
    padding: 5px 0;
    display: block;
    font-family: 'Montserrat';
    /* border-top: 1px solid #ddd; */
}
/*************** Footer Section ends*******************/

/* Top Button starts */
#myBtn {
    display: none;
    position: fixed;
    bottom: -15px;
    right: 0px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #c30005;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 40px;
    font-size: 22px;
    opacity: 0.9;
    height: 40px;
    width: 40px;
    opacity: 0.5;
  }
#myBtn:hover {
    /* background-color: #555; */
    opacity: 1;
}
.reg-desk {
    display: none;
    position: fixed;
    bottom: 170px;
    right: 0;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #d4b35c;
    color: #fff;
    cursor: pointer;
    padding: 11px;
    /* border-radius: 10px; */
    font-size: 18px;
    opacity: 0.9;
    height:150px;
    width: 45px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .reg-desk a{
    color: #fff;
    text-decoration: none;
  }
  .reg-desk a:hover {
    /* background-color: #555; */
    opacity: 1;
    color: #fff;
  }
/* Top Button ends */

/* ===========PopUp section starts============  */
.login-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
  overflow: scroll;
}
.login-popup.show{
	visibility:visible;
	opacity: 1;
}
.login-popup .box{
    position: absolute;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    display: flex;
    flex-wrap: wrap; 
    opacity: 0;
    transition: all 0.5s ease;
}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
}
.login-popup .box .img-area{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
	overflow: hidden;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popup .box .img-area h1{
	font-size: 30px;
}
.login-popup .box .img-area .img{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-image: url(../images/banner-img.webp);
	background-size: cover;
	background-position: center;
	animation: zoomInOut 7s linear infinite;
	z-index: -1;
    background-repeat: no-repeat;
}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popup .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
}

.login-popup .box .form h1{
	color:#000000;
	font-size: 30px;
	margin:0 0 30px;
}
.login-popup .box .form .form-control{
	height: 45px;
	margin-bottom: 30px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	/* color:#000000; */
}
.login-popup .box .form .form-control:focus{
	outline: none;
}
.login-popup .box .form label{
	font-size: 15px;
	color:#555555;
}

.login-popup .box .form .btn:focus{
	outline: none;
}

.login-popup .close{
  position: absolute;
  /* top: 35px;
  left: 20px; */
  top: 50px;
  left: 30%;
  font-size: 40px;
  cursor: pointer;
  float: left;
  color: #fff;
  z-index: 100;
  width: 3%;
      opacity: 1;
}

.login-popup select.form-control {
  background: url("../images/arrow1.png") 97% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000000ab;
  cursor: pointer
}
.login-popup h3{
  text-align: center;
 }
 
 /* webinar form */
  /* .banner-form-popup{
    max-width: 510px;
    position: fixed;
    background-color: #9d0c00;
    border-radius: 40px;
    z-index: 1;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
} */
.banner-form-popup form {
    z-index: 2;
    position: relative;
    padding: 10px 20px 30px 20px
}

 .webinar-img{
    padding: 0 0 20px 0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.banner-form-popup h4 {
    text-align: center;
    font-size: 25px;
    color: #fff;
    margin: 15px 0;
    font-family: 'Montserrat';
}
.banner-form-popup h6 {
    text-align: center;
    font-size: 22px;
    background: #fff;
    font-family: 'Montserrat';
    color:#950304;
    border: 2px solid;
    border-radius: 25px;
    padding: 10px 20px;
    width: 50%;
    margin: 10px auto;
    font-weight: 700;
}
.banner-form-popup p {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: normal;
}
.banner-form-popup p span {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: normal;
}
.banner-form-popup lable {
  color: #fff
} 
.banner-form-popup select.form-control {
  background: url("../images/arrow1.png") 100% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #707070;
  cursor: pointer
}
.banner-form-popup .banner-form-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 50px
} 
.banner-form-popup .form-control  {
  font-size: 11px;
  line-height: 18px;
  border-radius: 4px;
  height: auto;
  min-height: auto;
  padding: 8px;
  max-height: 60px;
  margin:0 0 10px 0;
  color: #000;
}
.banner-form-popup .btn_submit {
    background-color: #d4b35c;
    color: #FFF;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid;
    font-family: 'Montserrat';
    padding: 5px 30px;
    transition-duration: 0.3s;
    font-weight: 800;
  }
.banner-form-popup .btn_submit:hover {
    background-color: #FFF;
    color: #c12125;
    border: 1px solid #c12125;
  }
    .loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #c12125; 
    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; 
  }
/* ===========PopUp section end============  */

/* Responsive Section Starts */
@media screen and (min-width:1600px) and (max-width:2000px) {
     .banner_box{
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
        background-color: #fff;
        margin: 75px 0 0 0;
        min-height: 855px;
        width: 100%;
    }
    .banner-wrap {    
        background-size: cover;
        padding-bottom: 231px;
    }
    .enquire-form-wrap {
        display: flex;
        margin: 0 0 0 200px;
        justify-content: space-around;
    }
    .logo img {
        height: 40px !important;
        object-fit: contain;
    }

}
@media screen and (min-width:1300px) and (max-width:1599px) {
    .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; */
        margin: 75px 0 0 0;
        min-height: 610px;
        width: 100%;
   }
    .banner-wrap {    
        background-size: cover;
        padding-bottom: 31px;
    }
    .enquire-form-wrap {
        display: flex;
        margin: 0 0 0 200px;
    }
}

@media (max-width: 1400px) {
.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; */
        margin: 75px 0 0 0;
        min-height: 574px;
        width: 100%;
    }
    .container {
        max-width: 1170px;
    }
    .banner-wrap {   
            background-size: cover;
            /* padding-bottom: 161px; */
    }
    .enquire-form-wrap {
        display: flex;
        /* margin-left: 40px; */
        margin: 0px 0 0 195px;
    }
}
@media screen and (max-width:1200px) {   
.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; */
        margin: 75px 0 0 0;
        min-height: 574px;
        width: 100%;
    }
    /* -------TOP-MENU-START------ */
    .mainmenu{
        position: relative;
        z-index: 500;
    }
    .toggle_menu{
      display: block;
      position: fixed;
      right: 0;
      margin: 10px 10px 0 0;
      cursor: pointer;
    }
    .toggle_menu img{
      border-radius: 7px;
      max-width: 40px;
    }
    .top_rightmenu{
      position: fixed;
      background-color: #b40f15;
      margin: 70px -560px 0 0px;
      max-width: 300px;
      right: 0;
      padding: 30px 20px;
      transition-duration: 0.3s;
    }
    .mainmenu_open .top_rightmenu{
      margin: 50px 0 0 0;
    }
    
    .toggle_menu_close{
      display: none;
    }
    .mainmenu_open .toggle_menu_close{
      display: block;
    }
    .top_rightmenu ul{
      margin: 0;
    }
    .top_rightmenu li{
      width: 100%;
    }
    .top_rightmenu li a{
      width: 100%;
      color: #fff;
      font-size: 15px;
      text-align: center;
      border-bottom: 1px dashed;
      border-radius: 0;
    }
    /* -------TOP-MENU-END------ */
    .banner-wrap {
        background-size: contain;
    } 
    .navbar ul li a{
        font-size: 13px;
    }
}
@media screen and (max-width:1024px) {
    .image-teaser-section {
        margin: 0 !important;
        padding: 0 !important;
    }
    .process {
        font-size: 15px;
    }
    .our_recruiters_section .owl-nav {
        margin: -9% 0 0 0;
    }
    .our_recruiters_section .owl-nav button {
        width: 30px;
        height: 30px;
    }
    .enquire-form-wrap {
        display: flex;
        margin-left: 77px;
        justify-content: flex-end;
    }
    .banner_box {
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        background-color: #fff;
        /* padding: 25px 0; */
        min-height: 463px;
        margin: 65px 0 0 0;
        width: 100%;
    }
    .navbar, .apply-btn {
        display: none !important;
    }
    .menu-toggle {
        display: block !important;        
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 3%;
        height: 25%;
    }
    .header-container{
        display: flex;
        justify-content: space-between;
        padding: 12px 20px ;
        flex-direction: row;
        align-items: center;
    }
}

@media screen and (max-width:992px) {
 
.banner-content{
  max-width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 40px;
}

.enquire-form .form-inner{
  width: 100%;
}
.admission-img{
    display: none;
}
.admission-img-wrap .process{
  top: 0;
  left: 0;
  position: relative;
  width: 33%;
  float: left;
  min-height: 110px;
  text-align: center;
  background-color: #f4f4f4;
  border: 5px solid #fff;
  padding: 34px 0 10px 0;
  border-radius: 10px;
}
/* .image-teaser {
    padding: 80px 0;
} */
    .program_offered .nav a {
        color: #000;
        background-color: #eee;
        border-radius: 30px;
    }
    .our_recruiters_section .owl-nav button {
        width: 40px;
        height: 40px;
    }
     .banner_box {
        background-image: url(../images/banner-mobile-img.webp) !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        margin: 75px 0 0 0;
        min-height: 584px !important;
        background-color: #f9f9f9;
    }
    .enquire-form-wrap {
        margin: 0 0 0 0;
        /* margin-left: 77px; */
    }
    .enquire-form-wrap {
        display: flex;
        margin-left: 0;
        justify-content: space-around;
    }
    #mngmt-grad {
        max-height: 465px;
    }
    .spl-section{
        display: block;
    }
    .login-popup .close {
        position: absolute;
        top: 50px;
        left: 27%;
    }
    .login-popup .box {
        position: absolute;
        /* left: 50%;
        top: 320px !important; */
    }
    .applynow-btn{
    display: block;
    overflow: hidden;
    background-color: #d4b35c;
    color: #fff;
    position: fixed !important;
    bottom: 0;
    z-index: 999999;
    margin-bottom: 0;
    width: 100%;
    min-height: auto;
    border-radius: 0;
    left: 0px;
    font-family: 'Montserrat';
    padding: 5px;
    font-weight: 600;
}
.applynow-btn a{
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    align-items: center;
    font-family: 'Montserrat';
}   
.applynow-btn a:hover{
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat';
}
}

@media screen and (max-width:768px) {
    .image-teaser-section {
        margin: 0 !important;
        padding: 0 !important;
    }
    .pl-highlts{
        margin: 0;
    }
    .image-teaser-content p {
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
        margin-bottom: 0px;
    }
    .image-teaser-section.right-bg {
        background: none;
        border-top: solid 3px #C2161C
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .table.process-table td,
    .table.process-table th {
        padding: 12px 10px;
    }
    .banner-content h1{
        font-size: 40px;
    }
    .admission-img-wrap .process{
        width: 100%;
        min-height: inherit;
        padding: 20px 0;
    }
    footer{
        text-align: center;
    }
    .image-teaser {
        /* padding: 80px 0 !important; */
        width: 50%;
        /* margin-bottom: 30px; */
    }
    .pl-highlts .section-heading {
        font-size: 31px;
    }
    .date-section {
        padding: 30px 0 0 0;
    }
    .our_recruiters_section .owl-nav {
        margin: -11% 0 0 0;
    }
    .our_recruiters_section {
        padding: 0px 0px 20px 0px;
    }
    .artboard .board_list:hover .board_name {
        margin-top: 0 !important;
        background-position: 100% 100%;
    }
    .artboard .board_list {
        margin: 25px auto 0 auto;
    }
    .pl-content {
        padding: 8px 15px;
    }
    .pl-content h3 {
        font-size: 17px;
    }
    .pl-content p {
        font-size: 15px;
    }
    .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>td, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>thead>tr>th {
        /* white-space: nowrap; */
        white-space: normal !important;
    }
    .tabbing-contentbox p{
        margin-bottom: 0px;
    }
    .tabbing-contentbox .text-para{
        margin-bottom: 20px;
    }
    .bba-content .text-head, .bba-content .text-content {
        text-align: center;
        line-height: 25px;
    }
    .bba-content{
        margin-bottom: 20px;
    }
    .banner_box {
        background-image: url(../images/banner-mobile-img.webp) !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        margin: 65px 0 0 0;
        min-height: 455px !important;
        background-color: #f9f9f9;
    }
    .wave-section {
        position: relative;
        padding: 50px 0 40px;
    }
    #mngmt-grad {
        max-height: 495px;
    }
    .eligibility-box {
        margin: 0 0;
    }
    #adm-process{
        padding-bottom: 20px;
    }
    .menu-toggle {
        display: block !important;        
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 4%;
        height: 25%;
    }
    .login-popup .close {
        position: absolute;
        top: 50px;
        left: 19%;
    }
    /* .login-popup .close {
        position: absolute;
        top: -325px;
        left: 27%;
    } */
    /* .login-popup .box {
        position: fixed;
        left: 50%;
        top: 421px !important;
    } */
      .made_by_text{
        margin-bottom: 30px;
    }
    .reg-desk{
        display: none !important;
    }
}

@media screen and (max-width: 580px) {

a.logo {
    width: 84%;
}
.enquire-form{
    padding: 20px;
}
.highlight-img img{
    max-width: 100%;
}
.heighlight-wrap{
    padding: 30px 0px 20px 0px;
}
.banner-content{
    padding: 0 20px;
}
.banner-content h1{
  font-size: 28px;
  line-height: 40px;
}
.banner-content h2{
  font-size: 21px;
  padding: 20px;
  line-height: normal;
}
.heighlight-block{
    width: 100%;
}
.heighlight-block h6{
    font-size: 16px;
}
.footer-block {
  /* border-bottom: 1px dashed #6f6f6f; */
  margin: 0 0 20px 0;
}
.image-teaser {
    /* padding: 105px 0px !important; */
    width: 100%;
    /* margin-bottom: 30px; */
}
.banner-wrap {    
    padding: 230px 0 0 0 !important;
}

.pl-timeline::after {
    left: 31px;
}
.prog-right {
    left: 0%;
}
.prog-left::after, .prog-right::after{
    left: 3px;
    top: 20px;
}
/* .prog-right::after {
    left: -163px;
    top: 20px;
} */
.tm-container::before {
    left: 36px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.tm-container {
    width: 100%;
    padding-left: 46px;
    padding-right: 0px;
}
.pl-content h3 {
    font-size: 21px;
}
.pl-content p {
    font-size: 18px;
}
.tab-content {
    border-top: none;
    border-bottom: none;
}
.program_offered {
    margin-bottom: 0;
}
.date-section {
    padding: 0px 0;
}
.our_recruiters_section .owl-nav {
    margin: -18% 0 0 0;
}
.our_recruiters_section .owl-nav button {
    width: 25px;
    height: 25px;
}
 .banner_box {
    /* background-image: url(../images/banner-mob-img.webp); */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-color: #f9f9f9;
    padding: 25px 0;
    min-height: 257px !important;
    width: 100%;
}
.logo img {
    height: 15px;
    object-fit: contain;
}
.header-container {
    padding: 12px 15px;
    align-items: center;
}
.wave-bg {
    height: 330px;
}
.wave-section {
    padding: 40px 0 40px;
}
#mngmt-grad {
    background-color: #9a0601;
    width: 100%;
    height: auto !important;
    padding: 30px 0 0 0;
    max-height: fit-content;
    margin-bottom: 0;
}
.menu-toggle {
    display: block !important;
    background: #c12125;
    color: #fff;
    padding: 0 5px;
    border-radius: 8px;
    font-size: 22px;
    width: 8%;
    height: 25%;
}
.mngmt-grad .pl-num-txt,  .mngmt-grad .pl-reimaging_text span{
    color: #fff;
}
.login-popup .close{
        position: absolute;
        top: 73px;
        left: 8%;
    }
    .login-popup .box {
        position: absolute;
        /* left: 50%;
        top: 421px !important;
        width: 435px !important; */
    }
     .banner-form-popup {
        /* max-width: 285px; */
        position: relative;
        top: 0px;
    }
}

@media screen and (max-width: 380px){
    .banner-wrap {
        padding: 200px 0 0 0 !important;
    }
    .pl-highlts .section-heading:after {
       
        margin: 158px auto 0 auto;
    }
    .banner_box {
        background-image: url(../images/banner-mob-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #f9f9f9;
        /* padding: 25px 0; */
        margin: 65px 0 0 0;
        min-height: 230px !important;
        width: 100%;
    }
    .logo img {
        height: 13px;
        object-fit: contain;
    }
}

@media screen and (max-width: 320px){
    .banner_box {
        background-image: url(../images/banner-mob-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #f9f9f9;
        /* padding: 25px 0; */
        margin: 65px 0 0 0;
        min-height: 230px !important;
        width: 100%;
    }
    .logo img {
        height: 11px;
        object-fit: cover;
    }
    .menu-toggle {
        display: block !important;
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 10%;
        height: 25%;
    }
    .spl-box h4 {
        font-size: 15px;
    }
    .form-mainbox .form-heading {
        font-size: 25px;
    }
    .wave-box h4 {
        font-size: 16px;
    }
    .element-title, .mngmt-grad .element-title  {
        font-size: 28px;
    }
}
