@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600&family=Roboto:wght@300;400;500&family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #013197;
  --highlight-color: #e6272c;
  --s_backgound-color: #f1f5fa;
  --secondary-color: #ffffff;
  --text-color: #202020;
  --p-color: #696969;
  font-family: 'Montserrat', sans-serif;
  font-family: 'Rubik', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 15px;
}


#fixed_icons {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 9999 !important;
}

.fixed_icons {
  padding: 0;
  margin: 0;
}

.fixed_icons li {
  list-style: none;
  display: block;
  width: auto;
  padding: 10px 12.5px;
  margin-top: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: var(--secondary-color);
  font-size: 15px;
  transform: translateX(-100px);
  transition: all 0.3s ease-in;
}

.fixed_icons li:hover {
  transform: translateX(0px);
  transition: all 0.3s ease-in;
}

.fixed_icons li a span {
  position: relative;
  top: 7px;
}

.fixed_icons li a {
  display: flex;
  justify-content: space-between;
}

.fixed_icons li a img {
  width: 32px;
  height: 32px;
  margin-left: 15px;
}

.news {
  background: var(--primary-color);
}

.gallery {
  background: #FF7700;
}

.contact {
  background: var(--highlight-color);
}

.facilities {
  background: #2ECA7F;
}


#top_bar {
  width: 100%;
  height: auto;
  padding: 15px 0;
  background: var(--primary-color);
  z-index: 999 !important;
  display: flex;
  align-items: center;
}

.top_phone_mail {
  padding: 0;
  margin: 0;
  text-align: center;
}

.top_phone_mail li {
  display: inline-block;
  color: var(--secondary-color);
  padding-right: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15px;
  transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
  color: var(--secondary-color);
  padding-right: 5px;
  transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
  transition: all 0.3s ease-in;
  color: var(--secondary-color);
}

.c_d {
  position: relative;
}

.cd_t {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
}

.cd_t span {
  font-family: 'Montserrat', sans-serif;
  animation: color_change 900ms infinite;
  font-weight: 600;
  color: var(--highlight-color);
  letter-spacing: 0.35px;
}

@-webkit-keyframes color_change {
  50% {
    color: var(--secondary-color);
  }
}

@keyframes color_change {
  50% {
    color: var(--secondary-color);
  }
}

/* navbar  */

/* #header {
    position: sticky;
    top: 0;
    z-index: 999 !important;
}

.navbar-brand {
    padding: 0px 15px;
}

.navbar {
    width: 100%;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    margin: 0 !important;
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
    z-index: 0;
    position: relative;
}

.navbar:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--secondary-color);
    left: 0;
    top: 0;
    border-top-left-radius: 70px;
    z-index: -1;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding-top: 7px !important;
    font-size: 32px;
}

#logo {
    height: 66px;
    position: relative;
    top: 2px;
}

.navbar .navbar-nav>li>a {
    padding: 10px 10px;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 500;
    margin: 15px 0px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.navbar .navbar-nav>li>a:hover {
    font-size: 14px;
    font-weight: 500;
    color: var(--highlight-color) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    font-size: 14px;
    font-weight: 500;
    color: var(--highlight-color) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}


.dropdown-menu {
    padding: 0;
    border: none !important;
    border-radius: 0;
}

.dropdown li a {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: initial;
    font-weight: 500;
    color: var(--text-color) !important;
    letter-spacing: 0.15px;
}

.dropdown li a:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: initial;
    font-weight: 500;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background: none !important;
    color: var(--text-color) !important;
}

@media only screen and (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
} */


/* end navbar  */



nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* border-bottom: 5px solid #000000; */
  border-radius: 0 !important;
  box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
  background: var(--secondary-color);
  z-index: 9999;
  letter-spacing: -0.15px;
  /* padding: 5px 0; */
}

nav .navbar {
  height: 100%;
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  border-radius: 0 !important;
  border: none;
}

.navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 10px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.links li:hover .main-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 18px;
  line-height: 70px;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  color: #000000;
  transition: all 0.3s ease;
}

nav .navbar .links li .more-arrow {
  color: #000 !important;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 35px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  padding: 0;
  margin: 0;
}

nav .navbar .links li .sub-menu li a {
  color: #000000 !important;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: auto;
  right: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}

.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .menu-bars {
  display: none;
}

.navbar .menu-close {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 14px;
  }
}

@media (max-width:800px) {
  nav {
    /* position: relative; */
  }

  nav .navbar {
    display: block;
    padding: 0;
  }

  .navbar .menu-bars {
    display: block;
  }

  nav .navbar .nav-links {
    position: relative;
    top: 5px;
    right: 0;
    display: none;
    max-width: 100%;
    background: #ffffff !important;
    line-height: 40px;
    padding: 2.5px 10px;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  nav .navbar .links {
    padding: 15px;
    background: #000000 !important;
  }

  nav {
    border-bottom: none;
  }

  .nav-toggle {
    /* border-bottom: 5px solid #000000; */
    padding: 2.5px 0;
  }

  nav .navbar .links li a {
    font-size: 15px;
    color: #ffffff !important;
  }

  nav .navbar .sub-menu li a {
    color: #000000 !important;
  }

  nav .navbar .links li .more .arrow {
    color: #000000 !important;
    text-align: right !important;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }

  .navbar .links li .sub-menu a {
    width: 100%;
  }

  #logo {
    position: relative;
    left: 40px;
  }

  .menu-bars {
    font-size: 30px;
    color: #000000;
    position: absolute;
    right: 40px;
    top: 15px;
  }

  .menu-close {
    font-size: 30px;
    color: #000000;
    position: absolute;
    right: 40px;
    top: 15px;
  }

  .sub-menu .more-arrow {
    transform: rotate(90deg);
  }

  .navbar .links li .more-sub-menu li {
    padding: 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow {
    font-size: 20px;
    line-height: inherit !important;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
    float: right;
    color: #ffffff;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .main-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .main-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links .more.dropdown_toggle .more-arrow {
    transform: rotate(270deg);
  }

  .navbar .nav-links .main_dropdown.main_dropdown_toggle .main-arrow {
    transform: rotate(180deg);
  }
}

.navbar .nav-links .more.dropdown_toggle>.more-sub-menu {
  display: block !important;
}

.navbar .nav-links .main_dropdown.main_dropdown_toggle>.sub-menu {
  display: block !important;
}

@media (max-width:370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

#logo {
  height: 70px;
  /* position: absolute; */
  /* top: 0; */
}


/* end navbar  */


/* slider  */

#banner_video{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1 !important;
}
#banner_img{
  opacity: 0;
}
.carousel-caption{
  z-index: 9999 !important;
  position: relative;
}
.carousel-control.left {
  background-image: none !important;
}

.carousel-control.right {
  background-image: none !important;
}

.carousel-control {
  width: 5% !important;
  opacity: 1;
}

.carousel-control i {
  color: var(--secondary-color);
  font-size: 33px;
  position: absolute;
  top: 45%;
}

.cc_left {
  right: 0 !important;
}

.cc_right {
  left: 0 !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  color: var(--secondary-color);
  opacity: 1;
}


#main_slider {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: auto; */
  left: 0%;
  bottom: 0;
}

#box {
  position: relative;
  transition: all 1s;
  transform: scale(1);
}


@-webkit-keyframes s_heading {
  0% {
    transform: translatey(150px);
    opacity: 0;
  }

  50% {
    transform: translatey(150px);
    opacity: 0;
  }

  100% {
    transform: translatey(0px);
    opacity: 1;
  }
}

.slider_h {
  font-family: 'Montserrat', sans-serif;
  /* font-size: 48px; */
  font-weight: 800;
  line-height: inherit;
  transform: translatey(0px);
  animation-name: s_heading;
  animation-iteration-count: 1;
  animation-duration: 2s;
  transition: all 1s;
  color: var(--secondary-color);
  transform: translatey(0px);
}

.slider_p {
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding-bottom: 15px !important;
  color: var(--secondary-color);
  letter-spacing: 0.35px;
  transform: translatey(0px);
  animation-name: s_heading;
  animation-iteration-count: 1;
  animation-duration: 1.6s;
  transition: all 1s;
}

.slider_btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0px;
  background: var(--highlight-color);
  font-weight: 500;
  margin: auto;
  display: block;
  margin-top: 20px !important;
  transition: all 0.3s ease-in;
  color: var(--secondary-color);
  transform: translatey(0px);
  animation-name: s_heading;
  animation-iteration-count: 1;
  animation-duration: 2.4s;
  transition: all 1s;
  border-radius: 50px;
}

.slider_btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.c_w {
  color: #ffffff !important;
  padding-bottom: 15px !important;
}

/* slider  */

#about {
  width: 100%;
  height: auto;
  padding: 80px 0;
}

.badge {
  --badge-size: 160px;
  --badge-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--badge-size);
  height: var(--badge-size);
  background: var(--secondary-color);
  border-radius: 100%;
  box-shadow: inset 0 0 0 0.9rem var(--badge-color);
  animation: identifier 20s linear infinite;
  position: relative;
  z-index: 999;
}

#abt_img {
  position: relative;
  z-index: -1;
}

.badge__emoji {
  display: block;
  margin: 0;
  animation: identifier 20s linear infinite;
  animation-direction: reverse;
  transition: all 0.3s;
}

.badge__char {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - var(--char-width) / 2);
  height: calc(var(--badge-size) / 2);
  width: var(--char-width);
  background-repeat: round;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -20px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  transform-origin: bottom center;
  transform: rotate(var(--char-rotate));
}

@-webkit-keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.abt_sh {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.abt_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: inherit;
}

.abt_p {
  font-family: 'Roboto', sans-serif;
  padding-top: 10px !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--p-color);
  line-height: 30px;
  text-align: justify;
}
.ibt_p{
  font-family: 'Roboto', sans-serif;
  padding-top: 10px !important;
  font-size: 15px;
  font-weight: 400;
  color: var(--p-color);
  line-height: 30px;
}

.abt_btn {
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--primary-color);
  border: none;
  color: var(--secondary-color);
  margin-top: 20px;
  border-radius: 5px;
}

.ab_box {
  margin-bottom: 40px;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #E2E4FF;
  border-radius: 5px;
}

.abb_icon {
  padding: 20px 0;
  width: 65px;
  height: 65px;
  text-align: center;
  margin: auto;
  border-radius: 10px;
}

.abb_icon i {
  font-size: 30px;
}

.ab_box .green {
  background: rgba(46, 202, 127, 0.2);
}

.green i {
  color: #2ECA7F;
}

.abb_h {
  font-family: 'Montserrat', sans-serif;
  padding-top: 25px !important;
  font-weight: 600;
  font-size: 19px;
}

.ab_box .blue {
  background: rgba(7, 41, 77, 0.2);
}

.blue i {
  color: #07294D;
}

.orange {
  background: rgba(255, 119, 0, 0.2);
}

.orange i {
  color: #FF7700;
}

.pink {
  background: rgba(255, 44, 123, 0.2);
}

.pink i {
  color: #FF2C7B;
}

#admissions {
  width: 100%;
  height: auto;
  background: var(--s_backgound-color);
  text-align: center;
  padding: 80px 0;
}

.ad_sh {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: inherit;
}

.ad_p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--p-color);
  padding-top: 40px !important;
  line-height: 40px;
}

.ad_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: inherit;
  font-size: 62px;
}

.apply_course {
  padding: 0;
  margin: 0;
}

.apply_course li {
  display: inline-block;
  text-align: center;
  line-height: inherit;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.65px;
}

.ad_mh{
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  padding-top: 25px !important;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-align: center;
}

.ad_btn {
  padding: 15px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--highlight-color);
  border: none;
  color: var(--secondary-color);
  margin-top: 20px;
}

#courses {
  width: 100%;
  height: auto;
  padding: 80px 0;
  /* background-image: url(../../images/course_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left; */
  background: var(--secondary-color);
}

.course_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin: auto;
  margin-top: 40px;
  background: var(--secondary-color);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.ab_text {
  padding: 25px 15px;
}

.ab_th {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: inherit;
}

#diploma {
  width: 100%;
  height: auto;
  padding: 80px 0;
  /* background-image: url(../../images/course_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left; */
  background-color: var(--s_backgound-color);
}

#get_in_touch {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background: var(--primary-color);
  text-align: center;
  margin: auto;
}

.git_box {
  display: inline-block;
}

.git_box img {
  height: 65px;
  padding-right: 25px;
  position: relative;
  top: 20px;
}

.gitb_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary-color);
}

.gitb_btn {
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  margin-left: 25px;
  border-radius: 5px;
}

.abt_hh {
  font-family: 'Montserrat', sans-serif;
  padding-top: 25px !important;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
}

#admission_bottom {
  width: 100%;
  height: auto;
  padding: 80px 0;
}

#campus_life {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background-image: url(../../images/pattern.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cl_box img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: auto;
  margin-top: 40px;
  border: 2px dashed var(--primary-color);
  padding: 5px;
  position: relative;
  z-index: 999;
}

.clb_h {
  font-family: 'Montserrat', sans-serif;
  padding-top: 20px !important;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  text-align: center;
}


#why_choose {
  width: 100%;
  height: auto;
  padding: 80px 0;
}

.wc_box {
  display: flex;
  margin-top: 40px;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 10px;
  background: var(--s_backgound-color);
}

.wcb_icon i {
  color: var(--primary-color);
  padding-right: 10px;
  font-size: 24px;
}

.wcb_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-color);
}

#why {
  width: 100%;
  height: auto;
  padding: 80px 0;
}

.why_box {
  width: 100%;
  height: auto;
  padding: 25px 15px;
  border-radius: 10px;
  margin-top: 40px;
}

.blue {
  background: var(--primary-color);
}

.green {
  background: rgb(2, 60, 64);
}

.brown {
  background: rgb(98, 23, 8);
}

.yellow {
  background: rgb(246, 170, 28);
}

.wb_top {
  display: flex;
  justify-content: space-between;
  color: var(--secondary-color);
}

.wbt_p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 500;
}

.wbt_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-top: 5px !important;
}

.wbtt_i i {
  font-size: 42px;
  color: var(--secondary-color);
}

.wbt_wt {
  width: 100%;
  height: auto;
  padding: 10px;
  background: var(--secondary-color);
  margin-top: 40px;
  border-radius: 10px;
}

.wbtwt_p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
}

#infrastructure {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: var(--s_backgound-color);
}

.infrastructure_box {
  margin-top: 40px;
  background: var(--secondary-color);
}

.ib_img {
  position: relative;
}

.ib_img i {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  text-align: center;
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 21px;
  padding-top: 15px;
  position: relative;
  bottom: 25px;
  left: 15px;
  transition: all 0.3s ease-in;
}

.ib_text {
  padding: 20px;
  padding-top: 0;
}

.ibt_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-color);
  font-size: 19px;
}

.ibt_btn {
  padding: 10px 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--primary-color);
  border: none;
  color: var(--secondary-color);
  margin-top: 15px;
  border-radius: 5px;
}

.infrastructure_box:hover .ib_img i {
  background: var(--highlight-color);
  transition: all 0.3s ease-in;
}

.infrastructure_box:hover .ibt_h {
  color: var(--primary-color);
  transition: all 0.3s ease-in;
}

#awards {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background-color: var(--secondary-color);
}

#c_logo {
  margin-top: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#events {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: var(--s_backgound-color);
}

.event_h {
  padding-top: 15px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

#footer {
  width: 100%;
  height: auto;
  padding: 25px;
  background: var(--primary-color);
}

.footer_top_box {
  padding: 25px 15px;
  border-right: 1px solid var(--secondary-color);
  display: flex;
}

.br_none {
  border-right: none;
}

.footer_top_box i {
  width: 55px;
  min-width: 55px;
  height: 55px;
  font-size: 26px;
  text-align: center;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  padding-top: 12.5px;
  margin-right: 15px;
  margin-top: 15px;
}

.ftb_sh {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 400;
}

.ftb_h {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  letter-spacing: 0.35px;
  color: var(--secondary-color);
  line-height: inherit;
  padding-top: 5px !important;
}

.footer_p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--secondary-color);
  padding-top: 12px !important;
  line-height: 30px;
}

.footer_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: inherit;
  font-size: 20px;
  letter-spacing: 0.65px;
  margin-top: 20px !important;
}

.footer_social {
  padding: 0;
  margin: 0;
}

.footer_social li {
  width: 38px;
  height: 38px;
  list-style: none;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  color: var(--secondary-color);
  text-align: center;
  font-size: 16px;
  padding-top: 6px;
  display: inline-block;
  margin-top: 15px;
  margin-right: 2.5px;
}

.footer_links {
  padding: 0;
  margin: 0;
}

.footer_links li {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  margin-left: 20px;
  padding-top: 10px;
  line-height: 30px;
  letter-spacing: 0.35px;
  font-weight: 400;
}

.footer_bottom {
  background: rgba(255, 255, 255, 0.25);
  padding: 40px 25px;
  border-radius: 15px;
  margin-top: 25px;
}

.copy_p {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  line-height: 30px;
}


#events-news {
  width: 100%;
  height: auto;
  padding: 80px 0;
}

#video {
  margin-top: 25px;
}

.uen_box {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 400px;
  padding: 40px 20px;
  overflow: hidden;
  overflow-y: scroll;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  border-radius: 15px;
}

.uen_list {
  display: flex;
  justify-content: start;
  margin-bottom: 20px;
  align-items: center;
}

.uen_date {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-color);
  padding: 10px 20px;
  color: var(--secondary-color);
  text-align: center;
  margin-right: 20px;
  font-size: 20px;
  line-height: inherit;
  font-weight: 600;
  border-radius: 10px;
}

.uen_link a {
  font-family: 'Poppins', sans-serif;
  position: relative;
  /* top: 20px; */
  transition: all 0.3s ease-in;
}

.uen_link:hover {
  color: var(--highlight-color);
  transition: all 0.3s ease-in;
}

#bredcum {
  width: 100%;
  height: auto;
  padding: 120px 0;
  background: url(../../images/bredcum.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.bredcum_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bredcum_li {
  padding: 0;
  margin: 0;
}

.bredcum_li li {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  padding: 5px;
  letter-spacing: 0.35px;
  font-size: 18px;
  margin-top: 20px;
}

#inner_pages {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: var(--secondary-color);
}

.committee_box {
  width: 100%;
  height: auto;
  padding: 50px 25px;
  border: 1px solid var(--p-color);
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}

#committee_box_logo {
  height: 80px;
  margin: auto;
}

.cb_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding-top: 20px !important;
  font-size: 22px;
  line-height: inherit;
}

.cb_p {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  padding-top: 10px !important;
}

.cb_a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text-color);
  padding-top: 15px !important;
  display: inline-block;
}

.cb_a i {
  position: relative;
  left: 2.5px;
  top: 1.5px;
}

.cb_a:hover {
  color: var(--highlight-color) !important;
}

.cb_a::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 2px;
  background: var(--highlight-color);
  bottom: 42.5px;
  transition: all 0.3s ease-in;
}

.cb_a:hover::before {
  width: 100px;
  transition: all 0.3s ease-in;
}

.contact_l_box {
  padding-top: 40px;
}

.clb_box {
  width: 100%;
  height: auto;
  padding: 20px 15px;
  box-shadow: 0px 0px 5px 0px rgba(1, 49, 151, 0.25);
  border-radius: 10px;
  display: flex;
  transition: all 0.3s ease-in;
  margin-top: 30px;
}

.clbb {
  padding: 10px;
}

.clbb i {
  width: 65px;
  height: 65px;
  text-align: center;
  font-size: 25px;
  background: rgba(1, 49, 151, 0.15);
  border-radius: 10px;
  padding-top: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease-in;
}

.clbb_h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding-top: 5px !important;
}

.clbb_p {
  font-family: 'Poppins', sans-serif;
  color: var(--p-color);
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 26px;
  padding-top: 5px !important;
  font-weight: 500;
}

.clb_box:hover .clbb i {
  background: var(--primary-color);
  color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.c_t {
  color: var(--text-color);
}

#gap_bottom{
  padding-bottom: 80px;
}

.contact_r_box {
  width: 100%;
  height: auto;
  padding: 60px 25px;
  background: #e1ebff;
  border-radius: 15px;
  margin-top: -80px;
}

.contact_course_box{
  width: 100%;
  height: auto;
  padding: 60px 25px;
  background: #e1ebff;
  border-radius: 15px;
}

.c_form {
  padding: 15px;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  letter-spacing: 0.35px;
}

.c_form::placeholder {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  letter-spacing: 0.35px;
}

.c_btn {
  font-family: 'Montserrat', sans-serif;
  padding: 15px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
}


.about-wrapper {
  background: #ffffff;
  border-radius: 8px;
  padding: 45px 30px;
  box-shadow: 0 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}


.about-info {
  padding: 0 0 0 10px;
}

.about-info li {
  margin-bottom: 20px;
  padding: 0;
  align-items: center;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.about-info li h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.about-info li:last-child {
  margin-bottom: 0;
}

.about-info li .icon {
  font-size: 24px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #2ECA7F;
  background: rgba(46, 202, 127, 0.12);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.about-info li .cont {
  width: calc(100% - 52px);
  padding-left: 15px;
}

.about-info li .cont .title {
  margin: 0;
}

.about-info li:hover .icon {
  background: #2ECA7F;
  color: #ffffff;
}

.about-info li:nth-of-type(5n + 2) .icon {
  background: #FF7700;
  color: #FF7700;
  background: rgba(255, 119, 0, 0.12);
}

.about-info li:nth-of-type(5n + 2):hover .icon {
  background: #FF7700;
  color: #ffffff;
}

.about-info li:nth-of-type(5n + 5) .icon {
  background: #3B34FF;
  color: #3B34FF;
  background: rgba(59, 52, 255, 0.12);
}

.about-info li:nth-of-type(5n + 5):hover .icon {
  background: #3B34FF;
  color: #ffffff;
}

.about-info li:nth-of-type(5n + 4) .icon {
  background: #FF2C7B;
  color: #FF2C7B;
  background: rgba(255, 44, 123, 0.12);
}

.about-info li:nth-of-type(5n + 4):hover .icon {
  background: #FF2C7B;
  color: #ffffff;
}

.about-info li:nth-of-type(5n + 3) .icon {
  background: #34C0FF;
  color: #34C0FF;
  background: rgba(52, 192, 255, 0.12);
}

.about-info li:nth-of-type(5n + 3):hover .icon {
  background: #34C0FF;
  color: #ffffff;
}

@media (max-width: 991px) {
  .about-info {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .about-info {
    padding-top: 10px;
  }
}

#mv_img{
  margin: 20px 0;
  border-radius: 20px;
}

.founder_h{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding-top: 15px !important;
  text-align: center;
  color: var(--primary-color);
}
.founder_sh{
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding-top: 5px !important;
  color: var(--text-color);
}

.table{
  border: 1px solid var(--p-color);
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
  padding: 15px 10px;
  border: 1px solid var(--p-color);
}

.facilities_li{
  padding: 0;
  margin: 0;
  padding-top: 15px;
}
.facilities_li li{
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  line-height: 28px;
  margin-left: 15px;
  font-weight: 400;
  letter-spacing: 0.35px;
}