@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
 /* font-size: 62.5%;*/
   font-size: 90%;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: heading;
  color: #131d3b;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 15px;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: heading;
  src: url(../marlboro/Marlboro.ttf);
}
.common-btn {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #BFC0C0;
  margin-top: 10px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fe4c02;
}
.common-btn:hover {
  background-color: #131d3b;
  color: #ffffff;
}

.readmore_common {
  color: #fe4c02;
  margin-top: 10px;
  display: inline-block;
}
.readmore_common:hover {
  padding-left: 5px;
  color: #131d3b;
}

.spacer {
  padding: 20px 0;
  margin: 20px 0;
}

.site_title p {
  color: #131d3b;
}
.site_title h2 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 50px 0;
}

.rammohon-middle {
  border-radius: 50%;
  border: 1px solid;
  padding: 5px;
  width: 100%;
}

.top-links {
  background-color: #131d3b;
  text-align: right;
}
.top-links ul li {
  display: inline-block;
}
.top-links ul li a {
  display: inline-block;
  color: #ffffff;
  padding: 5px 10px;
  border-left: 1px solid grey;
  font-size:14px;
}
.top-links ul li a:hover {
  color: #fe4c02;
}

.logo-area .top-add-box {
  text-align: end;
}
.logo-area .top-add-box ul li {
  display: inline-block;
}
.logo-area .top-add-box ul li a {
  display: inline-block;
  color: #131d3b;
  box-shadow: 0 2px 5px -3px #211f38;
  padding: 5px;
}
.logo-area .top-add-box ul li a:hover {
  color: #fe4c02;
}
.logo-area .top-add-box ul li a i {
  color: #ffffff;
  background-color: #131d3b;
  border-radius: 50%;
  padding: 5px;
  font-size: 10px;
}
.logo-area .social-box {
  text-align: end;
  margin-top: 10px;
}
.logo-area .social-box a {
  display: inline-block;
  box-shadow: 0 2px 5px -3px #211f38;
  padding: 5px;
}
.logo-area .social-box a i {
  color: #ffffff;
  background-color: #131d3b;
  border-radius: 50%;
  padding: 8px;
  font-size: 16px;
  transition: all 0.3s linear;
}
.logo-area .social-box a i:hover {
  background-color: #fe4c02;
  border-radius: 0;
}
.logo-area .social-box a .fa-facebook-f {
  padding: 7px 10px;
}

.latest-news {
  background: url(../img/bg-pat.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}
.latest-news::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 29, 59, 0.8901960784);
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.latest-news .ticker-wrapper-h {
  display: flex;
  position: relative;
  overflow: hidden;
  border: 2px solid #131d3b;
  background: #fff;
  /* border-radius: 50%; */
}
.latest-news .ticker-wrapper-h .heading {
  background-color: #131d3b;
  color: #fff;
  padding: 5px 20px;
  flex: 0 0 auto;
  z-index: 1000;
  position: relative;
  font-size: 20px;
}
.latest-news .ticker-wrapper-h .heading:after {
  content: "";
  position: absolute;
  top: 0;
  border-left: 34px solid #fe4c02;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  right: -34px;
  background: #fff;
}
.latest-news .news-ticker-h {
  display: flex;
  margin: 0;
  padding: 0;
  padding-left: 90%;
  z-index: 999;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: tic-h;
  animation-duration: 30s;
  gap: 40px;
}
.latest-news .news-ticker-h:hover {
  animation-play-state: paused;
}
.latest-news .news-ticker-h li {
  display: flex;
  width: 100%;
  align-items: center;
  white-space: nowrap;
  padding-left: 20px;
}
.latest-news .news-ticker-h li a {
  color: #131d3b;
  font-weight: 400;
}
.latest-news .news-ticker-h li a:hover {
  color: #fe4c02;
}
@keyframes tic-h {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.header {
  background: #ffffff;
}

.header .logo-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 10px 0;
}

.header .college-logo {
  background-color: #ffffff;
}

.header .inner {
  display: flex;
  gap: 15px;
}

.header .inner .col-name h1 {
  font-size: 35px;
  color: #131d3b;
  display: inline-block;
  letter-spacing: 1.5px;
  border-bottom: 3px solid #131d3b;
  text-transform: uppercase;
}

.header .inner .col-name p {
  color: #000;
  font-weight: 400;
}
.header .inner .col-name p a {
  color: #2e3094;
  font-weight: bold;
}
.header .inner .col-name p a:hover {
  color: #fe4c02;
}
.header .inner .col-name p i {
  color: #131d3b;
}
.header .inner .col-name p span {
  color: #fe4c02;
  font-weight: bold;
}
.wrapper .swiper-image {
    position: relative;
    overflow: hidden;
}
.wrapper .swiper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* same as background-size: cover */
    display: block;
}
.wrapper .arrow-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}
.wrapper .arrow-button svg {
  width: 33px;
  margin-left: 10px;
}
.wrapper .arrow-button svg circle {
  transition: fill 0.75s ease;
  fill: transparent;
}
@media (min-width: 425px) {
  .wrapper .arrow-button {
    font-size: 16px;
  }
  .wrapper .arrow-button svg {
    width: 45px;
  }
}
@media (min-width: 1024px) {
  .wrapper .arrow-button {
    font-size: 20px;
  }
  .wrapper .arrow-button svg {
    width: 62px;
  }
  .wrapper .arrow-button:hover {
    padding-left: 20px;
  }
  .wrapper .arrow-button:hover svg circle {
    fill: #8c97d0;
  }
}
@media (min-width: 1440px) {
  .wrapper .arrow-button {
    font-size: 15px;
  }
  .wrapper .arrow-button svg {
    width: 60px;
  }
}
@media (min-width: 1920px) {
  .wrapper .arrow-button {
    font-size: 18px;
  }
  .wrapper .arrow-button svg {
    width: 70px;
  }
}
.wrapper .home-showcase {
  position: relative;
}
.wrapper .home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 72vh;
  overflow: hidden;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
  width: 100%;
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
  width: 100%;
  height: 100%;
  background-color: #10112b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.8s ease-in 0.5s;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
  opacity: 0;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3.5% 0;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 50px;
  height: 2px;
  background-color: #131d3b;
  opacity: 1;
  transition: width 0.8s ease-in-out, 0.4s ease-in-out;
  margin: 0 4px !important;
}
.wrapper .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #fe4c02;
  width: 8vw;
}
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled,
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after,
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
  color: #131d3b;
}
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
.wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
  font-size: 4vw;
  color: #fe4c02;
  background: #ffffff;
  padding: 5px;
}
.wrapper .home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}
.wrapper .home-showcase .home-showcaseSlider #macaron #text-circle {
  animation: rotate-360 12s linear 0s infinite reverse forwards;
  transform-origin: center;
}
.wrapper .home-showcase .scrollSliderButton {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 0%);
  color: #fff !important;
  text-decoration: none;
  font-size: 3.5vw;
  height: 21vw;
  font-family: "CabinetGrotesk-light", sans-serif;
}
@media (min-width: 1024px) {
  .wrapper .home-showcase .home-showcaseSlider {
    display: block;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 450px;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    align-items: center;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    max-width: 75%;
    margin: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    margin: 0 0 1.25rem;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    bottom: 12%;
    left: 0;
    padding: 0 0 2.5% 5%;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 1.5vw;
    height: 3px;
    margin: 0 8px !important;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    width: 3vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 5% 2.5% 5%;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 0 0.6vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 1vw;
  }
  .wrapper .home-showcase .home-showcaseSlider #macaron {
    width: -moz-fit-content;
    width: fit-content;
    width: 8.4vw;
  }
  .wrapper .home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 40%);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9vw;
    height: 4.8vw;
  }
  .wrapper .home-showcase .scrollSliderButton .line {
    height: 4.8vw;
    width: 2px;
    background: #8c97d0;
    margin-top: 5px;
    animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
  }
}

.mission-vision {
  margin: 10px;
}
.mission-vision .bx-2 {
  background-color: #fe4c02 !important;
  border-bottom: 3px solid #131d3b !important;
}
.mission-vision .mission-box {
  padding: 40px 30px 40px;
  position: relative;
  height: 300px;
  background-color: #131d3b;
  border-bottom: 3px solid #fe4c02;
}
.mission-vision .mission-box:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(128, 128, 128, 0.2588235294);
}
.mission-vision .mission-box h2 {
  font-size: 30px;
  margin: 10px 0;
  color: #ffffff;
  display: inline-block;
  border-bottom: 2px solid #ffffff;
}
.mission-vision .mission-box p {
  color: #ffffff;
}
.mission-vision .main-box {
  box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
  position: relative;
  z-index: 1;
}
.mission-vision .imp-box {
  padding: 40px 30px 40px;
  background-color: #131d3b;
  height: 300px;
  border-bottom: 3px solid #fe4c02;
}
.mission-vision .imp-box ul {
  margin-top: 20px;
}
.mission-vision .imp-box ul a {
  display: block;
  font-size: 16px;
  margin: 10px 0;
  border-radius: 0;
}
.mission-vision .imp-box h2 {
  font-size: 30px;
  color: #ffffff;
  display: inline-block;
  border-bottom: 2px solid #ffffff;
}
.mission-vision .white_common {
  color: #ffffff;
}
.mission-vision .white_common:hover {
  color: #ffffff;
}

.center_text h5 {
  color: #fe4c02;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.center_text h2 {
  font-size: 35px;
  padding-bottom: 10px;
  position: relative;
}
.center_text .lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.center_text .lines .line1 {
  width: 31px;
  height: 4px;
  background-color: #fe4c02;
}
.center_text .lines .line2 {
  width: 31px;
  height: 4px;
  background-color: #e0e1e3;
}

.title-wrap h5 {
  color: #fe4c02;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.title-wrap h2 {
  font-size: 35px;
  padding-bottom: 10px;
}
.title-wrap .lines {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.title-wrap .lines .line1 {
  width: 31px;
  height: 4px;
  background-color: #fe4c02;
}
.title-wrap .lines .line2 {
  width: 31px;
  height: 4px;
  background-color: #e0e1e3;
}

.about-college {
  background-color: #f4f6f9;
}
.about-college .about-image {
  float: left;
  border: 1px solid #dee2e6;
  padding: 5px;
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px 10px 0 0;
}
.about-college .about-right {
  /*margin-top: 75px;*/
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  height: 630px;
}
.about-college .about-right p {
  text-align: justify;
}

.notice-section {
  background-color: #f4f6f9;
}
.notice-section .title-area {
  text-align: center;
}
.notice-section .title-area h2 {
  font-size: 35px;
  padding-bottom: 10px;
}
/*.notice-section .faq__accordian-main-wrapper {
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
}*/
.notice-section .neWs_date {
  display: inline-block;
  font-size: 12px;
  background: #131d3b;
  border-bottom: 3px solid #fe4c02;
  color: #fff;
  padding: 6px;
  position: absolute;
  left: 5px;
  top: 0;
  width: 65px;
  height: 50px;
  text-align: center;
}
.notice-section .neWs_date .year01 {
  display: block;
  border-top: 1px solid #ffffff;
}
.notice-section #faq__accordian-main-wrapper {
  max-width: 100%;
  margin: 0 auto;
}
.notice-section .faq__accordian-heading:nth-last-child(5) {
  margin-bottom: 0;
}
.notice-section .faq__accordian-heading {
  background: #131d3b;
  padding: 10px 30px 10px 10px;
  display: block;
  margin-bottom: 2px;
  position: relative;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  border: 2px solid #BFC0C0;
}
.notice-section .faq__accordian-heading::before {
  content: "\f107";
  color: #ffffff;
  font-family: fontawesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(0deg);
}
.notice-section .faq__accordian-heading.active {
  background: #fe4c02;
  color: #fff;
}
.notice-section .faq__accordian-heading.active::before {
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(360deg);
}
.notice-section .faq__accordian-heading.active::before {
  color: #ffffff;
}
.notice-section .faq__accordion-content {
  display: none;
}
.notice-section .view-btn {
  text-align: right;
}
.notice-section .view-btn .common_btn {
  display: inline-block;
  background: #131d3b;
  font-size: 18px;
  margin: 5px 0;
  color: #fff;
  padding: 5px 30px;
  border-radius: 10px;
}
.notice-section .view-btn .common_btn:hover {
  background-color: #fe4c02;
  color: #fff;
}
.notice-section .view-btn .common_btn:focus {
  box-shadow: none;
}
.notice-section marquee {
  height: 229px;
  background-color: #d9ddeb;
  padding: 10px;
}
.notice-section .qiick-links ul li {
  position: relative;
  min-height: 60px;
}
.notice-section .qiick-links ul li a {
  font-size: 16px;
  color: #000;
  display: block;
  font-weight: 400;
  padding-top: 0;
  padding-left: 75px;
}
.notice-section .qiick-links ul li a:hover {
  color: #fe4c02;
}
.notice-section .inner_impt {
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  background-color: #ffffff;
  padding: 10px;
  height: 310px;
}
.notice-section .inner_impt .btn-label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  background: #fe4c02;
}
.notice-section .inner_impt .btn-labeled {
  padding-top: 0;
  padding-bottom: 0;
}
.notice-section .inner_impt .qu-btn {
  color: #ffffff;
  position: relative;
  display: block;
  width: 90%;
  padding: 10px;
  font-size: 14px;
  border: 2px solid #BFC0C0;
  background-color: #131d3b;
  margin: 5px auto;
}
.notice-section .inner_impt .imp-box {
  padding: 40px 30px 40px;
  background-color: #131d3b;
  height: 300px;
  border-bottom: 3px solid #fe4c02;
}
.notice-section .inner_impt .imp-box ul {
  margin-top: 10px;
  height: 177px;
  overflow-y: scroll;
  scrollbar-color: #131d3b #ffffff;
}
.notice-section .principal-desk {
  padding: 10px;
  height: 310px;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
}
.notice-section .principal-desk .principal-image {
  position: relative;
}
.notice-section .principal-desk .principal-image::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  border-top: 5px solid #131d3b;
  border-left: 5px solid #131d3b;
}
.notice-section .principal-desk .principal-image::before {
  content: "";
  background-color: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  border-bottom: 5px solid #fe4c02;
  border-right: 5px solid #fe4c02;
  z-index: 2;
}
.notice-section .principal-desk .pri-image {
  float: left;
  margin: 6px 10px 0 0;
  text-align: center;
  text-align: center;
}
.notice-section .principal-desk .pri-image h2 {
  margin-top: 10px;
  font-size: 25px;
}
.notice-section .principal-desk .pri-image p {
  text-align: center !important;
}
.notice-section .principal-desk .pri-image img {
  width: 100%;
  height: 200px;
  padding: 5px;
  position: relative;
}
.notice-section .principal-desk p {
  text-align: justify;
}

.current-initiative .testimonial {
  margin: 0 20px 40px;
}
.current-initiative .testimonial .testimonial-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #ffffff;
  position: relative;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  height: 380px;
}
.current-initiative .testimonial .testimonial-content:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  border-top: 15px solid #ffffff;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.current-initiative .testimonial .testimonial-content:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  border-top: 15px solid #ffffff;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.current-initiative .testimonial-content .testimonial-icon {
  width: 50px;
  height: 45px;
  background: #131d3b;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.current-initiative .testimonial-content .testimonial-icon:before {
  content: "";
  border-bottom: 16px solid #131d3b;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.current-initiative .testimonial .description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}
.current-initiative .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 200px;
  border: 1px solid rgba(111, 120, 115, 0.5294117647);
  padding: 5px;
  display: block;
}
.current-initiative .owl-theme .owl-controls {
  margin-top: 20px;
}
.current-initiative .owl-theme .owl-controls .owl-page span {
  background: #ccc;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
.current-initiative .owl-theme .owl-controls .owl-page.active span,
.current-initiative .owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #0CCA4A;
}
.current-initiative .slick-dots {
  display: none !important;
}
.current-initiative .slick-dotted.slick-slider {
  margin-bottom: 10px !important;
}
.current-initiative .test-title {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.service {
  background-image: url(../img/row-bgimage-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
}
.service .title-wrap h2 {
  color: #ffffff;
}
.service .title-wrap p {
  color: #ffffff;
  text-align: justify;
}
.service .main-bx {
  border-top: 1px solid rgba(111, 120, 115, 0.5294117647);
  padding: 20px 0;
  margin-top: 30px;
  border-bottom: 1px solid rgba(111, 120, 115, 0.5294117647);
}
.service .box {
  text-align: center;
  border-right: 1px solid rgba(111, 120, 115, 0.5294117647);
}

.service .box i {
  font-size: 50px;
  color: #ffffff;
}
.service .box h2 {
  color: #ffffff;
  font-size: 40px;
  padding-top: 10px;
  color: #fe4c02;
  letter-spacing: 1px;
}
.service .box h5 {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
}
.service .course-box {
  margin-top: 35px;
}
.service .course-box i {
  color: #131d3b;
}
.service .course-box .list {
  height: 200px;
  overflow-y: scroll;
  background: #d9ddeb;
  padding: 10px;
  scrollbar-color: #131d3b #ffffff;
}
.service .course-box .list li {
  padding: 5px 0;
}
.service .course-box .list li a{
    color: #131d3b;
}
.service .course-box .nav-tabs {
  gap: 5px;
  border-bottom: 0;
}
.service .course-box .nav-tabs .nav-link {
  font-size: 16px;
  padding: 10px 40px;
  box-shadow: -6px 6px 4px #82848b;
  color: #ffffff;
  background-color: #131d3b;
  border-radius: 0;
  border: 0;
}
.service .course-box .nav-tabs .nav-item.show .nav-link,
.service .course-box .nav-tabs .nav-link.active {
  background-color: #fe4c02;
  color: #ffffff;
}

.gallery-section .slick-dots li button {
  display: none !important;
}
.gallery-section .slick-prev,
.gallery-section .slick-next {
  display: none !important;
}
.gallery-section .slick-slide img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section .slick-initialized .slick-slide {
  margin: 0 10px;
}
.gallery-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(254, 76, 2, 0.8509803922);
  transition: all 0.4s;
  opacity: 0;
}
.gallery-section .overlay p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.gallery-section .fancy-box-gallery {
  position: relative;
  border: 1px solid #fe4c02;
  padding: 5px;
  display: block;
}
.gallery-section .fancy-box-gallery:hover .overlay {
  width: 100%;
  opacity: 1;
}
.gallery-section .slick-dotted.slick-slider {
  margin-top: 40px;
}
.gallery-section .slick-dots {
  bottom: -45px;
}
.gallery-section .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #131d3b;
  border-radius: 50%;
}

.footer .top-footer {
  background-color: #131d3b;
  padding: 10px 0;
}
.footer .inner h2 {
  font-size: 25px;
  color: #ffffff;
  padding: 10px 0;
  border-bottom: 2px solid #ffffff;
}
.footer .inner ul li {
  font-size: 16px;
  color: #ffffff;
  padding: 5px 0;
}
.footer .inner ul li a {
  color: #ffffff;
  display: inline-block;
}
.footer .inner ul li a:hover {
  color: #fe4c02;
}
.footer .lower-footer {
  background-color: #fe4c02;
  text-align: center;
  padding: 10px;
}
.footer .lower-footer p {
  color: #ffffff;
}
.footer .lower-footer a {
  color: #ffffff;
  font-weight: bold;
}

.principal-main {
  padding: 10px 0;
}
.principal-main .principal-desk p {
  text-align: justify;
}
.principal-main .card-title {
  font-size: 25px;
  color: #ffffff;
}
.principal-main .card-body {
  text-align: center;
}
.principal-main .card {
  border-radius: 10px;
  color: #ffffff;
}
.principal-main .card-body {
  background-color: #131d3b;
}

.master-banner {
  position: relative;
  z-index: 1;
}
.master-banner img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.master-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 38, 122, 0.72);
}
.master-banner .banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* text-shadow: 0px 1px 1px #131d3b; */
  opacity: 0;
  animation: fadeInOut 2s ease-in-out infinite;
  border-top: 2px solid #fe4c02;
  border-bottom: 2px solid #fe4c02;
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.master-page {
  padding: 20px 0;
}
.master-page .center_text h2 {
  font-size: 30px;
}

.master-page .sidebar-menu {
  background-color: #131d3b;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
}

.master-page .tittle_menu {
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
}

.master-page .sidebar-menu .drop2x {
  position: absolute;
  right: 15px;
  top: 8px;
}

.master-page .sidebar-menu nav ul li:hover .submenu2 {
  max-height: 100%;
  visibility: visible;
  transform: translateY(0);
}

.master-page .sidebar-menu nav ul li a {
  font-size: 16px;
  padding: 5px 0;
  margin: 5px 0;
  color: #000;
  position: relative;
  background: -webkit-linear-gradient(top, #ededed 0%, #f9f9f9 100%);
  border-top: 1px solid #ddd;
  transition: all 0.5s;
  display: block;
  padding-left: 35px;
  border-radius: 10px;
}

.master-page .sidebar-menu nav ul li a::before {
  font-family: FontAwesome;
  display: inline-block;
  padding-right: 6px;
  padding-left: 10px;
  vertical-align: middle;
  content: "\f138";
  color: #000;
  position: absolute;
  left: 0;
  top: 5px;
}

.master-page .sidebar-menu nav ul li a:hover {
  background: #fe4c02;
  color: #ffffff;
  border: 0;
}
.master-page .sidebar-menu nav ul li a:hover::before {
  color: #ffffff;
}

.master-page .sidebar-menu nav ul li a:focus {
  background: #fe4c02;
  color: #ffffff;
  border: 0;
}
.master-page .sidebar-menu nav ul li a:focus::before {
  color: #ffffff;
}

.master-page .sidebar-menu nav .active {
  background: #fe4c02;
  color: #ffffff;
  border: 0;
}
.master-page .sidebar-menu nav .active::before {
  color: #ffffff;
}

.master-page .sidebar-menu .submenu2 {
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.3s linear;
}

.master-page .master-content {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
}

.master-page .master-content .master-title {
  text-align: center;
}

.master-page .master-content .inner {
  padding: 10px;
  margin: 5px 0;
  /*background-color: #d9ddeb;*/
}

.master-page .master-content .inner p {
  text-align: justify;
  padding: 5px 0;
  color: #000;
}

.master-page .table {
  margin-top: 10px;
  color: #000;
  background-color: #fff;
  text-align: center;
}

.master-page .table tr,
.master-page .table td,
.master-page .table th {
  border: 1px solid #888888;
}

.master-page .table thead {
  background-color: rgba(0, 0, 0, 0.2);
  color: #131d3b;
}

.master-page .table thead th {
  border-bottom: 0;
}

.master-page .table i {
  font-size: 22px;
  color: #131d3b;
}
.master-page .table i:hover {
  color: #fe4c02;
}

.master-page .nav-tabs {
  flex-direction: column;
  border: 0;
}

.master-page .nav-tabs .nav-link {
  border: 0;
  font-size: 16px;
  padding: 5px 0;
  margin: 5px 0;
  color: #000;
  position: relative;
  background: -webkit-linear-gradient(top, #ededed 0%, #f9f9f9 100%);
  border-top: 1px solid #ddd;
  transition: all 0.5s;
  display: block;
  padding-left: 35px;
  border-radius: 10px;
}

.master-page .nav-tabs .nav-link::before {
  font-family: FontAwesome;
  display: inline-block;
  padding-right: 6px;
  padding-left: 10px;
  vertical-align: middle;
  content: "\f138";
  color: #000;
  position: absolute;
  left: 0;
  top: 5px;
}

.master-page .nav-tabs .nav-link:hover {
  background: #fe4c02;
  color: #ffffff;
  border: 0;
}
.master-page .nav-tabs .nav-link:hover::before {
  color: #ffffff;
}

.master-page .tdesk .in_bx {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 10px;
  height: 350px;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  border-radius: 10px;
}

.master-page .tdesk .in_bx img {
  border-radius: 50%;
}

.master-page .tdesk .in_bx h4 {
  font-size: 22px;
  color: #000;
  margin-top: 10px;
}

.master-page .tdesk .in_bx p {
  color: #000;
  font-size: 14px;
  text-align: center;
  padding-top: 5px 0 0 0 !important;
}

.master-page .tdesk .in_bx .dtalis {
  font-size: 16px;
  background: #131d3b;
  color: #ffffff;
  padding: 5px;
  display: inline-block;
  margin: 5px;
  border-radius: 10px;
  width: 70%;
}

.single-gallery .fancy-box-gallery {
  position: relative;
  border: 1px solid #fe4c02;
  padding: 5px;
  display: block;
  margin-bottom: 10px;
}
.single-gallery .fancy-box-gallery:hover .overlay {
  width: 100%;
  opacity: 1;
}
.single-gallery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(254, 76, 2, 0.8509803922);
  transition: all 0.4s;
  opacity: 0;
}
.single-gallery .overlay p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.single-gallery img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.master-page .tdesk .in_bx .dtalis:hover {
  background: #fe4c02;
  color: #fff;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 650px;
  }
}
.techer-pop .topmodal .Right h3 {
  font-size: 25px;
  color: #000;
  font-style: italic;
}

.techer-pop .topmodal .Right P {
  font-size: 20px;
  color: #000;
}

.techer-pop .topmodal .Right h4 {
  font-size: 20px;
  color: #000;
}

.techer-pop .nav-tabs .nav-link {
  font-size: 12px;
  color: #000;
  background-color: #dee2e6;
  font-weight: 600;
}

.user-img {
  border-radius: 50%;
}

.techer-pop .nav-tabs .nav-item.show .nav-link,
.techer-pop .nav-tabs .nav-link.active {
  background-color: #131d3b;
  color: #ffffff;
}

.techer-pop .nav-tabs {
  border-bottom: 0;
  gap: 5px;
}

.techer-pop .academic-table h3 {
  font-size: 25px;
  color: #000;
  padding: 10px 0;
}

.techer-pop .table {
  font-size: 16px;
  color: #000;
  text-align: center;
}

.techer-pop .table thead {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
  border-bottom: 0;
}

.techer-pop .table tr,
.techer-pop .table td,
.techer-pop .table th {
  border: 1px solid grey;
}

.gallery .property-item .video:before {
  content: none !important;
  display: none !important;
}

.gallery .property-item .video:after {
  content: none !important;
  display: none !important;
}

.contact__us .college-name {
  font-size: 30px;
  text-align: center;
  background-color: #131d3b;
  border-radius: 30px 0;
  padding: 3px 0;
  color: #ffffff;
}
.contact__us .cont-box {
  margin: 10px 0;
  padding: 10px;
}
.contact__us .cont-box p {
  position: relative;
  padding-left: 25px;
}
.contact__us .cont-box i {
  color: #fe4c02;
  position: absolute;
  left: 0;
  top: 5px;
}
.contact__us .cont-box h3 {
  border-bottom: 1px solid #e7e1e1;
  font-size: 20px;
}
.contact__us .social-box {
  margin: 10px 0;
  padding: 10px;
}
.contact__us .social-box h3 {
  border-bottom: 1px solid #e7e1e1;
  font-size: 20px;
}
.contact__us .social-box a {
  display: inline-block;
  box-shadow: 0 2px 5px -3px #211f38;
  padding: 5px;
}
.contact__us .social-box i {
  color: #ffffff;
  background-color: #131d3b;
  border-radius: 50%;
  padding: 8px;
  font-size: 16px;
  transition: all 0.3s linear;
}
.contact__us .social-box .fa-facebook-f {
  padding: 7px 10px;
}

@media screen and (max-width: 376px) {
  .odd-1 {
    order: 1;
  }
  .odd-2 {
    order: 2;
  }
  .odd-3 {
    order: 3;
  }
  .odd-4 {
    order: 4;
  }
  .latest-news .news-ticker-h li a {
    font-size: 14px;
  }
  .top-links ul li a {
    font-size: 14px;
  }
  .header .inner {
    flex-direction: column;
    text-align: center;
  }
  .rammohon-middle {
    width: 48%;
    margin: 20px 0;
  }
  .mission-vision .main-box {
    margin-top: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 10px 2vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    background: #ccc;
  }
  .mission-vision .main-box {
    height: auto;
  }
  .mission-vision .imp-box ul {
    height: auto;
  }
  .mission-vision .mission-box:after {
    width: 0;
  }
  .about-college .about-right {
    padding-left: 5px;
    margin-top: 20px;
    height: auto;
  }
  .title-wrap h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .center_text h2 {
    font-size: 30px;
  }
  .center_text {
    margin-top: 20px;
  }
  .notice-section .principal-desk .pri-image img {
    width: 70%;
    height: auto;
  }
  .notice-section .principal-desk .principal-image::before {
    right: 57px;
    width: calc(100% - 220px);
    height: calc(100% - 138px);
  }
  .notice-section .principal-desk .principal-image::after {
    left: 57px;
    width: calc(100% - 203px);
    height: calc(100% - 114px);
  }
  .notice-section .principal-desk {
    height: auto;
  }
  .service .title-wrap .lines {
    justify-content: center;
  }
  .service .box {
    border: 0;
  }
  .service .course-box .nav-tabs .nav-link {
    padding: 10px 21px;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 250px;
  }
  .gallery-section .slick-prev,
  .gallery-section .slick-next {
    display: none !important;
  }
  .service .bx-3 {
    margin-top: 20px;
  }
  .service .title-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .gallery-section .slick-dots li button {
    display: none;
  }
  .gallery-section .mt-10 {
    margin-top: 0;
  }
  .footer .lower-footer p {
    font-size: 13px;
  }
  .master-banner .banner-title {
    font-size: 30px;
  }
  .spacer {
    margin: 0;
  }
  .notice-section .principal-desk .pri-image {
    float: none;
  }
}
@media screen and (min-width: 377px) and (max-width: 426px) {
  .odd-1 {
    order: 1;
  }
  .odd-2 {
    order: 2;
  }
  .odd-3 {
    order: 3;
  }
  .odd-4 {
    order: 4;
  }
  .latest-news .news-ticker-h li a {
    font-size: 14px;
  }
  .top-links ul li a {
    font-size: 14px;
  }
  .header .inner {
    flex-direction: column;
    text-align: center;
  }
  .rammohon-middle {
    width: 48%;
    margin: 20px 0;
  }
  .mission-vision .main-box {
    margin-top: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 10px 2vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    background: #ccc;
  }
  .mission-vision .main-box {
    height: auto;
  }
  .mission-vision .imp-box ul {
    height: auto;
  }
  .mission-vision .mission-box:after {
    width: 0;
  }
  .about-college .about-right {
    padding-left: 5px;
    margin-top: 20px;
    height: auto;
  }
  .title-wrap h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .center_text h2 {
    font-size: 30px;
  }
  .center_text {
    margin-top: 20px;
  }
  .notice-section .principal-desk .pri-image img {
    width: 70%;
    height: auto;
  }
  .notice-section .principal-desk .principal-image::before {
    right: 57px;
    width: calc(100% - 220px);
    height: calc(100% - 138px);
  }
  .notice-section .principal-desk .principal-image::after {
    left: 57px;
    width: calc(100% - 203px);
    height: calc(100% - 114px);
  }
  .notice-section .principal-desk {
    height: auto;
  }
  .service .title-wrap .lines {
    justify-content: center;
  }
  .service .box {
    border: 0;
  }
  .service .course-box .nav-tabs .nav-link {
    padding: 10px 21px;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 250px;
  }
  .gallery-section .slick-prev,
  .gallery-section .slick-next {
    display: none !important;
  }
  .service .bx-3 {
    margin-top: 20px;
  }
  .service .title-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .gallery-section .slick-dots li button {
    display: none;
  }
  .gallery-section .mt-10 {
    margin-top: 0;
  }
  .footer .lower-footer p {
    font-size: 13px;
  }
  .master-banner .banner-title {
    font-size: 30px;
  }
  .spacer {
    margin: 0;
  }
  .notice-section .principal-desk .pri-image {
    float: none;
  }
}
@media screen and (min-width: 427px) and (max-width: 431px) {
  .odd-1 {
    order: 1;
  }
  .odd-2 {
    order: 2;
  }
  .odd-3 {
    order: 3;
  }
  .odd-4 {
    order: 4;
  }
  .latest-news .news-ticker-h li a {
    font-size: 14px;
  }
  .top-links ul li a {
    font-size: 14px;
  }
  .header .inner {
    flex-direction: column;
    text-align: center;
  }
  .rammohon-middle {
    width: 48%;
    margin: 20px 0;
  }
  .mission-vision .main-box {
    margin-top: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 10px 2vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    background: #ccc;
  }
  .mission-vision .main-box {
    height: auto;
  }
  .mission-vision .imp-box ul {
    height: auto;
  }
  .mission-vision .mission-box:after {
    width: 0;
  }
  .about-college .about-right {
    padding-left: 5px;
    margin-top: 20px;
    height: auto;
  }
  .title-wrap h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .center_text h2 {
    font-size: 30px;
  }
  .center_text {
    margin-top: 20px;
  }
  .notice-section .principal-desk .pri-image img {
    width: 70%;
    height: auto;
  }
  .notice-section .principal-desk .principal-image::before {
    right: 57px;
    width: calc(100% - 220px);
    height: calc(100% - 138px);
  }
  .notice-section .principal-desk .principal-image::after {
    left: 57px;
    width: calc(100% - 203px);
    height: calc(100% - 114px);
  }
  .notice-section .principal-desk {
    height: auto;
  }
  .service .title-wrap .lines {
    justify-content: center;
  }
  .service .box {
    border: 0;
  }
  .service .course-box .nav-tabs .nav-link {
    padding: 10px 21px;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 250px;
  }
  .gallery-section .slick-prev,
  .gallery-section .slick-next {
    display: none !important;
  }
  .service .bx-3 {
    margin-top: 20px;
  }
  .service .title-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .gallery-section .slick-dots li button {
    display: none;
  }
  .gallery-section .mt-10 {
    margin-top: 0;
  }
  .footer .lower-footer p {
    font-size: 13px;
  }
  .master-banner .banner-title {
    font-size: 30px;
  }
  .spacer {
    margin: 0;
  }
  .notice-section .principal-desk .pri-image {
    float: none;
  }
}
@media screen and (min-width: 432px) and (max-width: 601px) {
  .odd-1 {
    order: 1;
  }
  .odd-2 {
    order: 2;
  }
  .odd-3 {
    order: 3;
  }
  .odd-4 {
    order: 4;
  }
  .latest-news .news-ticker-h li a {
    font-size: 14px;
  }
  .top-links ul li a {
    font-size: 14px;
  }
  .header .inner {
    flex-direction: column;
    text-align: center;
  }
  .rammohon-middle {
    width: 48%;
    margin: 20px 0;
  }
  .mission-vision .main-box {
    margin-top: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 10px 2vw;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    background: #ccc;
  }
  .mission-vision .main-box {
    height: auto;
  }
  .mission-vision .imp-box ul {
    height: auto;
  }
  .mission-vision .mission-box:after {
    width: 0;
  }
  .about-college .about-right {
    padding-left: 5px;
    margin-top: 20px;
    height: auto;
  }
  .title-wrap h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .center_text h2 {
    font-size: 30px;
  }
  .center_text {
    margin-top: 20px;
  }
  .notice-section .principal-desk .pri-image img {
    width: 70%;
    height: auto;
  }
  .notice-section .principal-desk .principal-image::before {
    right: 57px;
    width: calc(100% - 220px);
    height: calc(100% - 138px);
  }
  .notice-section .principal-desk .principal-image::after {
    left: 57px;
    width: calc(100% - 203px);
    height: calc(100% - 114px);
  }
  .notice-section .principal-desk {
    height: auto;
  }
  .service .title-wrap .lines {
    justify-content: center;
  }
  .service .box {
    border: 0;
  }
  .service .course-box .nav-tabs .nav-link {
    padding: 10px 21px;
  }
  .wrapper .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .wrapper .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 250px;
  }
  .gallery-section .slick-prev,
  .gallery-section .slick-next {
    display: none !important;
  }
  .service .bx-3 {
    margin-top: 20px;
  }
  .service .title-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .gallery-section .slick-dots li button {
    display: none;
  }
  .gallery-section .mt-10 {
    margin-top: 0;
  }
  .footer .lower-footer p {
    font-size: 13px;
  }
  .master-banner .banner-title {
    font-size: 30px;
  }
  .spacer {
    margin: 0;
  }
  .notice-section .principal-desk .pri-image {
    float: none;
  }
}
@media screen and (max-width: 991px) {
  .mission-vision .imp-box {
    height: auto;
  }
}

.dept-gallery .fancy-box-gallery {
  position: relative;
  border: 1px solid #fe4c02;
  padding: 5px;
  display: block;
  margin-bottom: 10px;
}
.dept-gallery .fancy-box-gallery:hover .overlay {
  width: 100%;
  opacity: 1;
}
.dept-gallery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(254, 76, 2, 0.8509803922);
  transition: all 0.4s;
  opacity: 0;
}
.dept-gallery .overlay p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align:center!important;
  width:90%;
}
.dept-gallery img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.dept-gallery .fancy-box-gallery {
  position: relative;
  border: 1px solid #fe4c02;
  padding: 5px;
  display: block;
  margin-bottom: 10px;
}
.dept-gallery .fancy-box-gallery:hover .overlay {
  width: 100%;
  opacity: 1;
}
.dept-gallery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(254, 76, 2, 0.8509803922);
  transition: all 0.4s;
  opacity: 0;
}
.dept-gallery .overlay p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.dept-gallery img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-college .about-txt {
    margin-top: 20px;
}
.about__box{
    float: left;
    width: 370px;
    margin: 5px 5px 0 0;
    border:1px solid #dee2e6;
    padding:5px;
}
.notice-section .notice{
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    padding: 10px;
}
figure.table{
    overflow-x: scroll;
    margin:0;
}
.ck-table-resized{
    width:100%;
}
@media screen and (min-width:992px) {
    .top__links{
        display:none;
    }
}
@media screen and (max-width:991px){
    .site_menu ul.mainNav li a{
        padding:5px!important;
        margin:5px 0;
    }
    .notice-section marquee{
        display: block;
    }
    .notice-section marquee{
        animation: none !important;
        overflow: hidden !important;
        white-space: normal !important;
    }
    .notice-section .qiick-links{
        height:270px;
        overflow-y:scroll;
    }
    .mission-vision .mission-box{
        height:auto;
    }
    .service .title-wrap p{
        font-size:14px;
    }
    .top-links {
        text-align: unset;
    }
    .top-links .links{
        display:none;
    }
    .site_menu ul.mainNav ul li a:before {
        font-family: FontAwesome;
        display: inline-block;
        padding-right: 6px;
        vertical-align: middle;
        content: "\f058";
        color: #fff;
    }
    .top-links ul li a {
        border-left: 0;
        /* box-shadow: 1px 1px 5px 0px #a6a4a4; */
        display: block;
        margin: 5px 0;
        border: 1px solid #878484;
    }
    .site_menu .navbar{
        padding:0!important;
    }
    
}

/* Desktop Menu */
  .top__links {
    color: #fff;
  }

  .top__links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top__links ul li a {
  color: #fff;
  text-decoration: none;
}

/* Mobile Styles */
.top__links .menu-toggle {
  display: none;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .top__links ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    max-height: 0;              /* collapsed */
    opacity: 0;                 /* invisible */
    overflow: hidden;           /* hide content */
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .top__links ul.show {
    max-height: 500px;          /* enough to fit all items */
    opacity: 1;                 /* fully visible */
    padding: 10px 0;
  }

  .top__links .menu-toggle {
    display: block;
  }
  
}
.scroll-box{
    height:310px;
    overflow-y:scroll;
}
