

/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap");
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
  color: #ffbc3b !important;
  background-color: rgb(255, 170.5663265306, 8) !important;
  border-color: rgb(255, 170.5663265306, 8) !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

::selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFDC11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}
.list-styled li {
  position: relative;
  margin-bottom: 15px;
}
.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}

.navigation {
  background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: 0.2s ease;
}
@media (max-width: 991px) {
  .navigation {
    background: #1a1a37;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}

.nav-bg {
  background-color: #1a1a37;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}
@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}
.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}
.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}
.nav-item:hover::before, .nav-item.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
}
.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}
.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    text-align: center;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 250px 0 290px;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 250px 0 200px;
  }
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}
.hero-slider .prevArrow {
  right: 60px;
}
.hero-slider .nextArrow {
  right: 0;
}
.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}
.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}
.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}
@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}
@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 60px;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}
.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.play-btn i {
  line-height: 80px;
}
.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: 0.3s ease;
}
.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}
.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}
.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1;
}
.newsletter-block {
  padding-left: 50px;
}
@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}
.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}
.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 90px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 275px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}
.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}
.filter-controls li:hover {
  color: #ffbc3b;
}

.dny-main-logo {
  height: 180px;
  object-fit: cover;
}

/* DNY LATEST ANNOUNCEMENT BAR */

.latest-announcement {
  background: #ffffff;
  padding: 12px 0;
}

.announcement-wrap {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.announcement-title {
  background: #ffbc3b;
  color: #ffffff;
  font-weight: 700;
  padding: 15px 25px;
  white-space: nowrap;
}

.announcement-content {
  flex: 1;
  overflow: hidden;
  padding: 0 20px;
}

.announcement-content marquee {
  display: block;
}

.announcement-content a {
  color: #1e1e4b;
  font-weight: 600;
}

.notice-separator {
  color: #ffbc3b;
  margin: 0 30px;
}

@media (max-width: 767px) {
  .announcement-wrap {
    display: block;
  }

  .announcement-title {
    text-align: center;
  }

  .announcement-content {
    padding: 12px;
  }
}


/* ==================================
   DNY ABOUT & NOTICE BOARD
================================== */

.dny-about-notice {
  background: #ffffff;
}

.dny-section-heading {
  margin-bottom: 25px;
}

.dny-section-heading span {
  display: block;
  color: #ffbc3b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.dny-section-heading h2 {
  color: #1e1e4b;
  font-size: 38px;
  margin-bottom: 0;
}

.college-info-box {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  height: 100%;
  background: #f8f8f8;
  border-left: 4px solid #ffbc3b;
}

.college-info-box i {
  color: #ffbc3b;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 3px;
}

.college-info-box h5 {
  color: #1e1e4b;
  margin-bottom: 5px;
}

.college-info-box p {
  font-size: 14px;
  margin-bottom: 0;
}


/* NOTICE BOARD */

.notice-board {
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.notice-board-header {
  background: #1e1e4b;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  padding: 20px 25px;
}

.notice-board-header i {
  color: #ffbc3b;
}

.notice-board-body {
  padding: 5px 25px;
}

.notice-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eeeeee;
}

.notice-item:last-child {
  border-bottom: 0;
}

.notice-date {
  width: 62px;
  min-width: 62px;
  height: 62px;
  background: #ffbc3b;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding-top: 7px;
  margin-right: 18px;
}

.notice-date span {
  display: block;
  font-size: 24px;
  line-height: 26px;
}

.notice-text h5 {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 5px;
}

.notice-text h5 a {
  color: #1e1e4b;
}

.notice-text h5 a:hover {
  color: #ffbc3b;
}

.notice-text small {
  color: #888888;
}

.notice-board-footer {
  background: #f8f8f8;
  padding: 15px 25px;
  text-align: right;
}

.notice-board-footer a {
  color: #1e1e4b;
  font-size: 13px;
  font-weight: 700;
}


/* MOBILE */

@media (max-width: 767px) {

  .dny-section-heading h2 {
    font-size: 28px;
  }

  .notice-board-header {
    font-size: 19px;
  }

  .notice-board-body {
    padding: 5px 15px;
  }

}

/* ==================================
   DNY ACADEMIC PROGRAMMES
================================== */

.dny-small-title {
  display: block;
  color: #ffbc3b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.academic-intro {
  max-width: 650px;
  margin: 0 auto;
}

.academic-card {
  position: relative;
  background: #ffffff;
  padding: 40px 30px;
  height: 100%;
  border-bottom: 4px solid #ffbc3b;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.academic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.academic-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #fff5df;
  margin-bottom: 25px;
}

.academic-icon i {
  color: #ffbc3b;
  font-size: 34px;
}

.academic-card h3 {
  color: #1e1e4b;
  font-size: 24px;
  margin-bottom: 8px;
}

.programme-short {
  display: inline-block;
  color: #ffbc3b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.academic-card p {
  margin-bottom: 25px;
}

.academic-link {
  color: #1e1e4b;
  font-size: 13px;
  font-weight: 700;
}

.academic-link:hover {
  color: #ffbc3b;
}

.academic-link i {
  margin-left: 5px;
}

/* ==================================
   DNY PRINCIPAL MESSAGE
================================== */

.principal-section {
  background: #ffffff;
}

.principal-photo {
  position: relative;
  padding-right: 30px;
}

.principal-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.principal-name {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 75%;
  background: #1e1e4b;
  padding: 20px 25px;
  border-left: 5px solid #ffbc3b;
}

.principal-name h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

.principal-name p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
}

.principal-content {
  padding-left: 30px;
}

.principal-content .section-title {
  margin-bottom: 20px;
}

.principal-quote span {
  display: block;
  color: #ffbc3b;
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 45px;
  margin-bottom: 15px;
}
.principal-content p {
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 991px) {

  .principal-photo {
    padding-right: 0;
  }

  .principal-content {
    padding-left: 0;
  }

  .principal-photo img {
    height: auto;
  }

}



/* ==================================
   DNY FOUNDER & LEGACY
================================== */

.founder-section {
  background: #f7f7f7;
}

.founder-name {
  color: #1e1e4b;
  font-size: 30px;
  margin-bottom: 5px;
}

.founder-designation {
  display: inline-block;
  color: #ffbc3b;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-section p {
  font-size: 17px;
  line-height: 1.8;
}

.founder-legacy-box {
  display: flex;
  align-items: center;
  margin-top: 30px;
  background: #ffffff;
  border-left: 5px solid #ffbc3b;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.legacy-year {
  color: #ffbc3b;
  font-size: 38px;
  font-weight: 700;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #dddddd;
}

.legacy-text h5 {
  color: #1e1e4b;
  margin-bottom: 5px;
}

.legacy-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}


/* FOUNDER PHOTO */

.founder-photo {
  position: relative;
  text-align: center;
  padding: 20px;
}

.founder-frame {
  background: #ffffff;
  padding: 12px;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.founder-frame img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.founder-photo-caption {
  position: relative;
  width: 85%;
  margin: -30px auto 0;
  background: #1e1e4b;
  border-top: 4px solid #ffbc3b;
  padding: 18px 15px;
}

.founder-photo-caption h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

.founder-photo-caption p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 767px) {

  .founder-legacy-box {
    display: block;
  }

  .legacy-year {
    border-right: 0;
    border-bottom: 1px solid #dddddd;
    margin: 0 0 15px;
    padding: 0 0 10px;
  }

}


/* DNY LATEST NEWS & EVENTS */

.dny-event-card {
  background: #ffffff;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.dny-event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dny-event-image {
  position: relative;
  overflow: hidden;
}

.dny-event-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.dny-event-card:hover .dny-event-image img {
  transform: scale(1.05);
}

.dny-event-date {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 65px;
  background: #ffbc3b;
  color: #ffffff;
  text-align: center;
  padding: 8px 5px;
  font-size: 12px;
  font-weight: 700;
}

.dny-event-date span {
  display: block;
  font-size: 25px;
  line-height: 27px;
}

.dny-event-content {
  padding: 25px;
}

.event-category {
  display: block;
  color: #ffbc3b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.dny-event-content h4 {
  font-size: 21px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.dny-event-content h4 a {
  color: #1e1e4b;
}

.dny-event-content h4 a:hover {
  color: #ffbc3b;
}

.dny-event-content p {
  font-size: 14px;
  color: #777777;
}

/* ==================================
   DNY PHOTO GALLERY
================================== */

.dny-gallery-section {
  background: #ffffff;
}

.gallery-item {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: #1e1e4b;
}

.gallery-large {
  height: 544px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 25px 25px;
  background: linear-gradient(
    transparent,
    rgba(30, 30, 75, 0.95)
  );
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
}

.gallery-overlay i {
  color: #ffbc3b;
  font-size: 24px;
}

.gallery-overlay h4 {
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 0;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .gallery-large {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .gallery-item,
  .gallery-large {
    height: 280px;
  }
}

/* DNY FOOTER */

.footer-contact li {
  color: #8f8f9f;
  line-height: 1.7;
}

.footer-indent {
  margin-left: 28px;
}

.footer-email {
  word-break: break-word;
}

.footer h4 {
  font-size: 16px;
  letter-spacing: 1px;
}

.footer a.text-color {
  transition: 0.3s;
}

.footer a.text-color:hover {
  color: #ffbc3b !important;
  padding-left: 4px;
}
/* ==========================================
   DNY ACADEMIC PROGRAMMES PAGE
========================================== */

.academic-intro-text {
  font-size: 17px;
  line-height: 1.8;
}


/* PROGRAMME CARD */

.academic-programme-card {
  background: #ffffff;
  height: 100%;
  border: 1px solid #eeeeee;
  transition: 0.3s;
}

.academic-programme-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.programme-image {
  position: relative;
  overflow: hidden;
}

.programme-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.academic-programme-card:hover .programme-image img {
  transform: scale(1.05);
}

.programme-label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffbc3b;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 20px;
}

.programme-content {
  position: relative;
  padding: 35px 30px 30px;
}

.programme-icon {
  position: absolute;
  right: 25px;
  top: -32px;
  width: 65px;
  height: 65px;
  line-height: 65px;
  background: #1e1e4b;
  color: #ffbc3b;
  text-align: center;
  font-size: 28px;
}

.programme-content h3 {
  color: #1e1e4b;
  font-size: 25px;
  margin-bottom: 5px;
}

.programme-short-name {
  display: block;
  color: #ffbc3b;
  font-weight: 700;
  margin-bottom: 20px;
}

.programme-content > p {
  min-height: 135px;
  line-height: 1.7;
}


/* PROGRAMME INFO */

.programme-info {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  margin: 20px 0;
  padding: 15px 0;
}

.programme-info > div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.programme-info > div:last-child {
  margin-bottom: 0;
}

.programme-info i {
  color: #ffbc3b;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.programme-info span {
  font-size: 14px;
}

.programme-info strong {
  display: block;
  color: #1e1e4b;
  margin-bottom: 2px;
}


/* PROGRAMME DETAILS */

.programme-detail-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.programme-detail-title {
  border-left: 5px solid #ffbc3b;
  padding-left: 25px;
}

.programme-detail-title span {
  color: #ffbc3b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.programme-detail-title h3 {
  color: #1e1e4b;
  font-size: 28px;
  margin: 8px 0 12px;
}

.programme-detail-title p {
  margin-bottom: 0;
  line-height: 1.7;
}

.subject-item {
  background: #f7f7f7;
  padding: 18px 20px;
  color: #1e1e4b;
  font-weight: 600;
  height: 100%;
}

.subject-item i {
  color: #ffbc3b;
  margin-right: 10px;
}


/* ADMISSION INFO */

.admission-info-box {
  background: #ffffff;
  padding: 35px;
  border-top: 5px solid #ffbc3b;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.admission-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.admission-info-item i {
  color: #ffbc3b;
  font-size: 30px;
  margin-right: 18px;
}

.admission-info-item h5 {
  color: #1e1e4b;
  margin-bottom: 5px;
}

.admission-info-item p {
  margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 767px) {

  .programme-content > p {
    min-height: auto;
  }

  .programme-detail-box {
    padding: 25px 20px;
  }

  .programme-image img {
    height: auto;
  }

}

/* ==========================================
   DNY NOTICE PAGE
========================================== */

.dny-notice-page {
  background: #ffffff;
}


/* NOTICE ITEM */

.dny-notice-item {
  display: flex;
  background: #ffffff;
  border: 1px solid #eeeeee;
  margin-bottom: 25px;
  transition: 0.3s;
}

.dny-notice-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* DATE */

.notice-date {
  width: 125px;
  min-width: 125px;
  background: #ffbc3b;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 15px;
}

.notice-day {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}

.notice-month {
  font-size: 17px;
  font-weight: 700;
  margin-top: 5px;
}

.notice-year {
  font-size: 13px;
  margin-top: 3px;
}


/* CONTENT */

.notice-content {
  padding: 30px;
}

.notice-category {
  display: inline-block;
  color: #ffbc3b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.notice-category i {
  margin-right: 7px;
}

.notice-content h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.notice-content h3 a {
  color: #1e1e4b;
}

.notice-content h3 a:hover {
  color: #ffbc3b;
}

.notice-content p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.notice-read-more {
  color: #1e1e4b;
  font-size: 13px;
  font-weight: 700;
}

.notice-read-more i {
  color: #ffbc3b;
  margin-left: 7px;
  transition: 0.3s;
}

.notice-read-more:hover {
  color: #ffbc3b;
}

.notice-read-more:hover i {
  margin-left: 12px;
}


/* SIDEBAR */

.notice-sidebar-box {
  background: #f7f7f7;
  padding: 30px;
  margin-bottom: 30px;
  border-top: 5px solid #ffbc3b;
}

.notice-sidebar-box h4 {
  color: #1e1e4b;
  margin-bottom: 25px;
}


/* CATEGORY LIST */

.notice-category-list li {
  border-bottom: 1px solid #dddddd;
}

.notice-category-list li:last-child {
  border-bottom: 0;
}

.notice-category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555555;
  padding: 14px 0;
}

.notice-category-list a:hover {
  color: #ffbc3b;
}

.notice-category-list i {
  color: #ffbc3b;
  margin-right: 8px;
}


/* HELP BOX */

.notice-help-box {
  background: #1e1e4b;
  padding: 40px 30px;
  text-align: center;
}

.notice-help-box > i {
  display: block;
  color: #ffbc3b;
  font-size: 45px;
  margin-bottom: 20px;
}

.notice-help-box h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.notice-help-box p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
}


/* MOBILE */

@media (max-width: 767px) {

  .dny-notice-item {
    display: block;
  }

  .notice-date {
    width: 100%;
    min-width: 100%;
    padding: 18px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .notice-day {
    font-size: 30px;
  }

  .notice-month,
  .notice-year {
    margin-top: 0;
  }

  .notice-content {
    padding: 25px 20px;
  }

  .notice-content h3 {
    font-size: 20px;
  }

}


/* FIX NOTICE DATE TEXT CUTTING */

.dny-notice-item {
  align-items: stretch;
}

.notice-date {
  width: 125px;
  min-width: 125px;
  min-height: 190px;
  padding: 22px 15px;
  overflow: visible;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notice-day {
  display: block;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}

.notice-month {
  display: block;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  margin: 5px 0 0;
}

.notice-year {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  margin: 3px 0 0;
}

/* ==========================================
   DNY NEWS & EVENTS PAGE
========================================== */

.dny-events-page {
  background: #ffffff;
}


/* EVENT CARD */

.dny-event-card {
  background: #ffffff;
  height: 100%;
  border: 1px solid #eeeeee;
  transition: 0.3s;
}

.dny-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}


/* EVENT IMAGE */

.event-image {
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.dny-event-card:hover .event-image img {
  transform: scale(1.05);
}


/* EVENT DATE */

.event-date {
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 90px;
  min-height: 100px;
  background: #ffbc3b;
  color: #ffffff;
  text-align: center;
  padding: 12px 8px;
}

.event-date span {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.event-date strong {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.event-date small {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}


/* EVENT CONTENT */

.event-content {
  padding: 30px;
}

.event-category {
  display: block;
  color: #ffbc3b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.event-content h3 {
  font-size: 23px;
  line-height: 1.35;
  margin-bottom: 18px;
  min-height: 62px;
}

.event-content h3 a {
  color: #1e1e4b;
}

.event-content h3 a:hover {
  color: #ffbc3b;
}

.event-location {
  display: flex;
  align-items: flex-start;
  color: #777777;
  margin-bottom: 18px;
}

.event-location i {
  color: #ffbc3b;
  margin-right: 10px;
  margin-top: 4px;
}

.event-content > p:not(.event-location) {
  line-height: 1.7;
  min-height: 105px;
}


/* READ MORE */

.event-read-more {
  display: inline-block;
  color: #1e1e4b;
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
}

.event-read-more i {
  color: #ffbc3b;
  margin-left: 8px;
  transition: 0.3s;
}

.event-read-more:hover {
  color: #ffbc3b;
}

.event-read-more:hover i {
  margin-left: 13px;
}


/* EVENT CTA */

.event-cta-section {
  background: #ffbc3b;
  padding: 65px 0;
}

.event-cta-section span {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.event-cta-section h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.event-cta-section p {
  color: #ffffff;
  margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 767px) {

  .event-image img {
    height: auto;
  }

  .event-content {
    padding: 25px 20px;
  }

  .event-content h3,
  .event-content > p:not(.event-location) {
    min-height: auto;
  }

  .event-cta-section {
    padding: 45px 0;
  }

  .event-cta-section h2 {
    font-size: 28px;
  }

}

/* ==========================================
   DNY PHOTO GALLERY PAGE
========================================== */

.dny-gallery-page {
  background: #ffffff;
}


/* FILTER */

.gallery-filter li {
  cursor: pointer;
  padding: 12px 22px;
  margin: 5px;
  background: #f5f5f5;
  color: #1e1e4b;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.gallery-filter li:hover,
.gallery-filter li.active {
  background: #ffbc3b;
  color: #ffffff;
}


/* GALLERY CARD */

.gallery-card {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  background: #eeeeee;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}


/* OVERLAY */

.gallery-overlay {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  background: rgba(30, 30, 75, 0.88);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  padding: 20px;
}

.gallery-overlay-content i {
  display: inline-block;
  color: #ffbc3b;
  font-size: 35px;
  margin-bottom: 15px;
}

.gallery-overlay-content h4 {
  color: #ffffff;
  margin-bottom: 7px;
}

.gallery-overlay-content span {
  color: #dddddd;
  font-size: 14px;
}


/* GALLERY CTA */

.gallery-cta-section {
  background: #ffbc3b;
  padding: 65px 0;
}

.gallery-cta-section span {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery-cta-section h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.gallery-cta-section p {
  color: #ffffff;
  margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 767px) {

  .gallery-filter li {
    display: inline-block;
    padding: 10px 14px;
    font-size: 11px;
  }

  .gallery-card {
    height: 250px;
  }

  .gallery-cta-section {
    padding: 45px 0;
  }

  .gallery-cta-section h2 {
    font-size: 28px;
  }

}

/* =====================================
   DNY COLLEGE CONTACT PAGE
===================================== */

.dny-contact-section {
  background: #ffffff;
}

.dny-contact-small-title {
  display: block;
  color: #ffbc3b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-intro {
  font-size: 17px;
  line-height: 1.8;
  max-width: 750px;
}


/* Contact Form */

.contact-form-box {
  background: #ffffff;
  padding: 45px;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-box h3 {
  color: #1e1e4b;
}

.contact-form-box label {
  font-weight: 600;
  color: #1e1e4b;
  margin-bottom: 10px;
}

.contact-form-box .form-control {
  height: 55px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  padding: 12px 18px;
  font-size: 15px;
}

.contact-form-box textarea.form-control {
  height: auto;
  min-height: 150px;
  resize: vertical;
}

.contact-form-box .form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}


/* College Information */

.contact-info-box {
  background: #1e1e4b;
  padding: 45px 40px;
  height: 100%;
}

.contact-info-label {
  display: block;
  color: #ffbc3b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-info-item:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #ffbc3b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}

.contact-info-icon i {
  color: #ffffff;
  font-size: 20px;
}

.contact-info-item h5 {
  color: #ffffff;
  margin-bottom: 7px;
}

.contact-info-item p,
.contact-info-item a {
  color: #b9bdd1;
  margin-bottom: 0;
  line-height: 1.7;
  word-break: break-word;
}

.contact-info-item a:hover {
  color: #ffbc3b;
}


/* Map */

.dny-map-section {
  padding: 20px 0 100px;
  background: #ffffff;
}

.dny-map-box {
  border: 10px solid #ffffff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.dny-map-box iframe {
  display: block;
}


/* Mobile */

@media (max-width: 767px) {

  .contact-form-box {
    padding: 25px 20px;
  }

  .contact-info-box {
    padding: 35px 25px;
  }

  .dny-map-section {
    padding-bottom: 60px;
  }

  .dny-map-box iframe {
    height: 350px;
  }
}

.college-branding {
    padding: 0px 0 10px !important;
    margin: 0 !important;
}

.dny-main-logo {
    display: block !important;
    width: 100% !important;
    max-width: 580px !important;
    height: auto !important;
    margin: 0 auto !important;
}

.college-branding {
    padding: 0 0 8px !important;
    margin: 0 !important;
}

.dny-main-logo {
    display: block !important;
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;
    margin: -50px auto 0 !important;
}

.navigation {
    width: 100% !important;
}

.navigation .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navigation .navbar-nav {
    justify-content: center !important;
}


/* ===== FINAL HEADER FIX ===== */

/* Full width orange menu */
.navigation {
    width: 100% !important;
    max-width: 100% !important;
    background: #ffbc3b !important;
    margin: 0 !important;
}

.navigation .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navigation .navbar {
    width: 100% !important;
    background: #ffbc3b !important;
}

.navigation .navbar-collapse {
    width: 100% !important;
}

.navigation .navbar-nav {
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important;
}
.academic-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}