@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #menu-button {
  display: none;
}

#cssmenu {
  width: auto;
  line-height: 1;
  position: relative;
  z-index: 100;
}

/*#menu-line {

  position: absolute;

  top: 0;

  left: 0;

  height: 3px;

  background: #ffcb05;

  -webkit-transition: all 0.25s ease-out;

  -moz-transition: all 0.25s ease-out;

  -ms-transition: all 0.25s ease-out;

  -o-transition: all 0.25s ease-out;

  transition: all 0.25s ease-out;

}*/
#cssmenu > ul > li {
  float: left;
}

#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}

#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right > ul > li {
  float: right;
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu > ul > li > a {
  padding: 16px 10px;
  margin: 0px 0px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  font-size: 14px;
}

#cssmenu > ul > li > a:nth-child(8) {
  border: 0px;
}

#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #ab591c;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 29px;
}

#cssmenu > ul > li.has-sub > a::after {
  position: absolute;
  top: 14px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #000000;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}

#cssmenu li:hover > ul {
  left: auto;
}

#cssmenu.align-right li:hover > ul {
  right: 0;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  transition: height .2s ease;
}

#cssmenu ul li:hover > ul > li {
  height: 32px;
}

#cssmenu ul ul li a {
  padding: 11px 20px;
  font-size: 13px;
  background: #240375;
  text-decoration: none;
  color: #fff;
  min-width: 173px;
  white-space: nowrap;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #fee7b1;
}

#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #fee7b1;
}

@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: 100%;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu.align-center > ul,
  #cssmenu.align-right ul ul {
    text-align: left;
  }
  #cssmenu ul li,
  #cssmenu ul ul li,
  #cssmenu ul li:hover > ul > li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
  }
  #cssmenu > ul > li,
  #cssmenu.align-center > ul > li,
  #cssmenu.align-right > ul > li {
    float: none;
    display: block;
  }
  #cssmenu ul ul li a {
    padding: 12px 33px;
    font-size: 13px;
    color: black;
    background: none;
  }
  #cssmenu ul ul li a::before {
    content: '>>';
    position: absolute;
    top: 12px;
    left: 12px;
    display: block;
    color: #ca7171;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li a:hover {
    color: #000000;
  }
  #cssmenu ul ul ul li a {
    padding-left: 40px;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
  }
  #cssmenu > ul > li.has-sub > a::after,
  #cssmenu ul ul li.has-sub > a::after {
    display: none;
  }
  #menu-line {
    display: none;
  }
  #cssmenu #menu-button {
    display: block;
    padding: 15px 20px;
    color: black;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }
  #cssmenu #menu-button::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: black;
  }
  #cssmenu #menu-button::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 7px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    height: 36px;
    width: 52px;
    cursor: pointer;
  }
  #cssmenu .submenu-button::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #fff;
    z-index: 99;
  }
  #cssmenu > ul > li > a {
    padding: 11px 23px;
    margin: 0;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    border-right: 0px;
  }
  #cssmenu .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 18px;
    display: block;
    width: 11px;
    height: 1px;
    background: #fff;
    z-index: 99;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    display: none;
  }
}

.top-section {
  background-color: #0d2756;
  padding: 3px 0px;
}

.top-section ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  float: right;
}

.top-section ul li {
  float: left;
  padding: 0px 10px;
}

.top-section ul li button {
  padding: 2px 9px;
  font-size: 9px;
  margin: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #685898  !important;
}

.top-section .btn-login {
  background-color: #fff;
  padding: 3px 15px;
  border-radius: 10px;
  color: #000;
  font-size: 13px;
}

header ul {
  padding: 0px;
  margin: 0px -15px;
  list-style-type: none;
}

header ul li {
  /* border-right: 1px solid #000;*/
  padding: 5px 0px;
}

header ul li h5 {
  margin-bottom: 0px;
}

header ul li h5 span {
  font-weight: 600;
}

header ul li h3 {
  font-size: 25px;
}

header ul li:nth-child(2) {
  padding-top: 5px;
}

header ul li:last-child {
  border-right: 0px;
  padding-top: 10px;
}

header .navigation-box {
  background-color: #e6e7e8;
}

header .navigation-box .btn-candidate {
  background-color: #240975;
  border-radius: 50px;
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  margin: 5px 0px;
  padding: 6px 10px;
}

.slider-section {
  position: relative;
}

.slider-section .admission-box {
  position: absolute;
  bottom: -20px;
  z-index: 100;
  width: 100%;
}

.slider-section .admission-box ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.slider-section .admission-box ul li {
  padding: 0px;
  float: left;
  font-size: 15px;
}

.slider-section .admission-box ul li a {
  color: #fff;
}

.slider-section .admission-box ul li:nth-child(1) {
  background-color: #0b0575;
  padding: 10px 0px;
  text-align: center;
}

.slider-section .admission-box ul li:nth-child(2) {
  background-color: #3b33ce;
  padding: 10px 0px;
  text-align: center;
}

.slider-section .admission-box ul li:nth-child(3) {
  background-color: #9c99dc;
  padding: 10px 0px;
  text-align: center;
}

.updates-section {
  padding: 50px 0px;
}

.updates-section .admission-text-left {
  background-color: #60d4f7;
  padding: 10px;
  float: left;
  
  background-position: right 216px;
  background-repeat: no-repeat;
  min-height: 578px;
}

.updates-section .admission-text-left h4 {
  font-weight: 600;
  font-size: 23px;
}

.updates-section .admission-text-left .btn-knowmore {
  background-color: #240975;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  float: left;
  margin-top: 15px;
}
.updates-section .admission-text-left ul li{
  font-size: 14px;
}
.updates-section .important-box {
  background-color: #02045d;
  padding: 10px;
  
  background-position: right  275px;
  background-repeat: no-repeat;
  height: 578px!important;
  overflow-y: scroll!important;

}

.updates-section .important-box .header {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.updates-section .important-box .header ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.updates-section .important-box .header ul li {
  float: left;
  padding: 0px 10px;
  border-right: 1px solid #fff;
}

.updates-section .important-box .header ul li h3 {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
}

.updates-section .important-box .header ul li a {
  color: #fff;
}

.updates-section .important-box .header ul li:last-child {
  padding-right: 0px;
  border-right: 0px;
  position: relative;
  top: 5px;
}
.updates-section .important-list table {
  color: #fff;
}


.updates-section .important-box .header ul li:first-child {
  padding-left: 0px;
}

.updates-section .important-box .important-list ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.updates-section .important-box .important-list ul li {
  padding: 21px 0px;
  margin: 0px;
  font-size: 14px;
  color: #fff;
}

.updates-section .important-box .important-list ul li a {
  padding: 3px 10px;
  background-color: #fff799;
  border-radius: 50px;
  color: #000;
}

.important-dates-section {
  padding: 50px 0px;
}

.important-dates-section h2 {
  font-weight: 600;
  font-size: 42px;
}

.important-dates-section img {
  margin-top: 3px;
}

.important-dates-section .third-img {
  max-width: 62%;
}

.syllabi-section {
  padding: 50px 0px;
  background-image: url(../images/sillybg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.syllabi-section h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 50px;
}

.syllabi-section ul {
  padding: 0px;
  list-style-type: none;
}

.syllabi-section ul li {
  margin: 0px;
  color: #fff;
  text-align: center;
}

.syllabi-section ul li img {
  max-height: 68px;
}

.syllabi-section ul li h5 {
  font-weight: 500;
  margin-top: 18px;
  font-size: 16px;
}

footer {
  background-color: #432c74;
  padding: 50px 0px;
  color: #fff;
}

footer ul {
  padding: 0px;
  list-style-type: none;
}

footer ul li h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ccc;
}

footer ul li h6 {
  font-weight: 600;
}

footer .social-icon {
  margin-top: 40px;
}

footer .social-icon ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

footer .social-icon ul li {
  padding: 0px 8px;
  float: left;
}

footer .social-icon ul li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 100px;
}

footer .social-icon ul li .fa-facebook {
  background-color: #3b5998;
}

footer .social-icon ul li .fa-twitter {
  background-color: #60aade;
}

footer .social-icon ul li .fa-linkedin {
  background-color: #087bb9;
}

footer .social-icon ul li:first-child {
  padding-left: 0px;
}

footer .footer-btn {
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  display: block;
  border-radius: 50px;
  margin-top: 5px;
}

footer .footer-link {
  margin-top: 40px;
}

footer .footer-link ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

footer .footer-link ul li {
  padding: 5px 0px;
  font-size: 14px;
}

footer .footer-link ul li a {
  color: #fff;
}

.footer-logo {
  padding: 15px 0px;
}

.inside-body-section {
  padding: 30px 0px;
}

.inside-body-section .page-header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ed8e22;
}

.generel-list ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.generel-list ul li {
  padding: 10px 20px;
  margin: 10px 0px;
  background-color: #e8e8e8;
  border-left: 5px solid #e08745;
  font-size: 17px;
}

@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  header ul li {
    text-align: center;
  }
  header ul li .logo {
    width: 20%;
  }
  header ul li .jamtext {
    width: 32%;
  }
  header ul li h3 {
    font-size: 18px;
  }
  header ul li h5 {
    font-size: 14px;
  }
  header ul li:nth-child(2) {
    padding-top: 0;
  }
  .slider-section .admission-box {
    position: relative;
    bottom: -20px;
    z-index: 100;
    width: 100%;
  }
  .updates-section .important-box .header ul li h3 {
    margin: 0px;
    padding: 0px;
    font-weight: 500;
    font-size: 18px;
  }
  .updates-section .important-box .header ul li:last-child {
    padding-right: 0px;
    border-right: 0px;
    position: relative;
    top: 0;
  }
  .updates-section, .important-dates-section, .syllabi-section {
    padding: 20px 0px;
  }
  .syllabi-section ul li {
    margin: 15px 0px;
    color: #fff;
    text-align: center;
    max-width: 50%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .syllabi-section h2 {
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=custome-style.css.map */