@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=League+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset CSS Starts From Here */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --transition: all 0.3s ease-in-out;
  --popin: "Poppins", sans-serif;
  --raleway: "Raleway", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --mehroon: #9F0203;
  --light-gray: #F5F5F5;
  --mehroon-gradient: linear-gradient(180deg, #9F0203 0%, #9F0203 100%);
  --text-color: #2e2e2e;
  --lato: "Lato", serif;
  --background-grey: #f2f4f8;
  --font14: 14px;
  --font16: 16px;
  --font18: 18px;
  --pl-pr-75: 0 75px;
  --bg-white: #FFF;
  --bg-mehroon: #9F0203;
  --w-80: 80%;
}
html {
  scroll-behavior: smooth;
}
body {
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--popin);
  overflow-x: hidden;
}
html,
body,
.main-content {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.bg-white {background-color: var(--white) }
.font-500 {
  font-weight: 600;
}
.main-content .row {
  display: flex;
  align-items: center;
}
.main-content .main-container {
  margin: 0 auto;
  padding: 0 180px;
}
.main-content .container-fluid {
  margin: 0 auto;
  padding: 0 80px;
}
.main-content figure {
  margin: 0;
}
.main-content a {
  text-decoration: none;
  transition: var(--transition);
}
.main-content a:hover {
  text-decoration: none;
}
.main-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.main-content .h1,
.main-content h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: var(--lato);
}
.h-one{
    color: #fff;
    font-size: 64px;
    font-weight: 300 !important;
    line-height: 1.3 !important;
}
.h-one span{
  font-weight: 500 !important;
  font-size: 44px;
}
h2.mehroon{
  font-size: 36px;
  color: var(--mehroon);
  line-height: 1.3;
  margin-bottom: 20px;
}
h2.white{
  font-size: 36px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.main-content h2 {
  font-weight: 400 !important;
}
.main-content h5 {
  font-size: 24px;
  color: var(--mehroon);
}
.main-content h6 {
  font-size: 18px;
  color: var(--mehroon);
}
section {
  padding: 80px 0;
}
.main-content .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  height: 50px;
  font-size: 16px;
  transition: var(--transition);
  padding: 0 30px;
  font-weight: 600;
  border-radius: 8px;
  text-transform: capitalize;
}
.main-content .btn.mehroon-btn {
  background: var(--mehroon-gradient);
  color: var(--white);
}
.main-content .btn.black-btn {
  background-color: #000;
  color: #fff;
}
.main-content .btn.mehroon-btn:hover {
  box-shadow: 0px 5px 15px 0px #b1b1b1;
}
.main-content .btn.white-btn {
  background: var(--white);
  color: var(--text-color);
}
.main-content .btn.white-btn:hover {
  box-shadow: 0px 5px 15px 0px #b44848;
}
.main-content .btn.black-btn:hover {
  box-shadow: 0px 5px 15px 0px #b1b1b1;
}
.main-content .btn span {
  padding-left: 10px;
  position: relative;
  transition: var(--transition);
  left: 0;
  color: var(--text-color);
}
.main-content .btn:hover span {
  left: 5px;
}
.main-content input {
  height: 36px;
  border: 1px solid #dddddd;
  border-radius: 0px;
  /*background-color: var(--white);*/
}
.main-content input:focus {
  border: 1px solid #dddddd;
  box-shadow: none;
  outline: none;
  color: var(--text-color);
}
.main-content textarea {
  resize: none;
}
.main-content strong {
  font-weight: 800;
}
.main-content i {
  font-style: italic;
}
.main-content .block {
  display: block;
}
.main-content .hidden {
  display: none;
}
.main-content .text-left {
  text-align: left;
}
.main-content .text-right {
  text-align: right;
}
.main-content .mb-5 {
  margin-bottom: 5px;
}
.main-content .mt-5 {
  margin-top: 5px;
}
.main-content .mr-5 {
  margin-right: 5px;
}
.main-content .ml-5 {
  margin-left: 5px;
}
.main-content .d-flex {
  display: flex;
}
.main-content .align-items-center {
  align-items: center;
}
.main-content input,
textarea {
  font-family: var(--font);
  transition: var(--transition);
}
.main-content input:focus,
input:target,
textarea:focus,
textarea:target {
  outline: 0;
  box-shadow: 0px 3px 8px #ccc;
}
.main-content .pr-50 {
  padding-right: 50px;
}
.main-content .pr-100 {
  padding-right: 100px;
}
.main-content ::marker {
  display: none;
}
/* Scrollbar styling for webkit */
::-webkit-scrollbar {
  min-width: 4px;
  width: 4px;
  max-width: 4px;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
  background: #171719;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-thumb {
  background: #dddddd;
}
/* Data Table Common CSS */
a.paginate_button {
    cursor: pointer;
    margin: 0 0 0 20px;
    color: #2e2e2e;
    font-weight: 500;
    border: 1px solid #2e2e2e;
    padding: 2px 10px;
    border-radius: 4px;
    transition: 0.3s all ease-in-out;
}
a.paginate_button.current, a.paginate_button:hover{
  color: var(--bg-mehroon);
  border: 1px solid var(--bg-mehroon);
}
.dataTables_filter label input{
  padding: 0 10px;
}
a.paginate_button.disabled{
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}
/* Data Table Common CSS Ends here */
/* Svg reset */
.main-content svg:not(:root) {
  height: 100%;
  width: 100%;
}

.main-content ul,
ol,
li {
  margin: 0;
  list-style: none;
}

.main-content li,
ol {
  font-size: 18px;
  font-weight: 400;
}

.main-content *:focus {
  outline: none !important;
  box-shadow: none;
}

.main-content label {
  font-weight: normal;
  margin-bottom: 10px;
  position: relative;
}

/* rotate infinite animation */
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* move up-down animation */
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.main-content .container-fluid.mt-4.pl-pr-78 {
  margin-bottom: 20px;
}
/* Reset CSS Ends Here */

/*-------------Discipline Page CSS Starts From Here----------------*/

/* Discipline Top Banner Section CSS Starts From Here*/
.discipline-top-banner {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 916px;
  padding: 300px 0 0 0;
}
.discipline-top-banner .h1 {
  color: var(--white);
  font-size: 80px;
  font-weight: 200 !important;
  margin-bottom: 5px;
  line-height: 1;
  font-family: "League Gothic", serif;
  letter-spacing: 0px;
}
.discipline-top-banner h2 {
  margin-bottom: 35px;
  font-size: 60px;
  font-weight: 400 !important;
  color: var(--white);
  font-family: "Archivo Narrow", serif;
}
.discipline-top-banner .d-flex.main {
  margin-bottom: 35px;
  align-items: center;
}
.discipline-top-banner .outer-flex {
  display: flex;
}
.discipline-top-banner .d-flex.main .hash {
  font-size: 52px;
  color: var(--white);
  vertical-align: text-bottom;
  display: inline-block;
  font-weight: 500;
  position: relative;
  top: 38px;
  left: 0;
  padding-right: 5px;
}
.discipline-top-banner .d-flex.main .d-flex.column {
  flex-direction: column;
}
.discipline-top-banner .d-flex.main .d-flex.column h2 {
  font-size: 120px;
  color: var(--white);
  line-height: 00.8;
  font-family: var(--lato);
  margin-bottom: 0;
}
.discipline-top-banner .d-flex.main .d-flex.column span {
  color: var(--white);
}
.discipline-top-banner .d-flex.main .d-flex.text {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}
.discipline-top-banner .d-flex.main .d-flex.text p {
  max-width: 260px;
  margin-bottom: 5px;
  font-size: 18px;
  font-family: var(--lato);
  font-weight: 400;
  color: var(--white);
}
.discipline-top-banner .d-flex.main .d-flex.text.text2 p {
  max-width: 170px;
}
.discipline-top-banner .d-flex.main .d-flex.text.text3 p {
  max-width: 240px;
}
.discipline-top-banner .d-flex.main.border-right {
  border-right: 1px dashed #fff;
  padding-right: 30px;
}
.discipline-top-banner .d-flex.main.pd-left-30 {
  padding-left: 30px;
}

/* Discipline Top Banner Section CSS Ends Here*/

/* Breadcrumbs Search Bar CSS Starts From Here*/
.breadcrumbs-search-bar {
  padding: 30px 0 0px 0;
}
.breadcrumbs-search-bar .d-flex {
  justify-content: space-between;
}
.breadcrumbs-search-bar .d-flex ul {
  display: flex;
  border: 1px solid #cccccc;
  padding: 10px 15px;
  border-radius: 8px;
}
.breadcrumbs-search-bar .d-flex ul li:first-child {
  margin-right: 14px;
}
.breadcrumbs-search-bar .d-flex ul li a {
  color: #4286f4;
}
.breadcrumbs-search-bar .d-flex ul li span {
  display: inline-block;
  padding-left: 14px;
}
.breadcrumbs-search-bar .d-flex ul li:last-child a {
  pointer-events: none;
  color: var(--text-color);
}
.searchbar form {
  width: 100%;
  max-width: 395px;
  position: relative;
}
.searchbar form ::placeholder {
  color: var(--text-color);
}
.searchbar form input[type="search"] {
  height: 48px;
  padding: 0 45px 0 15px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  width: 100%;
  color: var(--text-color);
}
.searchbar form span {
  position: absolute;
  right: 15px;
  top: 10px;
}
/* Breadcrumbs Search Bar CSS Starts Ends Here*/

/* Top Engineering College Section CSS Starts From Here*/
.top-engineering-college {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 0 410px 0;
  overflow: hidden;
}
.top-engineering-college .row {
  align-items: baseline;
}
.top-engineering-college .col-lg-5 {
  padding-top: 1px;
}
.top-engineering-college .col-lg-7 {
  padding-right: 70px;
}
.top-engineering-college h5 {
  margin-bottom: 16px;
}
.top-engineering-college .engineering-text {
  margin: 24px 0 40px 0;
}
.top-engineering-college .border-box-text {
  border: 1px dashed #2e2e2e;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.top-engineering-college .border-box-text p {
  margin-bottom: 5px;
}
.top-engineering-college .border-box-text p:last-child {
  margin-bottom: 0;
}
.top-engineering-college .border-box-text p span {
  font-weight: 500;
}
.top-engineering-college .director-message p {
  color: var(--mehroon);
  font-weight: 700;
  font-style: italic;
  position: relative;
  font-family: var(--lato);
}
.top-engineering-college .director-message p::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  background-image: url("https://www.cgc.ac.in/public/course/assets/images/support/message_quote.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 23px;
}
.top-engineering-college .director-message p::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 156px;
  height: 4px;
  background: var(--mehroon-gradient);
}
.top-engineering-college .director-message p.message {
  color: var(--text-color);
  font-style: italic;
  margin-top: 40px;
}
.top-engineering-college .director-message p.message::before {
  display: none;
}
.top-engineering-college .director-message p.message::after {
  display: none;
}
.top-engineering-college .engineering-top-content {
  border-left: 1px solid #ccc;
  padding-left: 81px;
}
.top-engineering-college .placement-bg {
  margin-top: 165px;
  position: relative;
  padding: 40px;
}
.top-engineering-college .placement-bg::after {
  content: "";
  position: absolute;
  right: -94px;
  top: -141px;
  background-image: url(https://www.cgc.ac.in/public/course/assets/images/support/cgc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 230px;
  height: 203px;
  z-index: -1;
}
.top-engineering-college .placement-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #9F0203 0%, #9F0203 100%);
  opacity: 0.9;
  width: 100%;
  height: 9999vh;
}
.top-engineering-college .placement-bg p,
.top-engineering-college .placement-bg ul li {
  color: var(--white);
  margin-bottom: 0;
}
.top-engineering-college .path-to-success {
  z-index: 1;
  position: relative;
  margin-bottom: 30px;
}
.top-engineering-college .path-to-success h5 {
  margin: 0;
  color: var(--white);
  font-weight: 400 !important;
}
.top-engineering-college .path-to-success p.line {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.top-engineering-college .path-to-success p.line span {
  height: 4px;
  background-color: var(--white);
  display: block;
}
.top-engineering-college .path-to-success p.line span.first {
  width: 75px;
}
.top-engineering-college .path-to-success p.line span.second {
  width: 41px;
  margin-left: 8px;
}
.top-engineering-college .path-to-success p.line span.third {
  width: 16px;
  margin-left: 8px;
}
.top-engineering-college div.placementss {
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  max-width: 450px;
}
.top-engineering-college div.placementss .single {
  width: 50%;
  padding-bottom: 10px;
  border-bottom: 1px dashed #fff;
  border-left: 1px dashed #fff;
}
.top-engineering-college div.placementss .single span {
  font-size: 18px;
  color: var(--white);
}
.top-engineering-college div.placementss p {
  font-size: 35px;
}
.top-engineering-college div.placementss p cite {
  font-style: normal;
  font-size: 25px;
  position: relative;
  left: 4px;
}
.top-engineering-college div.placementss div span {
  font-size: 18px;
  font-weight: 400;
  display: block;
}
.top-engineering-college div.placementss .single.border-left-none {
  border-left: none;
}
.top-engineering-college div.placementss .single.pd-left-20 {
  padding-left: 40px;
}
.top-engineering-college div.placementss .border-btm-none {
  border-bottom: none;
}
.top-engineering-college .single.border-left-none.border-btm-none,
.single.border-left-none {
  padding-right: 20px;
}
.top-engineering-college .single.pd-left-20 {
  padding-top: 10px;
}
.single.border-left-none,
.single.border-left-none,
.single.border-left-none.border-btm-none {
  padding-top: 10px;
}
figure.placement-insight-figure {
  position: absolute;
  top: 15%;
  right: 0;
}
/* Top Engineering College Section CSS Ends Here*/

/* Engineering Programs Section CSS Starts From Here*/
.engineering-programs {
  position: relative;
  padding-bottom: 20px;
}
.engineering-programs h5{
  margin-bottom: 20px;
}
.engineering-programs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--background-grey);
  height: 25%;
  width: 100%;
  z-index: -1;
}
.engineering-programs .row {
  align-items: flex-start;
}
.engineering-programs .logo {
  margin-bottom: 50px;
}
.engineering-programs ul.listing-left {
  max-width: 435px;
  padding-left: 0;
}
.engineering-programs ul.listing-left li a {
  margin-bottom: 20px;
  padding: 18px 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px #00000029;
  font-size: 16px;
  color: var(--text-color);
  display: block;
  background-color: var(--white);
  border: 1px solid #11111166;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.engineering-programs ul li.active a {
  background-color: var(--mehroon);
  color: var(--white);
}
.engineering-programs ul li.active a span img {
  filter: invert(1);
}
.engineering-programs ul li a:hover {
  background-color: var(--mehroon);
  color: var(--white);
}
.engineering-programs ul li a span img {
  transition: var(--transition);
}
.engineering-programs ul li a:hover span img {
  filter: invert(1);
}
.engineering-programs ul li a span {
  margin-right: 20px;
}
.engineering-programs .col-md-8 {
  padding-left: 0px;
}
.engineering-programs .col-md-8 h5 {
  margin-bottom: 40px;
}
.engineering-programs .listing-box {
  background-color: #ffffff;
  border: 1px solid #11111166;
  margin-bottom: 20px;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0px 8px 24px 0px #00000026;
}
.engineering-programs .listing-box:last-child {
  margin-bottom: 0;
}
.engineering-programs .listing-box h6 {
  margin-bottom: 14px;
}
.engineering-programs .listing-box p.line {
  display: flex;
  align-items: center;
}
.engineering-programs .listing-box ul.listing-right {
  column-count: 2;
  padding-left: 18px;
}
.engineering-programs .listing-box ul.listing-right li {
  margin-bottom: 5px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
  font-size: 16px;
}
.engineering-programs .listing-box ul.listing-right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  background-color: var(--black);
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.engineering-programs ul.listing-right a {
  color: var(--text-color);
}
.engineering-programs ul.listing-right a:hover {
  background-color: transparent;
  color: var(--mehroon);
}
.engineering-programs .listing-box p span {
  height: 3px;
  background-color: var(--mehroon);
  display: block;
}
.engineering-programs .listing-box p span.first {
  width: 125px;
  height: 3px;
}
.engineering-programs .listing-box p span.two {
  width: 68px;
  background-color: var(--text-color);
  margin-left: 4px;
}
.engineering-programs .listing-box p span.three {
  width: 26px;
  margin-left: 4px;
}
.engineering-programs .dsktp-none {
  display: none;
}
.engineering-programs .listing-box ul.listing-right li a {
  padding: 0;
}
.dropdown-menu {
  position: relative;
  width: 200px;
}

.dropdown-btn {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  width: 100%;
}

.menu-item {
  position: relative;
}

.menu-item a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  background-color: #f9f9f9;
}

.menu-item a:hover {
  background-color: #ddd;
}

.submenu {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.submenu li a {
  padding: 8px 20px;
  background-color: #f1f1f1;
}

.submenu li a:hover {
  background-color: #ddd;
}
.top-engineering-college h1 {
  font-size: 24px;
  color: var(--mehroon);
  margin-bottom: 16px;
}
/* Engineering Programs Section CSS Ends Here*/

/* Abroad Study Section CSS Starts From Here*/
.abroad-study {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.abroad-study .heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.abroad-study .image-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 8px 24px 0px #00000026;
  border: 1px solid #d9d9d9;
  height: 100%;
}
.abroad-study .image-box figure {
  margin-bottom: 20px;
}
.abroad-study figure img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abroad-study .image-box p {
  font-size: 18px;
  font-family: var(--lato);
  color: var(--text-color);
  margin-bottom: 0px;
}
.abroad-study .explore-more-btn {
  padding-top: 60px;
  text-align: center;
}
.abroad-study .slick-track {
  display: flex;
  gap: 25px;
}
/* Abroad Study Section CSS Ends Here*/

/* Student Stories Section CSS Starts From Here*/
.student-stories {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 780px;
}
.student-stories .student-slider .slide {
  color: var(--white);
}
.student-stories .student-slider p.head {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--lato);
}
.student-stories .student-slider span.block {
  display: block;
  margin-bottom: 15px;
}
.student-stories .student-slider p.text {
  font-family: var(--lato);
  margin-bottom: 50px;
  color: var(--white);
}
.student-stories .student-slider cite {
  display: block;
  font-style: normal;
  margin-bottom: 10px;
  color: var(--white);
}
.student-stories .student-slider span.small {
  font-size: 14px;
  color: var(--white);
}
.student-stories .student-boxes {
  display: flex;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: space-between;
  padding-top: 200px;
}
.student-stories .student-box-outside {
  width: calc(100% / 2);
  height: 100%;
}
.student-stories .student-box-outside:first-child {
  padding-right: 17px;
}
.student-stories .student-box-outside:last-child {
  padding-left: 17px;
}
.student-stories .student-box-outside .student-box {
  padding: 40px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 334px;
}
.student-stories .student-box-outside .student-box p.heading {
  color: var(--white);
  margin-bottom: 15px;
}
.student-stories .student-box-outside .student-box p.text {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 15px;
  max-width: 370px;
}
.student-stories .student-box-content {
  max-width: 400px;
}
/* Student Stories Section CSS Ends Here*/

/* Apply CGCUET Section CSS Starts From Here*/
.apply-cgcuet {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0 80px 0;
}
.apply-cgcuet .heading {
  text-align: center;
  margin-bottom: 45px;
}
.apply-cgcuet .heading h5 {
  margin-bottom: 16px;
}
.apply-cgcuet .cgcuet-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left {
  display: flex;
  flex-direction: column;
  align-items: self-end;
  padding-top: 48px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left .step1 p {
  margin-top: 95px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left p:nth-of-type(1) {
  margin-top: 95px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left p:nth-of-type(2) {
  margin-top: 98px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left p:nth-of-type(3) {
  margin-top: 90px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left .step.step3 {
  margin-top: 63px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left .step.step5 {
  margin-top: 56px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-left .step.step7 {
  margin-top: 63px;
}
.apply-cgcuet .cgcuet-steps p {
  max-width: 460px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right {
  display: flex;
  flex-direction: column;
  align-self: self-start;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p {
  padding-left: 80px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p a {
  color: var(--text-color);
  text-decoration: underline;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p:nth-of-type(1) {
  margin-top: 80px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p:nth-of-type(2) {
  margin-top: 90px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p:nth-of-type(3) {
  margin-top: 88px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right p:nth-of-type(4) {
  margin-top: 90px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right .step.step2 {
  margin-top: 66px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right .step.step4 {
  margin-top: 65px;
}
.apply-cgcuet .cgcuet-steps .cgcuet-right .step.step6 {
  margin-top: 62px;
}
.apply-cgcuet .apply-now-btn {
  padding-top: 40px;
  text-align: center;
}
.cgcuet-seps-mobile {
  display: none;
}
/* Apply CGCUET Section CSS Ends Here*/

/* Excellence Innovation Section CSS Starts From Here*/
.excellence-innovation {
  position: relative;
}
.excellence-innovation .row {
  align-items: baseline;
}
.excellence-innovation .row.mt-20 {
  margin-top: 20px;
}
.excellence-innovation .heading {
  text-align: center;
  margin-bottom: 40px;
}
.excellence-innovation .heading h5 {
  margin-bottom: 16px;
}
.excellence-innovation figure {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 30px;
}
.excellence-innovation figure.left-figure {
  min-height: 649px;
}
.excellence-innovation figure.right-first-figure {
  min-height: 320px;
  height: 320px;
}
.excellence-innovation figure.right-second-figure {
  min-height: 320px;
  height: 320px;
}
.excellence-innovation figure.right-third-figure {
  min-height: 309px;
}
.excellence-innovation p.head {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--lato);
}
.excellence-innovation p.head,
.excellence-innovation p.description {
  color: var(--white);
  margin-bottom: 15px;
}
.excellence-innovation p.description {
  margin-bottom: 20px;
}
.excellence-innovation .row.mt-20 figcaption {
  max-width: 650px;
}
/* Excellence Innovation Section CSS Ends Here*/

/*-------------Discipline Page CSS Ends Here----------------*/

/*-------------Course Page CSS Starts From Here----------------*/
/* Top Engineering College Section CSS Starts From Here*/
.course-top-banner {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 1080px;
  padding: 360px 0 0 0;
}
.course-top-banner .h1 {
  color: var(--white);
  font-size: 96px;
  font-weight: 200 !important;
  margin-bottom: 5px;
  line-height: 1.1;
  font-family: "League Gothic", serif;
  letter-spacing: 0px;
}
.course-top-banner h2 {
  margin-bottom: 45px;
  font-size: 56px;
  font-weight: 400 !important;
  color: var(--white);
  font-family: "Archivo Narrow", serif;
  line-height: 1.1;
  text-shadow: 0px 0px 10px #080808;
}
.course-top-banner h2 span{
  font-size: 32px;
}
.course-top-banner .d-flex.main {
  margin-bottom: 35px;
  align-items: center;
}
.course-top-banner .outer-flex {
  display: flex;
}
.course-top-banner .d-flex.main .hash {
  font-size: 52px;
  color: var(--white);
  vertical-align: text-bottom;
  display: inline-block;
  font-weight: 500;
  position: relative;
  top: 38px;
  left: 0;
  padding-right: 5px;
}
.course-top-banner .d-flex.main .d-flex.column {
  flex-direction: column;
}
.course-top-banner .d-flex.main .d-flex.column h2 {
  font-size: 100px;
  color: var(--white);
  line-height: 00.8;
  font-family: var(--lato);
  margin-bottom: 0;
}
.course-top-banner .d-flex.main .d-flex.column span {
  color: var(--white);
}
.course-top-banner .d-flex.main .d-flex.text {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}
.course-top-banner .d-flex.main .d-flex.text p {
  max-width: 260px;
  margin-bottom: 5px;
  font-size: 16px;
  font-family: var(--lato);
  font-weight: 400;
  color: var(--white);
}
.course-top-banner .d-flex.main .d-flex.text.text2 p {
  max-width: 170px;
}
.course-top-banner .d-flex.main .d-flex.text.text3 p {
  max-width: 240px;
}
.course-top-banner .d-flex.main.border-right {
  border-right: 1px dashed #fff;
  padding-right: 30px;
}
.course-top-banner .d-flex.main.pd-left-30 {
  padding-left: 30px;
}
.top-engineering-college.course-college {
  padding: 60px 0px;
}
/* Top Engineering College Section CSS Ends Here*/

/* Why Choose CGC Mohali Section CSS Starts From Here*/
.why-choose-cgc-mohali .content-left,
.why-choose-cgc-mohali .content-right {
  color: #fff;
  position: relative;
}
.why-choose-cgc-mohali .content-left {
  padding-right: 50px;
}
.why-choose-cgc-mohali .content-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("https://www.cgc.ac.in/public/course/assets/images/support/white-bordered-line.svg");
  height: 100%;
  width: 2px;
}
.why-choose-cgc-mohali .content-left h5 {
  color: #ffffff;
  max-width: 660px;
  margin-bottom: 15px;
}
.why-choose-cgc-mohali .content-left p {
  font-family: var(--lato);
}
.why-choose-cgc-mohali .content-left ul li {
  display: flex;
  margin-bottom: 6px;
  align-items: baseline;
}
.why-choose-cgc-mohali .content-left ul li img {
  position: relative;
  top: 2px;
}
.why-choose-cgc-mohali .content-left ul li p {
  margin: 0;
  padding-left: 10px;
}
.why-choose-cgc-mohali .content-right h5 {
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0px;
}
.why-choose-cgc-mohali .content-right .placementss {
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}
.why-choose-cgc-mohali .content-right .placementss .single {
  border-bottom: 1px dashed #ffffff;
  width: 33.3%;
}
.why-choose-cgc-mohali .content-right .placementss.border-bottom-none .single {
  border-bottom: none;
}
.why-choose-cgc-mohali .content-right .placementss .border-right {
  border-right: 1px dashed #ffffff;
}
.why-choose-cgc-mohali .content-right .placementss .pd-right-30 {
  padding-right: 30px;
}
.why-choose-cgc-mohali .content-right .placementss .pd-left-30 {
  padding-left: 30px;
}
.why-choose-cgc-mohali .content-right .placementss .pd-btm-20 {
  padding-bottom: 20px;
}
.why-choose-cgc-mohali .content-right .placementss .pd-top-20 {
  padding-top: 20px;
}
.why-choose-cgc-mohali .content-right .placementss .single p {
  font-size: 45px;
  margin-bottom: 0px;
}
.why-choose-cgc-mohali .content-right .placementss .single p cite {
  font-style: normal;
  font-size: 25px;
  position: relative;
  left: 4px;
}
.why-choose-cgc-mohali .content-right .placementss .single span {
  font-size: 17px;
  color: var(--white);
}
.why-choose-cgc-mohali .content-right {
  padding-left: 40px;
}
p.line {
  margin-top: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
p.line span {
  background-color: var(--white);
  display: block;
  height: 3px;
}
p.line span.first {
  width: 75px;
}
p.line span.second {
  width: 41px;
  margin-left: 8px;
}
p.line span.third {
  width: 16px;
  margin-left: 8px;
}
/* Why Choose CGC Mohali Section CSS Ends Here*/

/* CSE Eligibility Section CSS Starts From Here*/
.cgc-eligibility {
  position: relative;
  background-color: #f2f4f8;
}
.cgc-eligibility::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("https://www.cgc.ac.in/public/course/assets/images/support/cse-eligibility-figure.webp");
  height: 100%;
  width: 296px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.cgc-eligibility .content {
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 20px 0 20px;
  border: 1px solid #11111166;
  position: relative;
}
.cgc-eligibility .content::after {
  content: "OR";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 75%);
  background-color: var(--mehroon);
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.cgc-eligibility .removeBefore::after {
  display: none;
}
.cgc-eligibility .pd-left-50 {
  padding-left: 50px;
}
.cgc-eligibility .col-lg-7 ul {
  padding-left: 0;
  margin-bottom: 25px;
}
.cgc-eligibility .col-lg-7 ul li {
  margin-bottom: 10px;
}
/* CSE Eligibility Section CSS Ends Here*/

/* CGCUET Endless Posibility Section Starts Here*/
.cgcuet-endless-posibility {
  position: relative;
  padding: 0;
}
.cgcuet-endless-posibility .cgcuet-scholarship {
  width: 100%;
  max-width: 723px;
  background-color: var(--mehroon);
  padding: 180px 50px 180px 180px;
  text-align: left;
}
.cgcuet-endless-posibility .cgcuet-scholarship figure {
  margin-bottom: 25px;
}
.cgcuet-endless-posibility .cgcuet-scholarship h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: -10px;
}
.cgcuet-endless-posibility .cgcuet-scholarship h2 {
  font-size: 60px;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.4;
}
.cgcuet-endless-posibility .cgcuet-scholarship p {
  color: var(--white);
}
.cgcuet-endless-posibility .cgcuet-phase {
  padding-left: 40px;
  width: 100%;
  max-width: 980px;
}
.cgcuet-endless-posibility .heading {
  text-align: center;
  margin-bottom: 50px;
}
.cgcuet-endless-posibility .cgcuet-phase ul {
  width: 100%;
  min-width: 480px;
  box-shadow: 0px 8px 24px 0px #00000026;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.cgcuet-endless-posibility .cgcuet-phase ul:last-child {
  margin-left: 20px;
}
.cgcuet-endless-posibility .cgcuet-phase ul li {
  padding: 16px 0px 16px 40px;
  border: 1px solid #11111124;
}
.cgcuet-endless-posibility .cgcuet-phase ul li p.heading {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cgcuet-endless-posibility .cgcuet-phase ul li p.sub-heading {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.cgcuet-endless-posibility .cgcuet-phase ul li span {
  font-weight: 500;
}
.cgcuet-endless-posibility .cgcuet-phase ul li:first-child {
  background: var(--bg-mehroon);
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.cgcuet-endless-posibility .cgcuet-phase ul li:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.cgcuet-endless-posibility .cgcuet-phase .d-flex ul {
  padding-left: 0;
}
/* CGCUET Endless Posibility Section Ends Here*/

/* Career Prospects Section CSS Starts From Here*/
.career-prospects {
  position: relative;
  min-height: 800px;
}
.career-prospects .heading {
  text-align: center;
  margin-bottom: 50px;
}
.career-prospects .career-bg .bg-figure {
  width: 450px;
  margin: 0 auto;
  text-align: center;
  height: 450px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -10%);
  padding: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-prospects .career-bg .d-flex {
  justify-content: space-between;
}
.career-prospects .career-bg .d-flex:first-child,
.career-prospects .career-bg .d-flex:last-child {
  justify-content: space-evenly;
}
.career-prospects .career-bg .column {
  position: absolute;
}
.career-prospects .career-bg .column figure {
  width: 90px;
  height: 110px;
}
.career-prospects .career-bg .column figure:hover img {
  filter: drop-shadow(2px 4px 6px black);
}
.career-prospects .career-bg .column figure img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}
.career-prospects .career-bg .all-figures {
  width: 450px;
  margin: 0 auto;
  text-align: center;
  height: 450px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -10%);
  padding: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-prospects .career-bg .column.column2 {
  top: 0;
  transform: translate(-73px, -4px);
}
.career-prospects .career-bg .column.column3 {
  top: 0;
  transform: translate(72px, -4px);
}
.career-prospects .career-bg .column.column6 {
  top: 0;
  transform: translate(-176px, 99px);
}
.career-prospects .career-bg .column.column7 {
  top: 0;
  transform: translate(174px, 99px);
}
.career-prospects .career-bg .column.column10 {
  top: 0;
  transform: translate(-175px, 246px);
}
.career-prospects .career-bg .column.column11 {
  top: 0;
  transform: translate(173px, 245px);
}
.career-prospects .career-bg .column.column14 {
  top: 0;
  transform: translate(-73px, 348px);
}
.career-prospects .career-bg .column.column15 {
  top: 0;
  transform: translate(72px, 346px);
}
.career-prospects .figure-content {
  display: flex;
  justify-content: space-around;
}
.career-prospects .figure-content p {
  border: 1px dashed #11111166;
  padding: 16px 30px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-family: var(--lato);
}
.career-prospects .figure-content .career-bg-left-content p.position {
  position: relative;
  left: -50%;
}
.career-prospects .figure-content .career-bg-right-content p.position {
  position: relative;
  right: -50%;
}
.career-prospects .figure-content .career-bg-left-content,
.career-prospects .figure-content .career-bg-right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 450px;
}
.career-prospects .mobile-prospect-figure {
  display: none;
}
.mobile-prospect-figure-mobile-only {
  display: none;
}
/* Career Prospects Section CSS Ends Here*/

/* Computer Application Section CSS Starts From Here*/
.compuet-science-engineering {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.compuet-science-engineering .row {
  justify-content: center;
}
.compuet-science-engineering .heading {
  text-align: center;
  margin-bottom: 60px;
}
.compuet-science-engineering .heading h5 {
  color: var(--white);
}
.compuet-science-engineering .heading p {
  color: var(--white);
}
.compuet-science-engineering .eng-box h6 {
  color: var(--text-color);
  text-align: center;
  font-size: 20px;
}
.compuet-science-engineering .eng-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  text-align: center;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.compuet-science-engineering .mb-20-dsktp {
  margin-bottom: 20px;
}
.compuet-science-engineering .eng-box p {
  margin-bottom: 0;
}
.compuet-science-engineering .eng-box figure {
  margin-bottom: 20px;
}
.compuet-science-engineering .eng-box span {
  display: inline-block;
  margin-bottom: 20px;
  width: 100px;
  height: 4px;
  background-color: #9F0203;
}
/* Computer Application Section CSS Ends Here*/

/* Empowering Education Resources Section CSS Starts From Here*/
.empowering-education {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.empowering-education .heading {
  text-align: center;
  margin-bottom: 60px;
}
.empowering-education .heading h5 {
  color: var(--mehroon);
}
.empowering-education .heading p {
  color: var(--text-color);
}
.empowering-education figure {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.empowering-education .empower-figure-left figure {
  height: 579px;
}
.empowering-education .empower-figure-right-first figure {
  height: 279px;
  margin-bottom: 20px;
}
.empowering-education .empower-figure-right-second figure {
  height: 279px;
}
.empowering-education figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px;
  height: 100%;
  color: var(--white);
}
.empowering-education figure figcaption h6 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--lato);
}
.empowering-education figure,
.empowering-education figure img {
  border-radius: 16px;
}
.empowering-education figure figcaption p {
  max-width: 520px;
}
.empowering-education .empower-figure-right-second figure figcaption p {
  max-width: 320px;
}
.engineering-programs .collapse:not(.show) {
  display: block;
}
/* Empowering Education Resources Section CSS Ends Here*/
/*-------------Course Page CSS Ends Here----------------*/

/*-------------Scholarship Page CSS starts Here----------------*/
.data-heading {
  color: var(--white);
  background-color: var(--mehroon);
  padding: 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: var(--font18);
}
.bg-grey {
  background-color: var(--background-grey);
}
ol.terms-scholar li {
  list-style: decimal;
  padding-left: 5px;
  margin: 10px 0;
  font-size: var(--font16);
}
.table-scholarship tr th,
.table-scholarship tr td {
  padding: 5px 15px;
}
.table-scholarship tr td {
  padding: 10px 15px;
  font-size: var(--font16);
}
.table-scholarship tr td span {
  display: block;
  padding: 5px 0;
}
.table-scholarship tr th {
  background-color: transparent;
  color: var(--text-color);
  font-weight: 500;
  text-align: left;
  font-size: 18px;
  padding: 15px 15px;
}
.engineering-programs ul li a.active {
  background-color: var(--mehroon);
  color: var(--white);
}
.engineering-programs ul li a.active span img {
  filter: invert(1);
}
.engineering-programs .scholar-tabs .nav a {
  margin-bottom: 20px;
  padding: 18px 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px #00000029;
  font-size: 16px;
  color: var(--text-color);
  display: block;
  background-color: var(--white);
  border: 1px solid #11111166;
  display: flex;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
}
.engineering-programs .fade:not(.show) {
  display: none;
}
.engineering-programs .d-md-flex {
  display: flex !important;
  flex-direction: column;
}
.engineering-programs .d-md-none {
  display: none !important;
}
.engineering-programs.scholarship-tabs .listing-left ul a span:first-child {
  padding-right: 15px;
  position: relative;
}
.engineering-programs.scholarship-tabs
  .listing-left
  ul
  a
  span:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  background-color: #6b6b6b;
  width: 1px;
  height: 50px;
}
.engineering-programs.scholarship-tabs .listing-left ul a span:last-child {
  padding-left: 15px;
}
.engineering-programs.scholarship-tabs .accordion-item {
  background-color: transparent;
  border: none;
}
.engineering-programs.scholarship-tabs .listing-box ul {
  padding-left: 0;
  margin-bottom: 10px;
}
.engineering-programs.scholarship-tabs .listing-box ul li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}
.engineering-programs.scholarship-tabs .listing-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 5px;
  background-color: #2e2e2e;
  border-radius: 100%;
  transform: translate(5px, 10px);
}
.engineering-programs.scholarship-tabs .listing-box ul li strong {
  font-weight: 500;
}
.engineering-programs.scholarship-tabs .terms-and-conditions {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 0px 0px 10px #ccc;
}
.engineering-programs.scholarship-tabs .d-md-flex {
  border-bottom: none;
}
.engineering-programs.scholarship-tabs .listing-box p strong {
  font-weight: 600;
}
.engineering-programs.scholarship-tabs .tab-pane ol,
.tab-pane ul {
  padding: 0;
}
.engineering-programs.scholarship-tabs ul .nav-link.active {
  background-color: var(--mehroon);
}
.engineering-programs.scholarship-tabs ul .nav-link.active span:last-child {
  color: var(--white);
}
.engineering-programs.scholarship-tabs
  .listing-left
  ul
  a.nav-link.active
  span:first-child::after {
  background-color: var(--white);
}
.engineering-programs.scholarship-tabs ul .nav-link.active span img {
  filter: invert(1);
}
.engineering-programs.scholarship-tabs ul .nav-link:hover {
  background-color: var(--mehroon);
}
.engineering-programs.scholarship-tabs ul .nav-link:hover span:last-child {
  color: var(--white);
}
.engineering-programs.scholarship-tabs ul .nav-link:hover span img {
  filter: invert(1);
}
.engineering-programs.scholarship-tabs
  .listing-left
  ul
  a.nav-link:hover
  span:first-child::after {
  background-color: var(--white);
}
/*-------------Scholarship Page CSS Ends Here----------------*/

/*------------- Campus Life Page CSS Starts From Here----------------*/
/* Campus Lige Banner CSS*/
.campus-life-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 916px;
  padding: 250px 0 0 0;
  position: relative;
}
.campus-life-banner .main-container{
  position: relative;
}
.campus-life-banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
}
.campus-life-banner .campus-life-banner-content {
  text-align: center;
}
.campus-life-banner .campus-life-banner-content h1 {
  color: var(--white);
  font-size: 40px;
  font-weight: 400 !important;
}
.campus-life-banner .campus-life-banner-content p {
  max-width: 1050px;
  margin: 0 auto 25px auto;
  color: var(--white);
}
/* Campus Life Banner CSS*/

/* Explore Our Campus CSS*/
.explore-our-campus {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.explore-our-campus h1, .explore-our-campus h2 {
  font-size: 52px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 40px;
}
.explore-our-campus ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.explore-our-campus ul li {
  width: 50%;
  border: 1px dashed var(--white);
}
.explore-our-campus ul li:first-child {
  border-left: 0;
  border-top: 0;
  padding-bottom: 30px;
  padding-right: 30px;
}
.explore-our-campus ul li:nth-of-type(2) {
  border: none;
  padding-left: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--white);
}
.explore-our-campus ul li:nth-of-type(3) {
  padding-top: 30px;
  padding-right: 30px;
  border: none;
  border-right: 1px dashed var(--white);
}
.explore-our-campus ul li:last-child {
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  padding-left: 30px;
  padding-top: 30px;
  border-top: none;
}
.explore-our-campus ul li figure {
  margin-bottom: 14px;
}
.explore-our-campus ul li span {
  font-size: 24px;
  background-color: var(--white);
  padding: 0 15px;
  border-radius: 4px;
  color: var(--mehroon);
  display: inline-block;
  margin-bottom: 10px;
}
.explore-our-campus ul li p {
  color: var(--white);
  margin-bottom: 0;
}
.explore-our-campus .center-fig figure {
  padding: 50px 15px 0 15px;
}
.explore-our-campus .center-fig figure img {
  width: 100%;
}
.explore-our-campus .center-fig {
  padding: 0 30px 0 30px;
}
.explore-our-campus .pd-right {
  padding-right: 80px;
}
.explore-our-campus h3 {
  font-size: 40px;
  font-family: var(--lato);
  color: var(--mehroon);
}
/* Explore Our Campus CSS*/

/* Building Bridges Section CSS */
.building-bridges {
  padding-bottom: 40px;
  margin-bottom: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.building-bridges .row {
  align-items: flex-start;
}
.building-bridges .left-figures .d-flex {
  flex-direction: column;
}
.building-bridges .left-figures .d-flex figure {
  margin-bottom: 30px;
}
.building-bridges .left-figures .d-flex figure img {
  border-radius: 8px;
  width: 100%;
}
.building-bridges .right-content {
  color: var(--white);
  padding: 0 0 0px 140px;
  font-family: var(--lato);
}
.building-bridges .right-content h2 {
  font-family: var(--lato);
  font-weight: 300 !important;
  font-size: 48px;
}
.building-bridges .right-content h3 {
  font-family: var(--lato);
  font-weight: 300 !important;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.building-bridges .right-content a {
  margin-bottom: 45px;
}
.building-bridges .right-content h4 {
  font-family: var(--lato);
  font-weight: 400 !important;
  font-size: 40px;
}
.building-bridges .right-content h4 strong {
  font-weight: 500;
}
.building-bridges .right-content p {
  font-family: var(--lato);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}
.building-bridges .right-content p strong {
  font-weight: 500;
}
.building-bridges .right-content .d-flex figure {
  width: 100px;
  min-height: 100px !important;
}
.building-bridges .right-content .d-flex figure img {
  width: 100%;
  height: 100%;
}
.building-bridges .right-content .d-flex .content {
  padding-left: 20px;
}
.building-bridges .right-content .d-flex .content .rating-stars {
  margin-bottom: 10px;
}
.building-bridges
  .right-content
  .d-flex
  .content
  .rating-stars
  span.fa.fa-star {
  font-size: 16px;
  letter-spacing: 4px;
}
.building-bridges .right-content .d-flex .content h6 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.building-bridges .right-content .d-flex .content p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
}
.building-bridges .right-content .top-headings {
  position: relative;
}
.building-bridges .right-content .top-headings::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  background-image: url("/public/course/assets/images/support/white-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2px;
  height: 246px;
}
.building-bridges.mbl .left-figures {
  padding-right: 40px;
}
.building-bridges.mbl .student-feedback-slide {
  padding: 0 2px;
}
.quality-education.building-bridges .student-feedback-slide.slick-slide {
  padding: 0 16px;
}
.building-bridges.mbl .student-feedback-slide .d-flex {
  align-items: center;
}
/* Building Bridges Section CSS */

/* Academic Events Section CSS */
.academic-events {
  background-color: #9F0203;
  padding-bottom: 0;
}
.academic-events .event-slider {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 0 -10px;
}
.academic-events .event-slider .single-slide {
  width: calc(100% / 3);
  margin-bottom: 20px;
  padding: 0 10px;
  position: relative;
}
.academic-events .event-slider .single-slide:nth-of-type(4) {
  width: 50%;
  margin-bottom: 0;
}
.academic-events .event-slider .single-slide:last-child {
  width: 50%;
  margin-bottom: 0;
}
.academic-events .event-slider .single-slide figure,
.building-bridges.mbl .d-flex figure {
  min-height: 345px;
  border-radius: 8px;
  position: relative;
}
.academic-events .event-slider .single-slide figure h5,
.building-bridges.mbl .d-flex figure h5 {
  position: absolute;
  margin-bottom: 0;
  transform: translate(-50%, -40%);
  bottom: 0;
  left: 50%;
  color: var(--white);
  font-size: 28px;
  font-weight: 300 !important;
  font-family: var(--lato);
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.academic-events .event-slider .single-slide figure .overlay-layer,
.building-bridges.mbl .d-flex figure .overlay-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 75%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  padding: 40px;
  z-index: -1;
  border-radius: 8px;
}
.academic-events .event-slider .single-slide figure:hover .overlay-layer,
.building-bridges.mbl .d-flex figure:hover .overlay-layer {
  height: 100%;
  z-index: 1;
}
.academic-events .event-slider .single-slide figure:hover h5,
.building-bridges.mbl .d-flex figure:hover h5 {
  opacity: 0;
}
.academic-events .event-slider .single-slide figure .overlay-layer p,
.building-bridges.mbl .d-flex figure .overlay-layer p {
  color: var(--white);
  font-size: 18px;
  font-weight: 300 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.academic-events .event-slider .single-slide figure .overlay-layer p span,
.building-bridges.mbl .d-flex figure .overlay-layer p span {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 26px;
}
.academic-events .event-slider ul.slick-dots {
  bottom: -20px;
}
.academic-events .event-slider ul.slick-dots li.slick-active button {
  background-color: var(--white);
}
/* Academic Events Section CSS */

/* Quality Education Section CSS */
.quality_education {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}
.quality-education .right-content {
  text-align: right;
  padding: 0 110px 0 0;
}
.quality-education .bg-white {
  background-color: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.quality-education .bg-white p {
  color: var(--text-color);
  font-weight: 300 !important;
  font-style: italic;
}
.quality-education .bg-white p strong {
  color: var(--mehroon);
  font-weight: 500;
}
.quality-education .bg-white h4 {
  color: var(--mehroon);
}
.quality-education .right-content .d-flex {
  justify-content: end;
}
.quality-education .right-figure figure {
  min-height: 742px;
  border-radius: 8px;
  position: relative;
}
.quality-education .right-figure figure h5 {
  position: absolute;
  margin-bottom: 0;
  transform: translate(-50%, -40%);
  bottom: 0;
  left: 50%;
  color: var(--white);
  font-size: 28px;
  font-weight: 300 !important;
  font-family: var(--lato);
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.quality-education .right-figure figure .overlay-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 75%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  padding: 40px;
  z-index: -1;
  border-radius: 8px;
}
.quality-education .right-figure figure:hover .overlay-layer {
  height: 100%;
  z-index: 1;
}
.quality-education .right-figure figure:hover h5 {
  opacity: 0;
}
.quality-education .right-figure figure .overlay-layer p {
  color: var(--white);
  font-size: 18px;
  font-weight: 300 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
}
.quality-education .right-figure figure .overlay-layer p span {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 26px;
}
.quality-education.building-bridges .top-heading {
  position: relative;
}
.quality-education.building-bridges .top-heading::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  background-image: url(/public/course/assets/images/support/white-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2px;
  height: 246px;
}
.quality-education.building-bridges {
  margin-bottom: 20px;
  padding: 80px 0 80px;
  background-position: left;
}
.quality-education.building-bridges .right-content {
  padding-left: 0;
  padding-right: 100px;
}
/* Quality Education Section CSS */

/* Sports At CGC Section CSS */
.sports-at-cgc {
  padding-top: 40px;
}
.sports-at-cgc h3 {
  font-weight: 400 !important;
  font-size: 40px;
  font-family: var(--lato);
  color: var(--mehroon);
}
.sports-at-cgc figure {
  width: 600px;
}
.sports-at-cgc figure img {
  width: 100%;
}
.sports-at-cgc .top-content p {
  line-height: 1.5;
}
.sports-at-cgc .top-content p strong {
  font-weight: 500;
}
.sports-at-cgc .top-content {
  margin-bottom: 30px;
}
.sports-at-cgc ul li {
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
}
.sports-at-cgc ul li strong {
  font-weight: 500;
}
.sports-at-cgc ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 6px;
  height: 6px;
  background-color: var(--black);
  border-radius: 100%;
}
/* Sports At CGC Section CSS */

/* World Class Education Section CSS */
.world-class-education {
  position: relative;
  padding: 80px 0 140px 0;
}
.world-class-education .text-center {
  max-width: 1400px;
  margin: 0 auto 60px auto;
}
.world-class-education h3 {
  font-weight: 400 !important;
  font-size: 40px;
  font-family: var(--lato);
  color: var(--mehroon);
}
.world-class-education .youtube-video {
  text-align: center;
}
.world-class-education .youtube-video iframe {
  width: 100%;
  max-width: 1220px;
  min-height: 480px;
}
/* World Class Education Section CSS */

/* Vibrant Clubs Section CSS */
.vibrant-clubs h3 {
  font-weight: 400 !important;
  font-size: 40px;
  font-family: var(--lato);
  color: var(--mehroon);
}
.vibrant-clubs .text-center {
  max-width: 1400px;
  margin: 0 auto 50px auto;
}
.vibrant-clubs figure {
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.vibrant-clubs figure img {
  filter: grayscale(1);
  transition: var(--transition);
  transform: scale(1);
  width: 100%;
}
.vibrant-clubs figure:hover img {
  filter: none;
  transform: scale(1.1);
}
.vibrant-clubs figure figcaption {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 300 !important;
}
.vibrant-clubs .club-slider ul.slick-dots {
  bottom: -60px;
}
.vibrant-clubs .club-slider ul.slick-dots li button,
.academic-events .event-slider ul.slick-dots li button,
.international-collaborations
  .international-collaboration-slider
  ul.slick-dots
  li
  button {
  width: 8px;
  height: 8px;
  background-color: #c2c2c2;
  border-radius: 100%;
}
.vibrant-clubs .club-slider ul.slick-dots li.slick-active button {
  width: 20px;
  background-color: var(--mehroon);
  border-radius: 10px;
}
.vibrant-clubs .club-slider .slick-list,
.academic-events .event-slider .slick-list,
.international-collaborations .international-collaboration-slider .slick-list {
  margin: 0 0 0 -20px;
}
.vibrant-clubs .club-slider .slick-track,
.academic-events .event-slider .slick-track,
.international-collaborations .international-collaboration-slider .slick-track {
  margin: 0 0px 0 20px !important;
}
.vibrant-clubs .club-slider .slick-slide,
.academic-events .event-slider .slick-slide,
.international-collaborations .international-collaboration-slider .slick-slide {
  overflow: hidden;
}
/* Vibrant Clubs Section CSS */

/* North India Section CSS */
.north-india-institute {
  padding-top: 10px;
}
.north-india-institute .d-flex figure,
.north-india-institute .d-flex .institute-content {
  width: 50%;
}
.north-india-institute .institute-content h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 300 !important;
  font-family: var(--lato);
}
.north-india-institute .institute-content {
  padding: 100px;
}
.north-india-institute .institute-content p {
  font-size: 24px;
  font-family: var(--lato);
  font-weight: 300 !important;
  color: var(--white);
  max-width: 600px;
  width: 100%;
  margin-bottom: 60px;
}
.north-india-institute .institute-content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.north-india-institute .d-flex figure img {
  width: 100%;
  height: 100%;
}
.north-india-institute .placementss {
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}
.north-india-institute .placementss .single {
  border-bottom: 1px dashed #ffffff;
  width: 33.3%;
}
.north-india-institute .placementss.border-bottom-none .single {
  border-bottom: none;
}
.north-india-institute .placementss .border-right {
  border-right: 1px dashed #ffffff;
}
.north-india-institute .placementss .pd-right-30 {
  padding-right: 30px;
}
.north-india-institute .placementss .pd-left-30 {
  padding-left: 30px;
}
.north-india-institute .placementss .pd-btm-20 {
  padding-bottom: 20px;
}
.north-india-institute .placementss .pd-top-20 {
  padding-top: 20px;
}
.north-india-institute .placementss .single p {
  font-size: 45px;
  margin-bottom: 0px;
  font-weight: 400 !important;
}
.north-india-institute .placementss .single p cite {
  font-style: normal;
  font-size: 25px;
  position: relative;
  left: 4px;
}
.north-india-institute .placementss .single span {
  font-size: 17px;
  color: var(--white);
  font-weight: 300 !important;
}
.north-india-institute
  .placementss
  .single.border-left-none.pd-btm-20.pd-left-30 {
  padding-top: 0;
}
/* North India Section CSS */

/*------------- Campus Life Page CSS ends Here----------------*/

/*------------- Admission Overview Page CSS starts from Here----------------*/

/* Admission Overview Section CSS */
.admission-overview-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 916px;
  padding: 360px 0 0 0;
  position: relative;
}
.admission-overview-banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.admission-overview-banner .main-container{
  position: relative;
}
.admission-overview-banner-content h1 {
  font-size: 78px;
  color: var(--white);
  font-weight: 300 !important;
  font-family: var(--raleway);
  margin-bottom: 15px;
}
.admission-overview-banner-content h1 span {
  font-size: 42px;
  font-weight: 400;
}
.admission-overview-banner-content p {
  font-family: var(--raleway);
  color: var(--white);
  font-size: 24px;
  margin-bottom: 30px;
}
.cgc-admission-overview .text-right {
  display: flex;
  justify-content: end;
}
.building-bridges-to-brilliance .equal-height-container {
  display: table;
  width: 100%;
  height: 100%;
}
.equal-height-container .col {
  display: table-cell;
}
.equal-height-container .col {
  display: table-cell; /* Make elements inside the container behave like table cells */
}
.building-bridges-to-brilliance .bridge-box .overlay-layer {
  padding: 0 0 0 10px;
}
.building-bridges-to-brilliance .bridge-box .overlay-layer-2 {
  padding: 0 0 0 30px;
}
.building-bridges-to-brilliance
  .bridge-box
  .overlay-layer.add-student-data-here {
  height: 100%;
  z-index: 1;
}
.building-bridges-to-brilliance .bridge-box .overlay-layer ul {
  padding: 0;
  column-count: 2;
  text-align: left;
}
.building-bridges-to-brilliance .bridge-box .overlay-layer ul li {
  margin-bottom: 6px;
  font-size: 14px;
  position: relative;
}
.building-bridges-to-brilliance .bridge-box .overlay-layer ul li::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 7px;
  background-color: #444444;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}
.mou-education-entities .mou-slide img{
    cursor: auto;
}
/* Admission Overview Section CSS */

/* CGC Admission Overview Section CSS */
.cgc-admission-overview {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cgc-admission-overview h2 {
  font-weight: 300 !important;
  color: var(--mehroon);
  font-size: 40px;
}
.cgc-admission-overview p {
  margin-bottom: 35px;
}
/* CGC Admission Overview Section CSS */

/* College Rankings Section CSS */
.college-rankings {
  background-color: var(--white);
}
.college-rankings .slick-slider .pagination-style .slick-dots {
  display: none !important;
}
.college-rankings .top-content {
  text-align: center;
  margin-bottom: 40px;
}
.college-rankings .top-content .rating-stars {
  margin-bottom: 15px;
}
.college-rankings .rating-stars span {
  color: var(--mehroon);
  letter-spacing: 6px;
  font-size: 18px;
}
.college-rankings .top-content h2 {
  color: #2e2e2e;
  font-size: 32px;
  opacity: 0.8;
  font-weight: 400 !important;
  margin-bottom: 8px;
}
.college-rankings .ranked-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
}
.college-rankings .rankingthumb-content,
.college-rankings .rankingthumb-content-content {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  height: 100%;
}
.college-rankings .ranked-boxes .rank:first-child {
  margin-right: 25px;
}
.college-rankings .ranked-boxes .rank:nth-of-type(2) {
  margin-left: 25px;
}
.college-rankings .ranked-boxes .rank p {
  margin-bottom: 0;
  font-weight: 300 !important;
}
.college-rankings .ranked-boxes .rank p strong {
  font-weight: 500;
  color: var(--text-color);
}
.college-rankings .college-ranking-slider {
  margin-bottom: 45px;
}
.college-rankings .college-ranking-slider .rank-slide figure {
  display: flex;
  justify-content: center;
}
.college-rankings .college-ranking-slider .rank-slide figure img {
  filter: grayscale(100);
  transition: var(--transition);
}
.college-rankings .college-ranking-slider .slick-arrow::before {
  top: -5px;
  background-image: url(/public/course/assets/images/support/angel_arrow_right.svg);
  width: 26px;
  height: 40px;
  content: "";
  position: absolute;
}
.college-rankings .college-ranking-slider .slick-next:before {
  content: "";
  right: 0;
}
.college-rankings .college-ranking-slider .slick-prev:before {
  content: "";
  left: 0;
  transform: rotate(180deg);
}
.college-rankings .ranking-section__top-rankings--slider .slider.slider-nav {
  max-width: 1100px;
  width: 100%;
}
.college-rankings .slider.slider-nav .slick-arrow {
  background-image: url(/public/course/assets/images/support/angel_arrow_right.svg);
  width: 26px;
  height: 40px;
  content: "";
  position: absolute;
}
.college-rankings .slider.slider-nav .slick-prev {
  left: -90px;
  transform: rotate(180deg);
  top: 45px;
}
.college-rankings .slider.slider-nav .slick-next {
  right: -80px;
}
.college-rankings .slider.slider-nav .slick-arrow::before {
  content: "";
  opacity: 0;
}
.college-rankings
  .content-slider
  .rs-detail-item__slider
  .slick-track
  .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.college-rankings
  .content-slider
  .rs-detail-item__slider
  .rankingthumb-content__no {
  padding: 11px 0;
  font-size: 24px;
  font-weight: 600;
}
.college-rankings
  .content-slider
  .rs-detail-item__slider
  .rankingthumb-content
  span {
  font-size: 15px;
}
.college-rankings
  .content-slider
  .rs-detail-item__slider
  .rankingthumb-content__content {
  font-weight: 500;
}
.college-rankings
  .content-slider
  .rs-detail-item__slider
  .rankingthumb-content__content
  small {
  padding-bottom: 10px;
  display: block;
  font-size: 16px;
  line-height: 1.4;
}
.college-rankings .content-slider .slick-list,
.college-rankings .content-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.college-rankings .content-slider .rdi-item {
  height: 100%;
  align-items: stretch;
}
/* College Rankings Section CSS */

/* Top Tier Rankings Section CSS */
.top-tier-rankings {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-tier-rankings h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.top-tier-rankings .top-tier-rank-boxes {
  display: flex;
  align-items: center;
}
.top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-left,
.top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-right {
  border: 1px solid #fff;
  border-radius: 16px;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 30px;
  height: 100%;
  min-height: 250px;
}
.top-tier-rankings .top-tier-rank-boxes .left-box {
  padding-right: 30px;
}
.top-tier-rankings .top-tier-rank-boxes .center-box {
  padding-left: 30px;
  position: relative;
  padding-right: 40px;
}
.top-tier-rankings .top-tier-rank-boxes .right-box {
  position: relative;
  padding-left: 40px;
}
.top-tier-rankings .top-tier-rank-boxes .center-box::before,
.top-tier-rankings .top-tier-rank-boxes .right-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/public/course/assets/images/support/white-dashed-line.svg");
  width: 2px;
  height: 100%;
}
.top-tier-rankings .top-tier-rank-boxes .center-box p.digit,
.top-tier-rankings .top-tier-rank-boxes .right-box p.digit {
  font-size: 70px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}
.top-tier-rankings .top-tier-rank-boxes .center-box .ranks,
.top-tier-rankings .top-tier-rank-boxes .right-box .ranks {
  display: flex;
  flex-direction: column;
}
.top-tier-rankings .top-tier-rank-boxes .center-box .ranks span,
.top-tier-rankings .top-tier-rank-boxes .right-box .ranks span {
  background-color: #fff;
  font-size: 15px;
}
.top-tier-rankings .top-tier-rank-boxes .center-box .ranks strong,
.top-tier-rankings .top-tier-rank-boxes .right-box .ranks strong {
  font-weight: 600;
  color: #fff;
  font-size: 32px;
  line-height: 1.6;
}
.top-tier-rankings .top-tier-rank-boxes .center-box p,
.top-tier-rankings .top-tier-rank-boxes .right-box p {
  color: var(--white);
  font-size: 14px;
}
.top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-left {
  margin-right: 15px;
}
.top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-right {
  margin-left: 15px;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex
  p {
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 24px;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex
  p
  span {
  font-size: 16px;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex {
  align-items: center;
  position: relative;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex:first-child {
  padding-bottom: 20px;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("/public/course/assets/images/support/white-dashed-line-horizontal.svg");
  width: 100%;
  height: 2px;
}
.top-tier-rankings
  .top-tier-rank-boxes
  .rank-box.rank-box-right
  .right-box
  .d-flex:nth-of-type(2) {
  padding-top: 20px;
}
/* Top Tier Rankings Section CSS */

/* Building Bridges To Brilliance Section CSS */
.building-bridges-to-brilliance {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 920px;
}
.building-bridges-to-brilliance h2 {
  font-weight: 300 !important;
  color: var(--mehroon);
  font-size: 40px;
}
.building-bridges-to-brilliance p.text {
  max-width: 280px;
}
.building-bridges-to-brilliance .bridge-box {
  background-color: #fff;
  border: 1px solid #b7b7b7;
  border-radius: 16px;
  text-align: center;
  padding: 40px;
  box-shadow: 0px 0px 10px #ccc;
  position: relative;
  height: 100%;
}
.building-bridges-to-brilliance .bridge-box figure {
  margin-bottom: 18px;
}
.building-bridges-to-brilliance .bridge-box h6 {
  color: var(--text-color);
  margin-bottom: 15px;
}
.building-bridges-to-brilliance .bridge-box p {
  font-size: 16px;
  font-weight: 300 !important;
}
.building-bridges-to-brilliance .buttons {
  display: flex;
  justify-content: center;
}
.building-bridges-to-brilliance .buttons .btn {
  font-size: 15px;
  padding: 0 25px;
  height: 45px;
}
.building-bridges-to-brilliance
  .col-md-6:nth-of-type(2)
  .buttons
  a.apply_now_form {
  margin-right: 15px;
}
.building-bridges-to-brilliance .col-md-6:last-child .buttons a.student-data {
  margin-left: 15px;
}
/* Building Bridges To Brilliance Section CSS */

/* Placements Overview Section CSS */
.north-india-institute.north-ind-institute-overview {
  padding: 0 0;
}
.placements-overview {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.placements-overview .text-center {
  max-width: 1200px;
  margin: 0 auto 0px auto;
}
.international-exposure-programs .text-center {
  margin-bottom: 45px;
}
.placements-overview h2 {
  font-weight: 300 !important;
  color: var(--mehroon);
  font-size: 40px;
}
.placements-overview .placement-slider .card-content {
  background-color: #2e2e2e;
  border-radius: 16px;
  padding: 30px;
  color: var(--white);
  position: relative;
  height: 100%;
  min-height: 300px;
  transition: var(--transition);
  box-shadow: 0px 0px 5px #161616;
}
.placements-overview .placement-slider .card-content h3 {
  margin-bottom: 5px;
}
.placements-overview .placement-slider .card-content p {
  font-size: 14px;
}
.placements-overview .placement-slider .card-content h5 {
  font-size: 20px;
  color: var(--white);
}
.placements-overview .placement-slider .card-content h5 span {
  font-size: 32px;
}
.placements-overview .placement-slider .card-content h5 {
  margin-bottom: 0;
}
.placements-overview .placement-slider .card-content span {
  font-size: 14px;
}
.placements-overview .placement-slider .card-content figure {
  margin-bottom: 30px;
}
.placements-overview .placement-slider .card-content figure.card-pic {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 1;
}
.placements-overview .placement-slider .slick-track {
  padding: 90px 0 0 0;
}
.placements-overview .placement-slider .card-content figure.card-pic img {
  width: 100%;
  border-bottom-right-radius: 16px;
}
.placements-overview .placement-slider .placement-slide {
  padding: 0 25px;
}
.placements-overview .placement-slider .slick-list {
  margin: 0 0px 0 -25px;
}
.placements-overview .placement-slider .slick-arrow::before {
  top: -5px;
  background-image: url(/public/course/assets/images/support/angel_arrow_right.svg);
  width: 26px;
  height: 40px;
  content: "";
  position: absolute;
}
.placements-overview .placement-slider .slick-prev:before {
  content: "";
  left: -60px;
  transform: rotate(180deg);
}
.placements-overview .placement-slider .slick-next:before {
  content: "";
  right: -30px;
}
.placements-overview .placement-slider.slick-initialized.slick-slider {
  margin-bottom: 60px;
}
.placement-companies-logo-slider.slick-initialized.slick-slider {
  margin-bottom: 80px;
}
.placements-overview .international-exposure-programs {
  color: var(--white);
}
.placements-overview .international-exposure-programs h2 {
  font-weight: 300 !important;
  color: var(--white);
  font-size: 40px;
  margin-bottom: 14px;
}
.placements-overview .international-exposure-programs h6 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}
.placements-overview .international-exposure-programs .content {
  margin-bottom: 35px;
}
.placements-overview .international-exposure-programs p {
  font-size: 16px;
  margin-bottom: 0;
}
.placements-overview .international-exposure-programs figure {
  margin-bottom: 25px;
}
.placements-overview .international-exposure-programs .text-center figure {
  top: 40px;
  position: relative;
}
.placements-overview .placement-slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  padding: 40px 0;
}
.placements-overview .placement-slider .slick-slide img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
}

.placements-overview .placement-slider .slick-center {
  transform: scale(1.1);
}
.placements-overview .placement-slider .slick-center .card-content {
  background-color: var(--bg-mehroon);
}
/* Placements Overview Section CSS */

/* International Collaborations Section CSS */
.international-collaborations {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.international-collaborations .text-center {
  margin-bottom: 40px;
}
.international-collaborations h2 {
  font-weight: 300 !important;
  color: var(--mehroon);
  font-size: 40px;
  margin-bottom: 20px;
}
.international-collaborations figure {
  min-height: 320px;
  padding: 25px 25px 20px 25px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.international-collaborations h5 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 400 !important;
}
.international-collaborations .colab-slide {
  margin-bottom: 20px;
}
.international-collaborations .colab-slide,
.international-collaborations .single-slide {
  margin: 0;
  padding: 0 10px 15px 10px;
  overflow: hidden;
}
.international-collaborations
  .international-collaboration-slider
  ul.slick-dots
  li.slick-active
  button {
  background-color: var(--mehroon);
  width: 20px;
  border-radius: 10px;
}
.international-collaborations
  .international-collaboration-slider
  .slick-list
  .slick-track {
  margin: 0 !important;
}
/* International Collaborations Section CSS */

/* Nurturing Connections Section CSS */
.nurturing-connections {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 920px;
}
.absolute-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
.nurturing-connections h2 {
  font-weight: 400 !important;
  color: var(--mehroon);
  font-size: 48px;
}
.nurturing-connections p {
  max-width: 510px;
  font-weight: 300 !important;
}
.nurturing-connections .row {
  align-items: baseline;
}

.nurturing-connections ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.nurturing-connections ul li {
  width: 50%;
  border: 1px dashed var(--white);
  display: flex;
  align-items: baseline;
}
.nurturing-connections ul li:first-child {
  border-left: 0;
  border-top: 0;
  padding-bottom: 40px;
  padding-right: 40px;
}
.nurturing-connections ul li:nth-of-type(2) {
  border: none;
  padding-left: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--white);
}
.nurturing-connections ul li:nth-of-type(3) {
  padding-top: 40px;
  padding-right: 40px;
  border: none;
  border-right: 1px dashed var(--white);
}
.nurturing-connections ul li:last-child {
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  padding-left: 40px;
  padding-top: 40px;
  border-top: none;
}
.nurturing-connections .pd-left {
  padding: 0px 80px;
}
.nurturing-connections ul li .content {
  padding-left: 20px;
}
.nurturing-connections ul li .content p {
  margin-bottom: 0;
  color: var(--white);
  padding: 4px 6px;
  border-radius: 8px;
  border: 1px solid var(--white);
}
.nurturing-connections ul li .content span {
  font-size: 40px;
  font-weight: 300 !important;
  color: var(--white);
}
/* Nurturing Connections Section CSS */

/* MOU Education Entities Section CSS */
.mou-education-entities {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mou-education-entities .text-center {
  margin-bottom: 70px;
}
.mou-education-entities .text-center h2 {
  font-weight: 300 !important;
  color: var(--mehroon);
  font-size: 28px;
  margin-bottom: 12px;
}
.mou-education-entities .text-center {
  font-weight: 300 !important;
}
.mou-education-entities .mou-slide {
  border-right: 1px dashed #000;
  padding: 0;
}
.mou-education-entities .mou-slide figure {
  border-bottom: 1px dashed #000;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.mou-education-entities .mou-slide:last-child {
  border-right: none;
}
.mou-education-entities .mou-slide figure:last-child {
  border-bottom: none;
}
.mou-education-entities .mou-slider {
  margin: 0px 0px 0 3px;
  padding: 0 0px 0 0px;
}
.mou-education-entities .mou-slider .slick-list {
  margin: 0 0px 0 -1px;
}
.mou-education-entities .mou-slider ul.slick-dots {
  bottom: -60px;
}
.mou-education-entities .mou-slider ul.slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #c2c2c2;
  border-radius: 100%;
}
.mou-education-entities .mou-slider ul.slick-dots li.slick-active button {
  background-color: var(--mehroon);
  width: 20px;
  border-radius: 10px;
}
/* MOU Education Entities Section CSS */

/* Choose CGC Mohali Jhanjeri Section CSS */
section.choose-cgc-mohali-jhanjeri.north-india-institute {
  padding: 130px 0 70px 0;
}
.choose-cgc-mohali-jhanjeri {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
.choose-cgc-mohali-jhanjeri.north-india-institute h2 {
  font-weight: 300 !important;
  color: var(--white);
  font-size: 40px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .content-column figure {
  text-align: center;
  margin-bottom: 14px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute p {
  color: var(--white);
  font-weight: 300 !important;
  line-height: 1.5;
  padding-right: 160px;
  margin-bottom: 50px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .d-flex {
  align-items: center;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure {
  width: 353px;
  height: 620px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure img {
  border-radius: 100px;
  width: 100%;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure:first-child {
  margin-top: -100px;
  padding-right: 10px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure:last-child {
  padding-left: 10px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .placementss .single p {
  font-size: 18px;
  text-align: center;
  padding-right: 0;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .placementss .single p span {
  font-size: 18px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute .content-column {
  padding-right: 70px;
}
.choose-cgc-mohali-jhanjeri.north-india-institute
  .single.border-right.pd-right-30.pd-btm-20 {
  padding-bottom: 30px;
}
.apply-cgcuet.difr-page {
  padding: 80px 0;
}
/* Choose CGC Mohali Jhanjeri Section CSS */
/*------------- Admission Overview Page CSS ends Here----------------*/

/*------------- Education Loan Page CSS Starts From Here----------------*/
/* Education Loan quest Section CSS */
.education-loan-quest {
  padding: 0;
}
.education-loan-quest .education-loan-quest-content {
  width: 50%;
  padding: 80px;
}
.education-loan-quest .education-loan-quest-content h2 {
  color: var(--mehroon);
}
.education-loan-quest .education-loan-quest-content .grayquest-box {
    margin-top: 40px;
    padding: 20px;
    background: #bd292a;
    background: linear-gradient(90deg, rgb(180 3 3 / 77%) 0%, rgb(120 19 19) 100%, rgb(255 255 255) 100%);
    color: var(--white);
}
.education-loan-quest .education-loan-quest-content .grayquest-box a {
  text-decoration: underline;
  color: var(--white);
  font-weight: 500;
}
.education-quest-figure {
  width: 50%;
}
.education-quest-figure figure {
  width: 100%;
  height: 100%;
}
.education-quest-figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Education Loan quest Section CSS */

/* Bihar West Student Credit Card Setion CSS*/
.bihar-west-student-credit-card {
  color: var(--white);
}
.bihar-west-student-credit-card .row {
  align-items: baseline;
}
.bihar-west-student-credit-card h2 {
  font-size: 48px;
  color: var(--white);
  font-weight: 300 !important;
}
.bihar-west-student-credit-card p {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300 !important;
}
.bihar-west-student-credit-card p strong {
  font-weight: 500;
}
.bihar-west-student-credit-card .eligibility-box {
  background-color: #bd292a;
  padding: 20px;
}
.bihar-west-student-credit-card .eligibility-box h4 {
  color: var(--white);
  font-weight: 400 !important;
}
.bihar-west-student-credit-card .eligibility-box ul li {
  margin-bottom: 18px;
  color: var(--white);
  line-height: 1.5;
  position: relative;
}
.bihar-west-student-credit-card .eligibility-box ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  background-color: var(--white);
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.bihar-west-student-credit-card .pd-right {
  padding-right: 80px;
  position: relative;
}
.bihar-west-student-credit-card .pd-right::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-image: url("/public/course/assets/images/support/bihar_element.svg");
  background-position: center;
  background-size: contain;
}
.bihar-west-student-credit-card .pd-left {
  padding-left: 80px;
}
/* Apply For Education Loan Setion CSS*/
.apply-for-education-loan {
  background-color: #f5f5f5;
}
.apply-for-education-loan h2 {
  color: var(--mehroon);
}
.apply-for-education-loan .text-center {
  margin-bottom: 50px;
}
.apply-for-education-loan .row {
  align-items: stretch;
}
.apply-for-education-loan .bg-white {
  background-color: var(--white);
  padding: 40px 30px;
  flex: 1;
  margin-right: 10px;
}
.apply-for-education-loan .bg-white h4 {
  color: var(--mehroon);
}
.apply-for-education-loan .bg-white p a {
  text-decoration: underline;
  color: var(--mehroon);
}
.apply-for-education-loan .bg-white .apply-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 14px 0;
  width: 100%;
  max-width: 600px;
}
.apply-for-education-loan .bg-white .apply-box .single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  position: relative;
}
.apply-for-education-loan .bg-white .apply-box .single::before {
  content: "";
  position: absolute;
  right: -10px;
  top: auto;
  width: 31px;
  height: 135%;
  background-image: url(/public/course/assets/images/support/step_line.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.apply-for-education-loan .bg-white .apply-box .single:last-child::before {
  display: none;
}
.apply-for-education-loan .bg-white .apply-box .single figure {
  margin-bottom: 10px;
}
.apply-for-education-loan .bg-white .apply-box .single p {
  margin-bottom: 0;
  text-align: center;
  font-size: 16px;
}
.apply-for-education-loan .bg-red {
  background-color: var(--mehroon);
  flex: 1;
  padding: 40px 30px;
  margin-left: 10px;
  color: var(--white);
}
.apply-for-education-loan .bg-red figure {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.apply-for-education-loan .bg-red figure:first-child {
  margin-right: 25px;
}
.apply-for-education-loan .bg-red h3 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 400 !important;
}
.apply-for-education-loan .bg-white p {
  margin-bottom: 35px;
}
/* Bihar West Student Credit Card Setion CSS*/

/*------------- Education Loan Page CSS Ends Here----------------*/

/*------------- CGC Transport Page Starts From Here----------------*/
/* CGC Bus Transport Setion CSS*/
.education-loan-quest.cgc-bus-transport .education-loan-quest-content {
  padding: 80px;
}
.cgc-buses-route {
  color: var(--white);
  padding: 90px 0 100px 0;
}
.cgc-buses-route .text-center {
  margin-bottom: 120px;
}
.cgc-buses-route .bus-route-slider .single-route {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cgc-buses-route .bus-route-slider .single-route .round {
  background-color: #fff;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 15px solid #a32750;
  outline: dashed;
}
.cgc-buses-route .bus-route-slider .single-route a {
  margin-bottom: 0;
  text-align: center;
  color: var(--white);
  text-decoration: underline;
}
.cgc-buses-route .bus-route-slider .single-route a:hover {
  text-decoration: none;
}
.cgc-buses-route .bus-route-slider .single-route .round p {
  font-size: 56px;
  margin-bottom: 0;
  color: var(--mehroon);
}
.cgc-buses-route .modal .modal-header {
  background-color: var(--white);
  border-bottom: 1px solid #747474;
}
.cgc-buses-route .modal .modal-dialog.modal-fullscreen-sm-down {
  max-width: 800px;
  width: 100%;
}
.cgc-buses-route .modal table.bus-route-modal-table {
  width: 100%;
}
.cgc-buses-route .modal table.bus-route-modal-table tr {
  border-color: transparent;
}
.cgc-buses-route .modal table.bus-route-modal-table th {
  background-color: var(--mehroon);
  padding: 16px 20px;
  font-weight: 400;
  text-align: left;
}
.cgc-buses-route .modal table.bus-route-modal-table td {
  color: #000;
  padding: 16px 20px;
  font-weight: 400;
  border: 1px solid #dcdcdc;
}
.bus-query {
  background-color: #f5f5f5;
  padding: 30px 0 60px 0;
}
.bus-query h4 {
  color: var(--mehroon);
}
.bus-query ul {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0;
}
.bus-query ul li,
.bus-query ul li a {
  color: var(--text-color);
  font-weight: 400;
  text-align: left;
}
.bus-query ul li a {
  font-weight: 500;
}
.bus-query ul li {
  width: calc(100% / 3);
  border-right: 1px solid #7a7a7a;
  padding: 20px;
}
.bus-query ul li:last-child {
  border-right: none;
}
.cgc-bus-route-chart {
  padding-bottom: 20px;
}
.cgc-buses-route .bus-route-slider .slick-list {
  padding: 1px 0;
}
.cgc-bus-route-chart table.dataTable tbody td {
  padding: 14px 20px !important;
}
.cgc-bus-route-chart table.dataTable thead th,
table.dataTable thead td {
  padding: 14px 20px !important;
  font-weight: 500;
}
.cgc-bus-route-chart table.dataTable.no-footer {
  border-bottom: none;
}
.cgc-bus-route-chart h2 {
  color: var(--mehroon);
}
.education-loan-quest.cgc-bus-transport h2 {
  color: var(--mehroon);
}
/* CGC Bus Transport Setion CSS*/
/*------------- CGC Transport Page Starts From Here----------------*/
.education-loan-quest.cgc-bus-transport.hostel-facility-base {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  p,
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  h2,
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  li,
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  li
  a {
  color: var(--white);
  font-weight: 300 !important;
}
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  li
  a {
  font-weight: 500 !important;
}
.education-loan-quest.cgc-bus-transport.hostel-facility-base
  .education-loan-quest-content
  ul {
  padding: 0;
}
.cgc-campus-living figure img {
  width: 100%;
}
.cgc-campus-living h2 {
  color: var(--mehroon);
  font-size: 48px;
  font-weight: 400 !important;
}
.cgc-campus-living p {
  color: var(--text-color);
  font-weight: 300 !important;
}
.cgc-campus-living p.line span {
  background-color: var(--mehroon);
}
.cgc-campus-living .pd-right {
  padding-right: 120px;
}
.cgc-campus-living figure {
  position: relative;
}
.cgc-campus-living figure:hover h3 {
  opacity: 0;
}
.cgc-campus-living figure h3 {
  position: absolute;
  margin-bottom: 0;
  transform: translate(-50%, -40%);
  bottom: 0;
  left: 50%;
  color: var(--white);
  font-size: 28px;
  font-weight: 300 !important;
  font-family: var(--lato);
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.cgc-campus-living figure .overlay-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 75%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  padding: 40px;
  z-index: -1;
  border-radius: 0px;
}
.cgc-campus-living figure:hover .overlay-layer {
  height: 100%;
  z-index: 1;
}
.overlay-layer p {
  color: var(--white);
}
.overlay-layer p span {
  font-weight: 500 !important;
  font-size: 24px;
}
.placementss {
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}
.placementss .pd-top-20 {
  padding-top: 20px;
}
.placementss .pd-btm-20 {
  padding-bottom: 20px;
}
.placementss .pd-right-30 {
  padding-right: 20px;
}
.placementss .pd-left-30 {
  padding-left: 20px;
}
.placementss .single.border-left-none.pd-btm-20.pd-left-30 {
  padding-top: 0;
}
.placementss.border-bottom-none .single {
  border-bottom: none;
}
.placementss.border-bottom-none .single {
  border-bottom: none;
}
.placementss .single p {
  font-size: 45px;
  margin-bottom: 0px;
  font-weight: 400 !important;
  color: var(--white);
}
.placementss .single span {
  font-size: 17px;
  color: var(--white);
  font-weight: 300 !important;
}
.placementss .single p cite {
  font-style: normal;
  font-size: 25px;
  position: relative;
  left: 4px;
}
.placementss .single {
  border-bottom: 1px dashed #ffffff;
  width: 33.3%;
}
.placementss .border-right {
  border-right: 1px dashed #ffffff;
}
.hostel-facility-section .placementss .pd-btm-20 {
  padding-bottom: 40px;
}
.hostel-facility-section .placementss .pd-right-30 {
  padding-right: 40px;
}
.hostel-facility-section .placementss .pd-left-30 {
  padding-left: 40px;
}
.hostel-facility-section .placementss .pd-top-20 {
  padding-top: 40px;
}
.campus-plcmnt {
  padding-left: 50px;
  padding-top: 50px;
}
.campus-package.cgc-campus-living {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.campus-package.cgc-campus-living .row {
  align-items: flex-start;
}
.campus-fee-details .fee-detail-content {
  width: 50%;
}
.campus-fee-details .fee-detail-content h2 {
  color: var(--mehroon);
  font-weight: 400 !important;
}
.campus-fee-details .fee-detail-content p {
  margin-bottom: 40px;
}
.campus-fee-details .fee-detail-content table {
  width: 100%;
  margin-bottom: 40px;
}
.campus-fee-details .fee-detail-content table th {
  background-color: var(--mehroon);
  color: var(--white);
  padding: 12px 20px;
}
.campus-fee-details .fee-detail-content table td {
  background-color: var(--white);
  color: var(--text-color);
  padding: 12px 20px;
}
.hostel-facility-section .text-center {
  color: var(--white);
  margin-bottom: 80px;
}
.hostel-facility-section .text-center h2 {
  font-weight: 400 !important;
}
.hostel-facility-section .fee-placement {
  text-align: center;
}
.hostel-facility-section .fee-placement p {
  font-size: 20px;
  font-weight: 400 !important;
}
.hostel-facility-section .fee-placement p span {
  font-size: 20px;
}
.hostel-facility-section .fee-placement img {
  margin-bottom: 30px;
}
.fee-detail-faq h2 {
  color: var(--mehroon);
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 300 !important;
}
.fee-detail-faq .faqs .accordion h2 {
  margin-bottom: 0;
}
.fee-detail-faq .faqs .accordion .accordion-item {
  margin-bottom: 20px;
}
.fee-detail-faq .faqs .accordion .accordion-item:not(:first-of-type) {
  border: 1px solid rgba(0, 0, 0, 0.125);
}
/*------------- CGC Transport Page Ends Here----------------*/

/*------------- Placement overview Page Starts From  Here----------------*/
.admission-overview-banner.placement-overview-page-banner .banner-content h2,
.admission-overview-banner.placement-overview-page-banner .banner-content p {
  color: var(--white);
}
.admission-overview-banner.placement-overview-page-banner .banner-content h2 {
  font-size: 60px;
}
.admission-overview-banner.placement-overview-page-banner
  .banner-content
  h2
  span {
  font-weight: 500;
  font-size: 36px;
}
.admission-overview-banner.placement-overview-page-banner .banner-content p {
  font-size: 108px;
  font-weight: 100;
  line-height: 0.9;
}
.admission-overview-banner.placement-overview-page-banner
  .banner-content
  p
  span {
  font-size: 68px;
}
.placement-overview-placement {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 820px;
  padding: 180px 0;
}
.placements-overview.place-overview .highest-package ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.placements-overview.place-overview .highest-package {
  text-align: center;
  color: var(--white);
}
.placements-overview.place-overview .highest-package h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.placements-overview.place-overview .highest-package p.font-24 {
  font-size: 24px;
}
.placements-overview.place-overview .highest-package ul li {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: calc(100% / 4);
  border-right: 2px dotted var(--white);
  align-items: center;
}
.placements-overview.place-overview .highest-package ul li:last-child {
  border-right: 0;
}
.placements-overview.place-overview .highest-package p {
  margin-bottom: 0px;
}
.placements-overview.place-overview h4.heading.text-center {
  max-width: 810px;
  margin: 0 auto 40px auto;
  font-weight: 400 !important;
}
.placements-overview.place-overview .highest-package iframe {
  width: 986px;
  height: 460px;
}
.pioneering-features {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pioneering-features h2 {
  color: var(--mehroon);
}
.pioneering-features .text-center.head {
  margin-bottom: 80px;
}
.pioneering-features .col-lg-3 {
  text-align: center;
  padding: 0 50px;
}
.executive-director-dcpd .director-info {
  padding: 0 140px 0 180px;
  color: var(--white);
  width: 50%;
}
.executive-director-dcpd .director-image {
  width: 50%;
}
.executive-director-dcpd,
.executive-director-dcpd .director-info ul {
  padding: 0;
}
.executive-director-dcpd .d-flex {
  align-items: center;
}
.executive-director-dcpd .director-info ul li a {
  color: var(--white);
  font-weight: 400;
}
.executive-director-dcpd .director-info ul li {
  margin-bottom: 6px;
}
.executive-director-dcpd .director-info p {
  font-weight: 300;
  margin-bottom: 30px;
}
.about-dcpd figure {
  text-align: center;
}
.about-dcpd .text-center {
  margin-bottom: 60px;
}
.about-dcpd .text-center p {
  font-weight: 300;
  line-height: 1.5;
}
.about-dcpd {
  color: var(--white);
}
.professional-triumphs h2 {
  color: var(--mehroon);
}
.professional-triumphs p {
  font-weight: 500;
}
.professional-triumphs .graph_calc.pt_custom {
  padding-top: 50px;
}
.professional-triumphs .top-companies.text-center {
  padding-top: 60px;
}
.professional-triumphs .logos img {
  margin-right: 15px;
}
.professional-triumphs .logos img:last-child {
  margin-right: 0;
}
/*------------- Placement overview Page Ends Here----------------*/

/*------------- Engineering Placement Page Starts From Here----------------*/
.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.sm-internal-banner {
  min-height: 400px;
  padding: 260px 0 80px 0;
}
.engineering-placement-section .engineering-special h2 {
  color: var(--white);
}
.engineering-placement-section .engineering-special p {
  color: var(--white);
}
.engineering-placement-section .engineering-special .d-flex figure {
  background-color: #9F0203;
  width: 340px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0px 0px 5px #2d2d2d;
  border-radius: 8px;
}
.engineering-placement-section .engineering-special .d-flex figure img {
  margin-bottom: 20px;
}
.engineering-placement-section .engineering-special .d-flex figure figcaption {
  color: var(--white);
  padding: 0 60px;
  text-align: center;
}
.engineering-placement-section .engineering-special .box {
  margin-bottom: 15px;
  width: 100%;
}
.engineering-placement-section
  .engineering-special
  .d-flex.flex-direction-column {
  flex-direction: column;
      justify-content: center;
}
.engineering-placement-section
  .engineering-special
  .d-flex.justify-content-end {
  gap: 15px;
}
.placements-overview.place-overview.engineering-placement-section{
    position: relative;
}
.placements-overview.place-overview.engineering-placement-section::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 68%;
    background-color: var(--mehroon);
    z-index: -1;
}
.placement-overview-placemen.eng-placement{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*------------- Engineering Placement Page Ends Here----------------*/

/*------------- Campus Facilities Page Starts From Here----------------*/
.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
  h2 {
  font-weight: 400 !important;
  font-size: 60px;
  font-family: var(--popin);
}
.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
  h2
  span {
  font-size: 46px;
  font-weight: 300;
}
.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
  p {
  font-size: 26px;
  line-height: 1.3;
  font-family: var(--popin);
  font-weight: 200;
}
.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
  p
  span {
  font-size: 26px;
}
.cgc-campus-rise {
  position: relative;
  padding: 180px 0;
}
.cgc-campus-rise .d-flex.align-items-center.main-container {
  z-index: 2;
  background-color: var(--mehroon);
  margin: 0 180px 0 0px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
  padding: 25px 50px 25px 300px;
  position: relative;
}
.cgc-campus-rise .cgc-campus-rise-content {
  margin-left: 40%;
  padding: 0px 0px 0px 40px;
  position: relative;
}
.cgc-campus-rise .cgc-campus-rise-content h2 {
  font-size: 36px;
  color: var(--mehroon);
  font-weight: 300 !important;
  position: absolute;
  top: -150px;
}
.cgc-campus-rise .cgc-campus-rise-content p {
  color: var(--white);
}
.cgc-campus-rise .d-flex figure {
  width: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cgc-campus-rise .d-flex figure img {
  width: 100%;
}
.cgc-academic-aesthetics {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.cgc-academic-aesthetics h2 {
  font-size: 36px;
  color: var(--mehroon);
  font-weight: 400 !important;
}
.cgc-academic-aesthetics img {
  width: 100%;
}
.cgc-academic-aesthetics .col-lg-6 {
  margin-top: 20px;
}
.cgc-academic-aesthetics p.text {
  padding-right: 100px;
}
.cgc-academic-aesthetics p.line span {
  background-color: var(--mehroon);
}
.cgc-campus-facilities-all h2,
.cgc-campus-facilities-all p {
  color: var(--white);
}
.cgc-campus-facilities-all {
  padding: 200px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cgc-campus-facilities-all .content {
  position: relative;
}
.cgc-campus-facilities-all::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--text-color);
  opacity: 0.4;
  height: 100%;
}
.cgc-campus-facilities-all .content.left-content {
  text-align: left;
  width: 40%;
}
.cgc-campus-facilities-all .content figure{
  display: none;
}
.cgc-campus-facilities-all .content.right-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-self: flex-end;
}

/*------------- Campus Facilities Page Ends Here----------------*/

/*------------- Career Jobs Page Start Here----------------*/
.career-jobs {
  position: relative;
}
.career-jobs form.search-form {
  margin-block-end: 0;
  box-shadow: 0 0px 13px #ccc;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px 15px;
  display: inline-flex
;
  width: 100%;
}
.career-jobs input#myInput {
  border: 0;
  width: 100%;
}
.career-jobs .sidebar .wrapper {
  max-height: 900px;
  overflow-y: auto;
  padding: 10px 50px 10px 15px;
}
.career-jobs .border-left {
  padding-left: 25px;
}
.career-jobs .border-left a.red-btn{
  cursor: pointer;
}
.career-jobs .box.list {
  position: relative;
}
.career-jobs .sidebar .active .post-title {
  border: 1px solid #9F0203;
  color:  linear-gradient(to bottom, #ad274f, #98002e);
}
.career-jobs li {
  font-size: 14px !important;
}
.career-jobs .sidebar .post-title {
  margin-bottom: 30px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #0000005c;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 400;
  cursor: pointer;
}
.career-jobs .list button.btn1,.career-jobs .red-btn,.career-jobs .red-btn:hover,.career-jobs .red-btn:focus {
  background: linear-gradient(to bottom, #ad274f, #98002e);
  font-size: 15px;
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  border: 0;
}
.career-jobs .view-button-bottom {
  margin-top: 30px;
}
.career-jobs .sidebar .active .indicator {
  display: block !important;
}
.career-jobs .box.list img {
  position: absolute;
  top: 40%;
  right: -30px ! IMPORTANT;
  left: auto;
}
.career-jobs .hide {
  display: none !important;
}
.career-jobs #search-dropdown {
  position: absolute;
  background: white !important;
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
  z-index: 9999999;
  border: 1px solid #00000036;
  overflow-x: hidden;
  box-shadow: 0 0 10px #00000082;
}
.career-jobs .top-bar {
  margin-bottom: 40px;
  padding-right: 30px;
}
.career-jobs table#myTable {
  margin-bottom: 0px;
}
.career-jobs table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
  background-color: hsla(0, 0%, 50.2%, .0705882353);
}
.career-jobs a.dropdown-item.search-td {
  white-space: break-spaces;
}
.career-jobs .dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  position: relative;
}
.career-jobs .dropdown-menu { 
  padding-left: 0 !important;
}
.career-jobs .dropdown-item {
  display: block;
  width: 100%;
  padding: 15px 20px;
  clear: both;
  font-weight: 400;
  color: #444;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.career-jobs .dropdown-item:hover {
  background-color: #ececec;
  color: #9F0203;
}
.career-jobs a.dropdown-item.search-td {
  white-space: break-spaces;
}
.career-jobs h1.page-title {
  color: #9F0203;
  font-weight: 600;
  font-size: 24px;
}
.career-jobs .post-content h2.title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
}
.career-jobs .post-content .category {
  color: #9F0203;
}
.career-jobs .sidebar .post-title h4 {
  margin-bottom: 10px;
}
.career-jobs .post-title h4 {
  font-size: 16px;
}
.career-jobs h1, h2, h3, h4, h5, h6 {
  margin-bottom: 5px;
}
.career-jobs ul,.career-jobs ol,.career-jobs li {
  margin: 0;
  list-style: disc;
}
/* .career-jobs .border-left {
  padding-left: 0;
  border-left: 1px solid #ed1c247d;
  height: fit-content;
} */
.career-jobs .sidebar {
  padding-right: 0;
  border-right: 2px dotted #95445c;
  height: fit-content;
}
.career-jobs ::-webkit-scrollbar, ::-webkit-scrollbar-track,.career-jobs ::-webkit-scrollbar-track-piece {
  background: transparent;
}
.career-jobs ::-webkit-scrollbar, ::-webkit-scrollbar-track,.career-jobs ::-webkit-scrollbar-track-piece {
  background: transparent;
}
.career-jobs ::-webkit-scrollbar {
  min-width: 0;
  width: 0;
  max-width: 0;
}
.job-listing-modal .modal-header{
  flex-direction: column;
  text-align: center;
}
.job-listing-modal .modal-header p{
  color: var(--white);
}
.job-listing-modal .modal-header .btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
    filter: invert(1);
}
.job-listing-modal .modal-footer {
  text-align: center;
  padding-bottom: 20px;
}
.job-listing-modal .modal-footer .btn{
  background-color: var(--mehroon);
  color: var(--white);
  border-radius: 4px;
  padding: 0 20px;
  min-height: 38px;
}
/*------------- Career Jobs Page Ends Here----------------*/

/*------------- Sports Page Starts From Here----------------*/
section.admission-overview-banner.placement-overview-page-banner.sports-page p, section.admission-overview-banner.placement-overview-page-banner.sports-page p span{
  font-size: 30px;
  line-height: 1.2;
}
/*------------- Sports Page Ends Here----------------*/
.fashion-designing-banner{
  padding: 0;
}
.fashion-designing-banner figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fashion-designing-banner figure img.lg-none{
  display: none;
}
.college-sports .pd-left{
    padding-left: 60px;
    color: #fff;
}
.college-sports .pd-left h1 {
    font-size: 60px;
    font-weight: 300 !important;
}
.college-sports .pd-left p{
  font-weight: 300 !important;
}
.college-sports{
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}
.cgc-playing-field{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cgc-playing-field h2, .cgc-playing-field h5, .cgc-playing-field p{
  color: var(--white);
}
.cgc-playing-field .field-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.cgc-playing-field .box {
    width: 47%;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgb(50 60 90);
    border-radius: 16px;
    border: 1px solid #626262;
    margin-bottom: 15px;
}
.cgc-playing-field .box:nth-of-type(odd){
  margin-right: 10px;
}
.cgc-playing-field .box:nth-of-type(.event-slider) {
  margin-left: 10px;
}
.cgc-playing-field .box h5{
    padding-left: 20px;
    font-size: 30px;
    font-weight: 300 !important;
    margin-bottom: 0;
}
.cgc-playing-field h2{
  font-size: 48px;
  font-weight: 300 !important;
  margin-bottom: 20px;
}
.cgc-playing-field p{
  font-weight: 300 !important;
  margin-bottom: 35px !important;
}
.journey-of-excellence{
  background-color: var(--mehroon);
  position: relative;
  color: var(--white);
}
.journey-of-excellence .text-center{
  margin-bottom: 50px;
}
.journey-of-excellence .text-center h2, .journey-of-excellence .text-center p{
  font-weight: 300 !important;
}
.journey-of-excellence .text-center h2{
  font-size: 48px;
  margin-bottom: 10px;
}
.journey-of-excellence .text-center p{
  max-width: 920px;
  margin: 0 auto;
}
.journey-of-excellence figure{
  position: relative;
}
.journey-of-excellence figure figcaption {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    padding: 0 60px;
}
.journey-of-excellence .excellence-journey-slider li.slick-active{
  width:40px;
}
.journey-of-excellence .excellence-journey-slider li.slick-active button{
  width: 40px !important;
}
.journey-of-excellence .excellence-journey-slider .slick-dots li button{
  background-color: var(--white);
  border-radius: 10px;
  height: 10px;
  width: 12px;
}
.journey-of-excellence .excellence-journey-slider .slick-dots {
  bottom: -50px;
}
.glimps-into-cgc h2{
  font-size: 36px;
  font-weight: 400 !important;
  color: var(--mehroon);
  margin-bottom: 40px;
}
.glimps-into-cgc .mb-custom {
    margin-bottom: 20px;
}
.college-sports .mb-custom {
    margin-bottom: 20px;
}
.quality-education.building-bridges.cgc-sport-pg {
    margin-bottom: 0;
}
.college-sports .row{
  align-items: flex-start;
}
.quality-education.building-bridges.cgc-sport-pg .right-figure figure{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.glimps-into-cgc figure img{
    width: 100%;
    transition: var(--transition);
}
.glimps-into-cgc figure img:hover{
    filter: brightness(0.5);
}
/* Internationals Tie Ups CSS Starts From Here */
.north-india-institute.north-ind-institute-overview.nurturing-connections .institute-content ul{
  width: 75%;
}
.north-india-institute.north-ind-institute-overview.nurturing-connections .institute-content ul li figure{
  width: 48px;
}
.north-india-institute.north-ind-institute-overview.nurturing-connections .institute-content ul li{
  align-items: end;
}
.int-international-colab{
  background-color: var(--mehroon);
  color: var(--white);
  padding-bottom: 0;
}
.cgc-top-tier-placements{
  color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cgc-top-tier-placements h2{
  margin-bottom: 15px;
}
.cgc-top-tier-placements .text-center{
  margin-bottom: 60px;
}
.cgc-top-tier-placements .yt-link button{
    width: 100%;
    background-color: transparent;
    border: none;
}
.cgc-top-tier-placements ul{
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  padding-left: 0;
}
.cgc-top-tier-placements ul li{
  margin: 0 20px 0 20px;
  position: relative;
  border-right: 2px dotted var(--white);
  width: 100%;
}
.cgc-top-tier-placements ul li:last-child{
  border-right: 0;
}
.cgc-top-tier-placements ul li p.digits {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 400 !important;
}
.cgc-top-tier-placements ul li p.digits span{
  font-size: 24px;
}
.cgc-top-tier-placements ul li p{
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300 !important;
}
.cgc-top-tier-placements .yt-link iframe{
  height: 580px;
  width: 100%;
}
.cgc-mohali-partners{
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.cgc-mohali-partners h2{
  color: var(--mehroon);
  margin-bottom: 20px;
}
.cgc-mohali-partners .all-figures {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.cgc-mohali-partners .all-figures figure img{
    border-radius: 20px;
    border: 4px solid #fff;
}
.international-exposure-programs h2{
  color: var(--mehroon);
  font-size: 42px;
  font-weight: 400 !important;
  margin-bottom: 50px;
}
.international-exposure-programs .d-flex{
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.international-exposure-programs .d-flex .flex {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}
.international-exposure-programs .d-flex .flex.first-flx .center-bar::before{
  display: none;
}
.international-exposure-programs .d-flex .flex .left-bar {
    width: 45%;
    text-align: right;
}
.international-exposure-programs .d-flex .flex .center-bar {
    width: 10%;
    text-align: center;
}
.international-exposure-programs .d-flex .flex .center-bar img{
  z-index: 2;
  position: relative;
}
.international-exposure-programs .d-flex .flex .center-bar::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-right: 3px dotted #494949;
}
.international-exposure-programs .d-flex .flex .right-bar {
    width: 45%;
}
.international-exposure-programs .d-flex .right-bar figure img, .international-exposure-programs .d-flex .left-bar figure img{
  border-radius: 10px;
}
.int-international-colab .int-collabs .row {
  align-items: flex-start;
}
.int-international-colab .text-center{
  margin-bottom: 50px;
}
.int-international-colab ul.slick-dots{
  bottom: 10px;
}
.int-international-colab .slick-dots li button{
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}
.int-international-colab .slick-dots li.slick-acitve button{
  width: 40px;
  border-radius: 6px;
}
.mou-education-entities .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mou-education-entities .tab-pane.active {
  display: block;
  opacity: 1;
}
.int-international-colab .int-collabs .row figure img{
  object-fit: cover;
  width: 100%;
}
.cgc-mohali-partners figure img{
  width: 100%;
}
.mou-education-entities .flex{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}
.mou-education-entities .flex figure{
    border-bottom: 2px dotted #ccc;
    border-right: 2px dotted #ccc;
    padding: 40px 0;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mou-education-entities .flex figure.highlight{
  border-right: 0;
}
.mou-education-entities .flex figure:last-child{
  border-right: 0;
}
.mou-education-entities button.nav-link{
    background-color: transparent;
    border: none;
}
.mou-education-entities .flex figure.last-row{
  border-bottom: 0;
}
.mou-education-entities button.slick-arrow::before{
  content: "";
  background-image: url('/public/course/assets/images/home/angle-left.svg');
  position: absolute;
  font-family: 'FontAwesome';
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.mou-education-entities button.slick-next::before{
  content: "";
  transform: rotate(180deg);
}
  .mou-education-entities  .slick-list figure {
    display: flex;
    justify-content: center;
}
.int-international-colab .int-collabs figure{
  position: relative;
}
.int-international-colab .int-collabs figcaption {
    position: absolute;
    left: 0;
    bottom: 50px;
    padding: 0 20px;
}
.int-international-colab .int-collabs figure::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  box-shadow: 0px -130px 30px 0px inset #000;
}
/* Internationals Tie Ups CSS Ends Here */

/* WNS Flagship Program CSS Starts From Here */
.program-advantages{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.program-advantages .col-md-4 {
    background-color: #9F0203;
    color: #fff;
    text-align: center;
    padding: 50px;
}
.program-advantages .col-md-4:nth-of-type(even){
  background-color: #b11112;
}
.program-advantages .col-md-4 h5{
  color: var(--white);
  margin-bottom: 18px;
  font-size: 22px;
}
.program-advantages .text-center{
  color: var(--white);
  margin-bottom: 50px;
}
.program-advantages .row{
  flex-wrap: wrap;
  align-items: normal;
}
.program-advantages .row .col-md-4{
   display: flex;
}
.program-advantages .row .col-md-4 .box{
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-advantages .box figure{
  margin-bottom: 25px;
}
.program-advantages .box p{
  margin-bottom: 0;
}
.education-loan-quest-content p strong{
  font-weight: 500 !important;
}
.wns-operational-details h2{
  color: var(--mehroon);
}
.wns-operational-details table{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 30px;
}
.wns-operational-details table th.main{
  padding: 25px;
  background-color: var(--mehroon) !important;
  font-size: 24px;
  color: var(--white);
  font-weight: 600 !important;
  text-align: center;
}
.wns-operational-details table th{
  font-size: 20px;
  color: var(--mehroon);
  background-color: transparent;
  text-align: left;
  font-weight: 500 !important;
  padding: 25px;
}
.wns-operational-details table td {
    padding: 20px;
    font-size: 20px;
    font-weight: 500 !important;
}
.education-loan-quest.cgc-bus-transport.wns-internal-bnr h2{
  margin-bottom: 30px;
}
.wns-operational-details h2{
  margin-bottom: 50px;
}
.wns-operational-details figure img {
  width: 100%;
  margin: 20px 0;
}
.admission-overview-banner.placement-overview-page-banner.sports-page p.mehroon-bg, .admission-overview-banner.placement-overview-page-banner.sports-page p.white-bg{
  font-weight: 500 !important;
  padding: 12px;
  font-size: 24px;
  display: inline-block;
}
.admission-overview-banner.placement-overview-page-banner.sports-page h2 span{
  font-size: 56px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page p.text{
  font-size: 40px;
  font-weight: 400 !important;
  margin-bottom: 30px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page p.mehroon-bg{
  background-color: var(--mehroon);
  color: var(--white);
 
}
.admission-overview-banner.placement-overview-page-banner.sports-page p.white-bg{
  background-color: var(--white);
  color: var(--text-color);
}
.research-custom .row figure{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* WNS Flagship Program CSS Ends Here */

/* Venture Nest Page CSS Starts From Here */
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2{
  line-height: 1;
  margin-bottom: 20px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span{
  font-size: 40px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span:first-child{
  margin-top: 30px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span:last-child{
  margin-bottom: 20px;
  display: inline-block;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content p{
  line-height: 1.4;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content .d-flex{
  margin-bottom: 30px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content .d-flex figure:last-child{
  margin-left: 25px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page {
    padding: 280px 0px;
}
.venture-key-highlights figure img{
  width: 100%;
  height: 100%;
}
.venture-key-highlights h5, .venture-key-highlights p{
  color: var(--white);
}
.venture-key-highlights h5{
  font-weight: 400;
}
.venture-why-we-help .text-center{
  margin-bottom: 50px;
}
.venture-why-we-help .row .col-md-3{
  border-right: 2px dotted var(--text-color);
  padding: 0;
}
.venture-why-we-help .row .col-md-3:last-child{
  border-right: none;
}
.venture-why-we-help .row .col-md-3 .d-flex{
  border-bottom: 2px dotted var(--text-color);
  text-align: center;
  padding: 50px 30px;
}
.venture-why-we-help .row .col-md-3 .d-flex:last-child{
  border-bottom: none;
}
.venture-why-we-help .d-flex{
  flex-direction: column;
}
.venture-why-we-help .row .col-md-3 figure{
  margin-bottom: 15px;
}
.showcase-your-innovations .row{
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: normal;
}
.showcase-your-innovations .row:last-child{
  margin-bottom: 0;
}
.showcase-your-innovations .col-lg-5{
  background-color: var(--mehroon);
  padding: 0 40px;
}
.showcase-your-innovations figure img{
  width: 100%;
}
.showcase-your-innovations .row .sm-height{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.showcase-your-innovations .col-lg-5 h2, .showcase-your-innovations .col-lg-5 p{
  color: var(--white);
}
.venture-why-we-help{
   background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.showcase-your-innovations{
  padding-top: 0;
}
.venture-association-partnership .row{
  align-items: normal;
}
.venture-association-partnership h2{
  margin-bottom: 20px;
}
.venture-association-partnership h2, .venture-association-partnership p{
  color: var(--white);
}
.venture-association-partnership .column-left, .venture-association-partnership .column-right{
  padding: 80px 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.venture-association-partnership figure img{
  width: 100%;
}
section.venture-association-partnership{
  padding-top: 0;
}
.venture-application-process{
  padding-top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 20px;
}
.venture-application-process .text-center{
  margin-bottom: 50px;
}
.venture-application-process .row{
  align-items: normal;
}
.venture-application-process .col-md-4.text-center {
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 20px;
    padding: 80px 40px 40px 40px;
    position: relative;
    background-color: var(--white);
}
.venture-application-process .col-md-4.text-center span{
    position: absolute;
    left: 20px;
    top: 40px;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--mehroon);
}
.venture-application-process .col-md-4.text-center figure{
  margin-bottom: 20px;
}
.venture-application-process .col-md-4.text-center figure img{
    width: 120px;
}
.venture-application-process p{
    max-width: 1140px;
    margin: 0 auto;
}
.venture-vault{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.venture-why-we-help .row .col-md-3 .d-flex p{
  margin-bottom: 0;
}
/* Venture Nest Page CSS SEnds Here */

.bg-gray {
  background-color: var(--light-gray);
}
.width-80 {
  width: var(--w-80);
}
.cgc-info {
  padding: 0;
}
.cgc-info .row {
  align-items: unset;
}
.mehroon {
  color: var(--mehroon);
}
.bg-white {
  background: var(--bg-white);
}
.pl-pr-75 {
  padding: var(--pl-pr-75);
}
.success-begins {
  position: relative;
  height: calc(850px + 22px);
}
.success-begins:after {
    background: var(--bg-mehroon);
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: calc(282px + 60px);
}
.cgc-info .content {
  width: 80%;
}
.bg-mehron {
  background: var(--bg-mehroon);
}
.ml-80 {
  margin-left: 80px;
}
.ml-30 {
  margin-left: 30px;
}
.text-cultivate {
    text-shadow: 2px 3px 4px #4d2a2a;
    font-weight: 700 !important;
}
.care-box {
  padding: 45px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 1px 2px 8px 1px #b7b6b6;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  border: 1px solid #444;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
}
.care-box figure img { 
 text-align: center;
}
.student-key-feature-slider {
  align-items: normal !important;
}
.cgc-info .well-being {
  z-index: 9;
  position:absolute;
  bottom: -2px;
  width: 80% !important;
}
.student-key-feature-slider .col-md-6 {
  margin: 10px 0;
}
.white-btn {
  background-color: var(--bg-white);
  color: var(--black);
}
.gallery-student-welfare figure {
  position: relative;
  overflow: hidden;
}
.gallery-student-welfare figure img {
  filter: grayscale(1);
  transition: var(--transition);
  transform: scale(1);
  width: 100%;
}
.gallery-student-welfare figure:hover img {
  filter: none;
  transform: scale(1.1);
}
.gallery-student-welfare .row {
    align-items: normal !important;
}

/* Alumni Page CSS Starts From Here */
section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1{
  line-height: 1.25;
}
section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1 span{
  font-size: 78px;
}
section.admission-overview-banner.education-loan-banner.academic-fee-strcuture p{
  font-size: 36px;
}
section.cgc-bus-route-chart.academic-fee-chart {
    padding-top: 30px;
}
.cgc-bus-route-chart.academic-fee-chart .text-center{
    max-width: 900px;
    margin: 0 auto;
}
section.cgc-bus-route-chart.academic-fee-chart th:first-child, section.cgc-bus-route-chart.academic-fee-chart td:first-child{
  text-align: left;
}
section.cgc-bus-route-chart.academic-fee-chart td, section.cgc-bus-route-chart.academic-fee-chart th{
  text-align: center;
}
section.cgc-bus-route-chart.academic-fee-chart td a{
  color: var(--text-color);
}
section.cgc-bus-route-chart.academic-fee-chart ul{
  padding-left: 0;
}
section.cgc-bus-route-chart.academic-fee-chart ul li{
  color: #9E0203;
  font-size: 15px;
  margin-bottom: 4px;
  font-style: italic;
}
section.cgc-bus-route-chart.academic-fee-chart .note h2{
  font-style: italic;
  font-weight: 400;
}
section.cgc-bus-route-chart.academic-fee-chart .note{
    padding: 25px;
    background-color: #f0f0f0;
}
div#patent_data_length, div#patent_data_filter, div#patent_data_info, div#patent_data_paginate{
  width: 50%;
  display: inline-block;
}
/* Alumni Page CSS Ends Here */


/* Media Query CSS Starts From Here */
@media screen and (max-width: 1799.98px) {
  section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1 span{
    font-size: 56px;
  }
  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content .d-flex figure img{
    width: 200px;
  }
  section.admission-overview-banner.placement-overview-page-banner.sports-page p, section.admission-overview-banner.placement-overview-page-banner.sports-page p span{
    font-size: 26px;
  }
  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span {
    font-size: 36px;
    line-height: 0.7;
    margin-top: 16px;
}
  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2{
    font-size: 48px;
    margin-bottom: 10px;
  }
  .venture-why-we-help .row .col-md-3 .d-flex h5{
    font-size: 22px;
  }
  .venture-application-process .col-md-4.text-center h5{
    font-size: 22px;
  }
.venture-application-process .col-md-4.text-center span{
  font-size: 20px;
}
  .venture-application-process .col-md-4.text-center figure img{
    width: 100px;
  }
  .venture-association-partnership .column-left, .venture-association-partnership .column-right{
    padding: 50px;
  }
  .international-exposure-programs h2 {
    font-size: 36px;
    margin-bottom: 40px;
}
  .cgc-top-tier-placements .text-center {
    margin-bottom: 45px;
}
  .cgc-top-tier-placements ul li p {
    font-size: 17px;
}
.cgc-top-tier-placements ul li p.digits {
    font-size: 32px;
    margin-bottom: 2px;
}
.cgc-top-tier-placements .yt-link iframe {
    height: 490px;
}
.journey-of-excellence figure figcaption {
    font-size: 24px;
}
  .journey-of-excellence .text-center h2 {
    font-size: 38px;
}
   .glimps-into-cgc .mb-custom figure img{
    width: 100%
  }
  .journey-of-excellence figure {
    width: 660px;
}
.journey-of-excellence figure img{
  width: 100%;
  height: 100%;
}
  .cgc-playing-field h2 {
    font-size: 36px;
    margin-bottom: 18px;
}
  .cgc-playing-field .box h5 {
    font-size: 22px;
}
  .college-sports figure img{
    width: 100%;
  }
  .college-sports .mb-custom figure{
    width: 100%;
    height: 800px;
  }
    .college-sports .mb-custom figure img{
    width: 100%;
    height: 100%;
  }
  .college-sports .pd-left h1 {
    font-size: 40px;
  }
  .college-sports .mb-custom.left figure{
    height: 336px;
    width: 100%;
  }
  .gk-kala figure{
    width: 100%;
    height: 370px;
  }
  .cgc-academic-aesthetics .campus-plcmnt {
    padding-left: 0;
  }
  .engineering-placement-section .engineering-special .d-flex figure {
    width: 300px;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex
    figure
    figcaption {
    padding: 0 40px;
    font-size: 16px;
  }
  .executive-director-dcpd .director-info {
    padding: 0 80px 0 180px;
  }
  .campus-plcmnt {
    padding-left: 5px;
  }
  .admission-overview-banner-content h1 {
    font-size: 58px;
  }
  .cgc-campus-living h2 {
    font-size: 42px;
  }
  .placementss .single p {
    font-size: 40px;
  }
  .hostel-facility-section .placementss .pd-right-30 {
    padding-right: 30px;
  }
  .hostel-facility-section .placementss .pd-btm-20 {
    padding-bottom: 30px;
  }
  .hostel-facility-section .fee-placement p {
    font-size: 18px;
  }
  .hostel-facility-section .fee-placement p span {
    font-size: 20px;
  }
  .cgc-campus-living figure h3 {
    font-size: 24px;
  }
  .fee-detail-faq h2 {
    font-size: 36px;
    margin-bottom: 45px;
  }
  .hostel-facility-section .fee-placement img {
    margin-bottom: 25px;
    width: 80px;
  }
  .explore-our-campus .pd-right {
    padding-right: 20px;
  }
  .building-bridges .left-figures .d-flex figure img {
    width: 100%;
  }
  .explore-our-campus h1,  .explore-our-campus h2{
    font-size: 48px;
  }
  .explore-our-campus ul li span {
    font-size: 22px;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 620px;
    min-height: 300px;
  }
  .building-bridges .right-content h2 {
    font-size: 42px;
  }
  .building-bridges .right-content h4 {
    font-size: 36px;
  }
  .building-bridges .right-content a {
    margin-bottom: 30px;
  }
  .building-bridges
    .right-content
    .d-flex
    .content
    .rating-stars
    span.fa.fa-star {
    font-size: 14px;
  }
  .building-bridges .right-content .d-flex .content h6 {
    font-size: 19px;
  }
  .sports-at-cgc h3 {
    font-size: 32px;
  }
  .sports-at-cgc figure {
    width: 600px;
  }
  .sports-at-cgc ul li {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .sports-at-cgc {
    padding-top: 40px;
  }
  .main-content p {
    font-size: 17px;
    line-height: 1.5;
  }
  .academic-events .event-slider .single-slide figure h5,
  .quality-education .right-figure figure h5 {
    font-size: 24px;
  }
  .world-class-education h3 {
    font-size: 36px;
  }
  .world-class-education .youtube-video iframe {
    max-width: 1140px;
    min-height: 420px;
  }
  .world-class-education .text-center {
    margin: 0 auto 40px auto;
  }
  .world-class-education {
    padding: 60px 0 100px 0;
  }
  .vibrant-clubs {
    padding: 70px 0 80px 0;
  }
  .north-india-institute .placementss .single p {
    font-size: 40px;
  }
  .north-india-institute .institute-content h2 {
    font-size: 42px;
  }
  .north-india-institute .institute-content p {
    font-size: 21px;
    margin-bottom: 45px;
  }
  .campus-life-banner {
    min-height: 806px;
  }
  .cgc-admission-overview figure {
    width: 600px;
  }
  .cgc-admission-overview figure img {
    width: 100%;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: 650px;
    padding: 180px 50px 180px 120px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-right .left-box figure img {
    width: 270px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-left .right-box figure img {
    width: 80px;
  }
  .building-bridges-to-brilliance .buttons .btn {
    font-size: 14px;
    padding: 0 15px;
    height: 44px;
  }
  .international-exposure-programs .text-center {
    margin: 0 auto 50px auto;
  }
  .nurturing-connections .absolute-figure img {
    width: 800px;
  }
  .nurturing-connections ul li:first-child {
    padding-right: 30px;
  }
  .nurturing-connections ul li:nth-of-type(2) {
    padding-left: 30px;
  }
  .nurturing-connections ul li:nth-of-type(3) {
    padding-right: 30px;
  }
  .nurturing-connections ul li:last-child {
    padding-left: 30px;
  }
  .nurturing-connections ul li .content {
    padding-left: 18px;
  }
  .nurturing-connections .pd-left {
    padding: 0px 60px;
  }
  .mou-education-entities {
    padding: 70px 0 90px 0;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute p {
    padding-right: 90px;
  }
  section.choose-cgc-mohali-jhanjeri.north-india-institute {
    padding: 100px 0px 80px 0;
  }
  .education-loan-quest .education-loan-quest-content {
    padding: 80px;
  }
  .bihar-west-student-credit-card h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 1699.98px) {
  section {
    padding: 70px 0;
  }
  h2.mehroon {
    font-size: 30px;
    margin-bottom: 18px;
  }
  h2.white {
    font-size: 32px;
    margin-bottom: 18px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span {
    font-size: 28px;
    margin-top: 20px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content .d-flex figure img {
    width: 180px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 {
    font-size: 42px;
}
section.venture-vault h5{
  font-size: 20px;
}
.venture-application-process .col-md-4.text-center figure img {
    width: 80px;
}
.venture-application-process .col-md-4.text-center h5 {
    font-size: 20px;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content p,  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content p span{
    font-size: 22px;
}
.venture-why-we-help .row .col-md-3 figure img{
  width: 80px;
}
.venture-why-we-help .row .col-md-3 .d-flex h5 {
    font-size: 20px;
}
  .mou-education-entities .flex figure img{
        width: 300px;
  }
      .cgc-top-tier-placements ul li p.digits {
        font-size: 28px;
    }
        .cgc-top-tier-placements ul li p {
        font-size: 16px;
    }
    .cgc-top-tier-placements ul {
    margin-bottom: 40px;
}
    .international-exposure-programs .d-flex .flex .left-bar h5{
      font-size: 20px;
    }
      .college-sports .mb-custom figure {
        height: 640px;
    }
        .college-sports .mb-custom.single-fig figure img{
    object-fit: contain;
  }
  .college-sports .pd-left {
    padding-left: 0;
}
.cgc-playing-field .box h5 {
        font-size: 20px;
    }
  .cgc-campus-facilities-all {
    padding: 150px 0;
  }
  .journey-of-excellence .text-center h2 {
        font-size: 32px;
    }
    .journey-of-excellence .text-center {
    margin-bottom: 40px;
}
.admission-overview-banner.placement-overview-page-banner .banner-content h2 {
    font-size: 50px;
}
.admission-overview-banner.placement-overview-page-banner .banner-content h2 span {
    font-size: 30px;
}
section.admission-overview-banner.placement-overview-page-banner.sports-page p, section.admission-overview-banner.placement-overview-page-banner.sports-page p span {
    font-size: 26px;
}
  .cgc-campus-rise .d-flex.align-items-center.main-container {
    margin: 0 80px 0 0px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2 {
    font-size: 60px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2
    span {
    font-size: 42px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p,
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p
    span {
    font-size: 30px;
  }
  .executive-director-dcpd .director-info {
    padding: 0 80px 0 80px;
  }
  .placements-overview .placement-slider .slick-prev:before {
    left: -40px;
  }
  .main-content p {
    font-size: 16px;
    line-height: 1.4;
  }
  .placements-overview.place-overview .highest-package iframe {
    width: 696px;
    height: 390px;
  }
  .pioneering-features .col-lg-3 {
    padding: 0 20px;
  }
  .pioneering-features .col-lg-3 figure {
    width: 200px;
    margin: 0 auto 20px auto;
  }
  .pioneering-features .col-lg-3 figure img {
    width: 100%;
    height: 100%;
  }
  .main-content .main-container {
    padding: 0 80px;
  }
  .top-engineering-college {
    padding: 50px 0 360px 0;
  }
  .discipline-top-banner {
    min-height: 920px;
    padding: 300px 0 0 0;
  }
  .discipline-top-banner .h1 {
    font-size: 80px;
  }
  .discipline-top-banner h2 {
    font-size: 46px;
  }
  .discipline-top-banner .d-flex.main .d-flex.column h2 {
    font-size: 90px;
  }
  .discipline-top-banner .d-flex.main .hash {
    top: 29px;
  }
  .top-engineering-college .col-lg-5 {
    padding-top: 3px;
  }
  .top-engineering-college .col-lg-7 {
    padding-right: 60px;
  }
  .top-engineering-college .border-box-text {
    padding: 18px;
  }
  .top-engineering-college .engineering-text img {
    max-width: 800px;
  }
  .top-engineering-college .director-message p::after {
    width: 140px;
  }
  .main-content .btn {
    height: 46px;
    padding: 0 25px;
  }
  .top-engineering-college .placement-bg {
    margin-top: 130px;
  }
  figure.placement-insight-figure {
    top: 10%;
  }
  figure.placement-insight-figure img {
    width: 80px;
    height: 800px;
  }
  .breadcrumbs-search-bar .d-flex ul li a {
    font-size: 17px;
  }
  .breadcrumbs-search-bar .d-flex ul {
    padding: 11px 15px;
  }
  .searchbar form input[type="search"] {
    height: 46px;
  }
  .engineering-programs ul li a {
    padding: 17px 25px 0 0;
    font-size: 17px;
  }
  .engineering-programs ul.listing-left {
    max-width: 420px;
  }
  .student-stories {
    max-height: 740px;
  }
  .student-stories .student-box-outside .student-box {
    padding: 35px;
    min-height: 300px;
  }
  .excellence-innovation figure {
    padding: 25px;
  }
  .excellence-innovation p.head {
    font-size: 22px;
    line-height: 1.4;
  }
  .abroad-study .image-box {
    max-height: initial;
  }
  .why-choose-cgc-mohali .content-right .placementss .single p {
    font-size: 32px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: 520px;
    padding: 120px 50px 120px 80px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul {
    max-width: 420px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li {
    padding: 15px 0px 15px 35px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li p.heading {
    font-size: 22px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li p.sub-heading {
    font-size: 18px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship h2 {
    font-size: 52px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship h3 {
    font-size: 26px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship figure img {
    max-width: 360px;
  }
  .cgcuet-endless-posibility .heading {
    margin-bottom: 40px;
  }
  .cgcuet-endless-posibility .cgcuet-phase {
    max-width: initial;
  }
  .cgc-eligibility figure img {
    width: 100%;
  }
  .career-prospects .figure-content p {
    padding: 14px 20px;
  }
  .compuet-science-engineering .eng-box {
    padding: 35px;
  }
  .compuet-science-engineering .eng-box span {
    margin-bottom: 15px;
  }
  .compuet-science-engineering .eng-box h6 {
    margin-bottom: 15px;
  }
  .empowering-education .empower-figure-left figure {
    height: 520px;
  }
  .empowering-education .empower-figure-right-first figure {
    height: 250px;
  }
  .empowering-education .empower-figure-right-second figure {
    height: 250px;
  }
  .why-choose-cgc-mohali .content-left ul li span {
    line-height: 1;
  }
  .why-choose-cgc-mohali .content-left ul li:nth-of-type(3) span {
    line-height: 1.3;
  }
  .career-prospects .figure-content .career-bg-left-content,
  .career-prospects .figure-content .career-bg-right-content {
    padding: 16px 0px 0 0;
  }
  .engineering-programs .listing-box ul.listing-right li::before {
    width: 5px;
    height: 5px;
  }
  .explore-our-campus h1, .explore-our-campus h2 {
    font-size: 40px;
  }
  .explore-our-campus ul li figure {
    margin-bottom: 12px;
    width: 70px;
  }
  .explore-our-campus ul li figure img {
    width: 100%;
  }
  .explore-our-campus ul li span {
    font-size: 18px;
  }
  .explore-our-campus ul li:first-child {
    padding-bottom: 20px;
    padding-right: 20px;
  }
  .explore-our-campus ul li:nth-of-type(2) {
    padding-bottom: 20px;
  }
  .explore-our-campus ul li:nth-of-type(3) {
    padding-top: 30px;
    padding-right: 20px;
  }
  .explore-our-campus .center-fig {
    padding: 0 40px 0 40px;
  }
  .building-bridges .right-content {
    padding: 0 0 0px 100px;
  }
  .building-bridges .right-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .building-bridges .right-content h3 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .building-bridges .right-content h4 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .building-bridges
    .right-content
    .d-flex
    .content
    .rating-stars
    span.fa.fa-star {
    font-size: 12px;
  }
  .building-bridges .right-content .d-flex .content p {
    font-size: 14px;
  }
  .building-bridges .right-content .d-flex .content .rating-stars {
    margin-bottom: 8px;
  }
  .building-bridges .right-content .d-flex figure {
    width: 90px;
  }
  .building-bridges .right-content p {
    margin-bottom: 30px;
  }
  .building-bridges .right-content a {
    margin-bottom: 20px;
  }
  .academic-events .event-slider .single-slide figure h5,
  .quality-education .right-figure figure h5 {
    font-size: 22px;
  }
  .academic-events .event-slider .single-slide figure .overlay-layer p span {
    font-size: 24px;
  }
  .academic-events .event-slider .single-slide figure .overlay-layer p {
    font-size: 16px;
  }
  .world-class-education .text-center {
    max-width: 1200px;
  }
  .world-class-education {
    padding: 50px 0 70px 0;
  }
  .vibrant-clubs h3 {
    font-size: 36px;
  }
  .vibrant-clubs .text-center {
    max-width: 1200px;
    margin: 0 auto 40px auto;
  }
  .north-india-institute .placementss .single p {
    font-size: 32px;
  }
  .north-india-institute .placementss .single span {
    font-size: 15px;
  }
  .north-india-institute .institute-content p {
    font-size: 20px;
  }
  .north-india-institute .institute-content h2 {
    font-size: 36px;
  }
  .north-india-institute .placementss .pd-right-30 {
    padding-right: 20px;
  }
  .north-india-institute .placementss .pd-left-30 {
    padding-left: 20px;
  }
  .campus-life-banner-content h1 {
    font-size: 36px;
  }
  .campus-life-banner-content p {
    max-width: 950px;
    margin: 0 auto 22px auto;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 600px;
  }
  .quality-education .right-figure figure {
    min-height: 642px;
  }
  .academic-events .event-slider .single-slide figure {
    min-height: 300px;
  }
  .sports-at-cgc figure {
    width: 540px;
  }
  .world-class-education .youtube-video iframe {
    max-width: 1040px;
    min-height: 400px;
  }
  .sports-at-cgc ul li {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .campus-life-banner {
    min-height: 780px;
  }
  .education-loan-quest .education-loan-quest-content {
    padding: 80px;
  }
  .education-loan-quest .education-loan-quest-content.pd-gsc {
    padding: 75px 60px 20px 80px;
  }
  .pd-gsc ul li {
    margin: 10px 0;
    position: relative;
  }
  .pd-gsc ul li::before {
    content: "";
    position: absolute;
    background-color: var(--white);
    left: -20px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
  }
  .apply-for-education-loan .bg-red figure {
    padding: 18px;
  }
  .admission-overview-banner {
    min-height: 816px;
    padding: 300px 0 0 0;
  }
  .education-loan-quest .education-quest-figure figure img {
    width: 100%;
  }
  .bihar-west-student-credit-card p {
    margin-bottom: 30px !important;
  }
  .bihar-west-student-credit-card h2 {
    font-size: 32px;
  }
  .bihar-west-student-credit-card .eligibility-box h4 {
    font-size: 21px;
  }
  .bihar-west-student-credit-card .eligibility-box ul li {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .cgc-top-tier-placements ul li p.digits span {
    font-size: 20px;
}
}

@media screen and (max-width: 1599.98px) {
  .main-content h2{
    font-size: 26px;
  }
  h2.white {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .venture-why-we-help .row .col-md-3 .d-flex h5 {
    font-size: 18px;
  }
  .venture-why-we-help .row .col-md-3 .d-flex {
    padding: 30px;
  }
  .venture-application-process .col-md-4.text-center h5 {
    font-size: 18px;
  }
  .venture-application-process .col-md-4.text-center span {
    font-size: 18px;
  }
  .north-india-institute.north-ind-institute-overview.nurturing-connections .institute-content ul {
    width: 100%;
  }
  .cgc-top-tier-placements h2 {
      margin-bottom: 12px;
      font-size: 26px;
  }
  .cgc-top-tier-placements ul li p.digits {
    font-size: 26px;
  }
  .cgc-top-tier-placements ul li p.digits span {
    font-size: 18px;
  }
  section.north-india-institute.north-ind-institute-overview.nurturing-connections {
    min-height: auto;
  }
  .int-international-colab .text-center {
    margin-bottom: 35px;
  }
  .placement-overview-placement {
    min-height: 600px;
    padding: 130px 0;
  }
  .about-dcpd figure {
    width: 1000px;
    margin: 0 auto;
  }
  .about-dcpd figure img {
    width: 100%;
  }
  .placements-overview.place-overview h4.heading.text-center {
    max-width: 700px;
    font-size: 20px;
  }
  .placementss .single p {
    font-size: 34px;
  }
  .hostel-facility-section .fee-placement p {
    font-size: 18px;
  }
  .hostel-facility-section .fee-placement p span {
    font-size: 20px;
  }
  .education-loan-quest.cgc-bus-transport .education-loan-quest-content {
    padding: 100px 120px 0 80px;
  }
  .cgc-buses-route .bus-route-slider .single-route .round {
    width: 180px;
    height: 180px;
  }
  .academic-events .event-slider .single-slide figure .overlay-layer,
  .building-bridges.mbl .d-flex figure .overlay-layer {
    padding: 20px;
  }
  .academic-events .event-slider .single-slide figure .overlay-layer p,
  .building-bridges.mbl .d-flex figure .overlay-layer p {
    font-size: 15px;
  }
  .academic-events .event-slider .single-slide figure .overlay-layer p span,
  .building-bridges.mbl .d-flex figure .overlay-layer p span {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .academic-events .event-slider .single-slide figure h5,
  .building-bridges.mbl .d-flex figure h5 {
    font-size: 18px;
  }
  .discipline-top-banner .d-flex.main .d-flex.column h2 {
    font-size: 70px;
  }
  .discipline-top-banner .d-flex.main .d-flex.text p {
    max-width: 280px;
    font-size: 15px;
  }
  .discipline-top-banner .d-flex.main .d-flex.text.text2 p {
    max-width: 230px;
  }
  .discipline-top-banner .d-flex.main .d-flex.text.text3 p {
    max-width: 240px;
  }
  .discipline-top-banner .h1 {
    font-size: 46px;
  }
  .discipline-top-banner h2 {
    font-size: 32px;
  }
  .discipline-top-banner {
    min-height: 840px;
    padding: 300px 0 0 0;
  }
  .discipline-top-banner .d-flex.main .hash {
    top: 28px;
    font-size: 42px;
  }
  .top-engineering-college {
    padding: 40px 0 320px 0;
  }
  .main-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .top-engineering-college h5,
  .top-engineering-college h1,
  .top-engineering-college .h1 {
    margin-bottom: 15px;
  }
  .top-engineering-college .engineering-top-content {
    padding-left: 71px;
  }
  .top-engineering-college .col-lg-7 {
    padding-right: 40px;
  }
  .top-engineering-college .engineering-text img {
    max-width: 700px;
  }
  .top-engineering-college .placement-bg {
    margin-top: 120px;
    padding: 30px;
  }
  .main-content h5 {
    font-size: 20px;
  }
  .top-engineering-college .border-box-text {
    padding: 15px;
  }
  .top-engineering-college {
    padding: 40px 0 260px 0;
  }
  .top-engineering-college div.placementss p {
    font-size: 26px;
  }
  .top-engineering-college div.placementss p cite {
    font-size: 18px;
  }
  .top-engineering-college div.placementss .single span {
    font-size: 15px;
  }
  .top-engineering-college div.placementss {
    max-width: 390px;
  }
  .top-engineering-college .placement-bg::after {
    right: -64px;
    top: -121px;
    width: 180px;
    height: 163px;
  }
  figure.placement-insight-figure img {
    width: 70px;
    height: 700px;
  }
  .top-engineering-college div.placementss .single.pd-left-20 {
    padding-left: 30px;
  }
  figure.placement-insight-figure img {
    width: 65px;
    height: 650px;
  }
  .breadcrumbs-search-bar .d-flex ul li a {
    font-size: 14px;
  }
  .breadcrumbs-search-bar .d-flex ul li {
    margin-right: 20px;
  }
  .breadcrumbs-search-bar .d-flex ul li.pe-none a {
    pointer-events: none;
    color: var(--text-color);
  }
  .breadcrumbs-search-bar .d-flex ul li:last-child {
    margin-right: 0;
  }
  .engineering-programs ul li a {
    padding: 15px 20px;
    font-size: 15px;
  }
  .engineering-programs ul.listing-left {
    max-width: 380px;
  }
  .engineering-programs .listing-box {
    padding: 30px;
  }
  .engineering-programs .listing-box h6 {
    margin-bottom: 10px;
  }
  .engineering-programs .listing-box ul.listing li {
    font-size: 15px;
  }
  .engineering-programs .listing-box ul.listing li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }
  .engineering-programs {
    padding-bottom: 0px;
  }
  section {
    padding: 60px 0;
  }
  .breadcrumbs-search-bar .d-flex ul {
    padding: 2px 15px;
    height: 42px;
    line-height: 2;
  }
  .abroad-study .explore-more-btn {
    padding-top: 45px;
  }
  .student-stories .student-box-outside .student-box {
    padding: 30px;
    min-height: 280px;
  }
  .apply-cgcuet {
    padding: 140px 0 70px 0;
  }
  .excellence-innovation .heading h5 {
    margin-bottom: 10px;
  }
  .excellence-innovation p.head {
    font-size: 20px;
    line-height: 1.4;
  }
  .main-content .btn {
    height: 44px;
    font-size: 15px;
  }
  .main-content .btn span img {
    width: 21px;
  }
  .student-stories {
    max-height: 630px;
  }
  .student-stories .student-boxes {
    padding-top: 140px;
  }
  .top-engineering-college .border-box-text p {
    font-size: 14px;
  }
  .searchbar form input[type="search"] {
    height: 42px;
  }
  .searchbar form span img {
    width: 20px;
  }
  .top-engineering-college .path-to-success p.line span {
    height: 3px;
  }
  .abroad-study .image-box p {
    font-size: 18px;
  }
  .engineering-programs .listing-box p.line {
    margin-bottom: 25px;
  }
  .engineering-programs ul li a {
    padding: 10px 20px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship figure img {
    max-width: 242px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: 460px;
    padding: 160px 20px 160px 80px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship h2 {
    font-size: 42px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship h3 {
    font-size: 22px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship figure {
    margin-bottom: 20px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li {
    padding: 12px 0px 12px 30px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul {
    min-width: 420px;
    width: 420px;
  }
  .compuet-science-engineering .heading {
    margin-bottom: 45px;
  }
  .empowering-education .heading {
    margin-bottom: 45px;
  }
  .abroad-study .heading {
    margin: 0 auto 45px auto;
  }
  .top-engineering-college.course-college {
    padding: 50px 0px;
  }
  .career-prospects .figure-content .career-bg-left-content,
  .career-prospects .figure-content .career-bg-right-content {
    min-height: 480px;
    padding: 44px 0px 0 0;
  }
  .quality-education .right-figure figure {
    min-height: 592px;
  }
  .quality-education.building-bridges {
    margin-bottom: 0px;
    padding: 60px 0 60px;
  }
  .sports-at-cgc h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .sports-at-cgc .top-content {
    margin-bottom: 20px;
  }
  .sports-at-cgc figure {
    width: 500px;
  }
  .sports-at-cgc {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .world-class-education h3 {
    font-size: 32px;
  }
  .building-bridges .right-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .building-bridges .right-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .building-bridges {
    padding-bottom: 0px;
  }
  .vibrant-clubs h3 {
    font-size: 32px;
  }
  .north-india-institute .institute-content h2 {
    font-size: 32px;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 570px;
    min-height: 270px;
  }
  .building-bridges .right-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .building-bridges .right-content h3 {
    font-size: 20px;
  }
  .building-bridges .right-content h4 {
    font-size: 27px;
  }
  .academic-events .event-slider .single-slide figure {
    min-height: 260px;
  }
  .quality-education .right-figure figure {
    min-height: 522px;
  }
  .quality-education .bg-white {
    padding: 16px;
  }
  .sports-at-cgc h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .sports-at-cgc ul li {
    margin-bottom: 6px;
    font-size: 15px;
  }
  .world-class-education h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .world-class-education .text-center {
    max-width: 1000px;
  }
  .world-class-education .youtube-video iframe {
    max-width: 940px;
    min-height: 360px;
  }
  .vibrant-clubs {
    padding: 40px 0 70px 0;
  }
  .vibrant-clubs h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .north-india-institute .institute-content {
    padding: 60px;
  }
  .north-india-institute .institute-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .north-india-institute .institute-content h2 {
    font-size: 28px;
  }
  .north-india-institute .placementss .single p {
    font-size: 28px;
  }
  .explore-our-campus h3 {
    font-size: 32px;
  }
  .vibrant-clubs .club-slider ul.slick-dots {
    bottom: -55px;
  }
  .cgc-admission-overview figure {
    width: 510px;
  }
  .college-rankings .slick-list .slick-slide img {
    width: 150px;
  }
  .college-rankings
    .content-slider
    .rs-detail-item__slider
    .rankingthumb-content__content
    small {
    font-size: 14px;
  }
  .college-rankings .rankingthumb-content,
  .college-rankings .rankingthumb-content-content {
    padding: 16px;
  }
  .college-rankings
    .content-slider
    .rs-detail-item__slider
    .rankingthumb-content__no {
    padding: 9px 0;
    font-size: 20px;
  }
  .college-rankings .rankingthumb-content,
  .college-rankings .rankingthumb-content-content {
    padding: 14px;
  }
  .college-rankings
    .content-slider
    .rs-detail-item__slider
    .rankingthumb-content__content {
    font-size: 15px;
  }
  .college-rankings .slider.slider-nav .slick-prev {
    left: -70px;
    top: 37px;
  }
  .college-rankings .slider.slider-nav .slick-next {
    right: -80px;
  }
  .top-tier-rankings .rank-box-left .left-box figure img {
    width: 170px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-right .left-box figure img {
    width: 250px;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p {
    font-size: 20px;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p
    span {
    font-size: 15px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-left,
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-right {
    padding: 22px;
  }
  .center-box figure img {
    width: 120px;
  }
  .top-tier-rankings .top-tier-rank-boxes .center-box p,
  .top-tier-rankings .top-tier-rank-boxes .right-box p {
    margin-bottom: 10px;
  }
  .building-bridges-to-brilliance {
    min-height: 720px;
  }
  .placements-overview .text-center {
    margin: 0 auto 40px auto;
  }
  .placements-overview .placement-slider .slick-track {
    padding: 50px 0 0 0;
  }
  .international-collaborations figure {
    min-height: 300px;
  }
  .nurturing-connections {
    min-height: 840px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .content-column {
    padding-right: 40px;
  }
  section.choose-cgc-mohali-jhanjeri.north-india-institute {
    padding: 120px 0px 80px 0;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure {
    width: 313px;
    height: 560px;
  }
  .mou-education-entities .mou-slide figure img {
    max-width: 240px;
  }
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 30px;
    display: flex;
  }
  .education-loan-quest .education-loan-quest-content {
    padding: 80px 60px 60px 80px;
  }
  .bihar-west-student-credit-card .pd-right {
    padding-right: 60px;
  }
  .bihar-west-student-credit-card .pd-left {
    padding-left: 60px;
  }
  .apply-for-education-loan .bg-red h3 {
    font-size: 30px;
  }
  .apply-for-education-loan .bg-red figure img {
    width: 175px;
  }
  .cgc-bus-route-chart table.dataTable tbody td {
    padding: 12px 20px;
  }
  .cgc-bus-route-chart table.dataTable thead th,
  table.dataTable thead td {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 1439.98px) {
  section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1 span{
    font-size: 42px;
  }
  section.admission-overview-banner.education-loan-banner.academic-fee-strcuture p {
    font-size: 26px;
}
  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page {
    padding: 240px 0px  0 0;
}
.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content .d-flex figure img {
    width: 150px;
}
  .gk-kala figure{
    height: auto;
  }
  .mou-education-entities .flex figure img {
        width: 270px;
    }
  .cgc-top-tier-placements ul li {
    margin: 0 10px 0 10px;
}
.cgc-top-tier-placements ul li p.digits {
        font-size: 22px;
    }
        .cgc-top-tier-placements ul li p {
        font-size: 14px;
    }
        .cgc-top-tier-placements ul li p.digits span {
        font-size: 16px;
    }
    .cgc-top-tier-placements .yt-link iframe {
        height: 420px;
    }
    .cgc-mohali-partners h2 {
    margin-bottom: 15px;
    font-size: 24px;
}
      .cgc-playing-field h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .cgc-playing-field .box{
      padding: 15px;
    }
    .cgc-playing-field .box h5 {
    font-size: 16px;
}
      .journey-of-excellence figure {
        width: 510px;
    }
    .journey-of-excellence figure figcaption {
        font-size: 18px;
        padding: 0 30px;
    }
    .journey-of-excellence .excellence-journey-slider .slick-dots li button {
    height: 8px;
    width: 8px;
}
.cgc-playing-field .box figure{
  width: 50px;
}
.cgc-playing-field .box figure img{
  width: 100%;
}
.journey-of-excellence .excellence-journey-slider .slick-dots {
    bottom: -40px;
}
.admission-overview-banner.placement-overview-page-banner .banner-content h2 {
        font-size: 42px;
    }
    .admission-overview-banner.placement-overview-page-banner .banner-content h2 span {
        font-size: 22px;
    }
    section.admission-overview-banner.placement-overview-page-banner.sports-page p, section.admission-overview-banner.placement-overview-page-banner.sports-page p span {
    font-size: 20px;
}
.college-sports .pd-left h1 {
    font-size: 28px;
}
.college-sports .pd-left {
        padding-left: 40px;
    }
    .college-sports .mb-custom.left figure {
        height: auto;
    }
    .college-sports .mb-custom figure {
        height: auto;
    }
    .college-sports .mb-custom figure img{
      height: auto;
    }
  .placements-overview .placement-slider .card-content{
    min-height: 240px;
    padding: 25px;
  }
    .placements-overview.place-overview.engineering-placement-section::before{
        height: 71%;
    }
    .cgc-campus-facilities-all .content.right-content h2{
    font-size: 26px;
    }
  .cgc-campus-rise .cgc-campus-rise-content h2 {
    font-size: 30px;
  }
  .cgc-campus-facilities-all .content.left-content {
    width: 50%;
  }
  .cgc-campus-facilities-all .content.right-content {
    width: 50%;
  }
  .engineering-placement-section .engineering-special .d-flex figure {
    width: 230px;
  }
  .engineering-placement-section .engineering-special {
    padding-top: 0;
  }
  .placement-companies-logo-slider .slick-track figure img {
    width: 150px;
  }
  .admission-overview-banner.placement-overview-page-banner .banner-content h2 {
    font-size: 50px;
  }
  .admission-overview-banner.placement-overview-page-banner .banner-content p {
    font-size: 90px;
  }
  .admission-overview-banner.placement-overview-page-banner
    .banner-content
    h2
    span {
    font-size: 30px;
  }
  .admission-overview-banner.placement-overview-page-banner
    .banner-content
    p
    span {
    font-size: 58px;
  }
  .admission-overview-banner.placement-overview-page-banner img {
    width: 150px;
  }
  .placement-overview-placement {
    min-height: 540px;
    padding: 70px 0;
  }
  .placements-overview h2 {
    font-size: 32px;
  }
  .cgc-campus-living figure h3 {
    font-size: 20px;
  }
  .cgc-campus-living figure .overlay-layer p span {
    font-size: 18px;
  }
  .campus-plcmnt .placementss .single p {
    font-size: 24px;
  }
  .campus-plcmnt .placementss .single p cite {
    font-size: 17px;
  }
  .campus-plcmnt .placementss .single span {
    font-size: 15px;
  }
  .hostel-facility-section .fee-placement p {
    font-size: 18px;
  }
  .hostel-facility-section .fee-placement p span {
    font-size: 18px;
  }
  .education-loan-quest.cgc-bus-transport.hostel-facility-base
    .education-loan-quest-content {
    padding: 40px 40px 40px 40px;
  }
  .campus-fee-details .fee-detail-content {
    width: 100%;
  }
  .education-loan-quest.cgc-bus-transport.hostel-facility-base
    .education-loan-quest-content {
    padding: 70px 60px 0 60px;
  }
  .building-bridges-to-brilliance .col-md-6:last-child .buttons a.student-data {
    margin-left: 0;
  }
  .building-bridges-to-brilliance
    .col-md-6:nth-of-type(2)
    .buttons
    a.apply_now_form {
    margin-right: 0;
  }
  .education-loan-quest.cgc-bus-transport .education-loan-quest-content {
    padding: 60px 80px 0 60px;
  }
  .education-loan-quest.cgc-bus-transport .education-loan-quest-content {
    padding: 20px 60px 0 60px;
  }
  .education-loan-quest.cgc-bus-transport h2 {
    font-size: 24px;
  }
  .bus-query ul li {
    font-size: 16px;
  }
  .cgc-bus-route-chart h2 {
    font-size: 28px;
  }
  .cgc-buses-route h2 {
    font-size: 28px;
  }
  .engineering-programs .listing-box {
    padding: 25px;
  }
  section {
    padding: 50px 0;
  }
  .engineering-programs ul li a {
    padding: 10px 12px;
    font-size: 14px;
  }
  .engineering-programs ul li a span {
    margin-right: 12px;
  }
  .engineering-programs ul.listing-left {
    max-width: 360px;
  }
  .engineering-programs .col-md-8 {
    padding-left: 20px;
  }
  .abroad-study .image-box {
    padding: 15px;
  }
  .abroad-study .heading {
    margin: 0 auto 40px auto;
  }
  .student-stories {
    max-height: 610px;
  }
  .student-stories .student-boxes {
    padding-top: 120px;
  }
  .apply-cgcuet {
    padding: 170px 0 50px 0;
  }
  figure.placement-insight-figure img {
    opacity: 0.6;
  }
  .why-choose-cgc-mohali .content-right .placementss .single p {
    font-size: 24px;
  }
  .why-choose-cgc-mohali .content-right .placementss .single p cite {
    font-size: 18px;
  }
  .why-choose-cgc-mohali .content-right .placementss .pd-btm-20 {
    padding-bottom: 15px;
  }
  .why-choose-cgc-mohali .content-right .placementss .pd-right-30 {
    padding-right: 15px;
  }
  .why-choose-cgc-mohali .content-right .placementss .single span {
    font-size: 16px;
  }
  .why-choose-cgc-mohali .content-right .placementss .pd-top-20 {
    padding-top: 15px;
  }
  .why-choose-cgc-mohali .content-right .placementss .pd-left-30 {
    padding-left: 15px;
  }
  .why-choose-cgc-mohali .content-left {
    padding-right: 30px;
  }
  .cgc-eligibility .content {
    padding: 15px 15px 0 15px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul {
    min-width: 335px;
    width: 335px;
  }
  .cgcuet-endless-posibility .cgcuet-phase {
    padding-left: 20px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li {
    padding: 10px 0px 10px 20px;
    font-size: 14px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: 400px;
    padding: 120px 20px 120px 80px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li p.heading {
    font-size: 18px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul li p.sub-heading {
    font-size: 14px;
  }
  .cgcuet-endless-posibility .heading {
    max-width: 690px;
  }
  .compuet-science-engineering .eng-box figure {
    margin-bottom: 10px;
  }
  .compuet-science-engineering .eng-box span {
    margin-bottom: 10px;
    height: 3px;
  }
  .empowering-education .empower-figure-left figure {
    height: 480px;
  }
  .empowering-education .empower-figure-right-first figure {
    height: 230px;
  }
  .empowering-education .empower-figure-right-second figure {
    height: 230px;
  }
  .top-engineering-college.course-college {
    padding: 30px 0;
  }
  .career-prospects .career-bg .bg-figure {
    transform: translate(-50%, -10%) scale(0.9);
  }
  .career-prospects .career-bg .all-figures {
    transform: translate(-50%, -10%) scale(0.9);
  }
  .career-prospects .figure-content .career-bg-left-content,
  .career-prospects .figure-content .career-bg-right-content {
    padding: 75px 0px 0 0;
  }
  .excellence-innovation figure {
    padding: 15px;
  }
  .engineering-programs .scholar-tabs .nav a {
    padding: 15px;
    font-size: 15px;
    transition: var(--transition);
  }
  .engineering-programs .scholar-tabs .nav a {
    padding: 12px 10px;
    font-size: 14px;
  }
  .engineering-programs .scholar-tabs ul a span:first-child img {
    width: 30px;
  }
  .engineering-programs.scholarship-tabs
    .listing-left
    ul
    a
    span:first-child::after {
    top: 0px;
    width: 1px;
    height: 35px;
  }
  .engineering-programs.scholarship-tabs .listing-box ul li {
    font-size: 15px;
  }
  .engineering-programs.scholarship-tabs .listing-box ul li::before {
    transform: translate(6px, 8px);
  }
  .engineering-programs.scholarship-tabs .table-scholarship tr td {
    padding: 8px 12px;
    font-size: 14px;
  }
  .engineering-programs.scholarship-tabs .s-data .data-heading {
    font-size: 15px;
    padding: 10px;
  }
  .engineering-programs.scholarship-tabs .listing-box h4 {
    font-size: 17px;
  }
  .engineering-programs.scholarship-tabs .listing-box h5 {
    font-size: 16px;
  }
  .engineering-programs.scholarship-tabs strong {
    font-weight: 600;
  }
  .table-scholarship tr th {
    font-size: 16px;
    padding: 12px 14px;
  }
  .explore-our-campus h1, .explore-our-campus h2 {
    font-size: 36px;
  }
  .explore-our-campus ul li figure {
    margin-bottom: 10px;
    width: 60px;
  }
  .explore-our-campus ul li span {
    font-size: 15px;
  }
  .explore-our-campus ul li p {
    font-size: 14px;
  }
  .explore-our-campus .center-fig figure {
    padding: 50px 0px 0 0px;
  }
  .explore-our-campus .center-fig {
    padding: 0 25px 0 25px;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 460px;
    min-height: 225px;
  }
  .building-bridges .right-content {
    padding: 0 0 0px 75px;
  }
  .building-bridges .right-content .top-headings::before {
    left: -30px;
    top: -10px;
  }
  .building-bridges .right-content .d-flex figure {
    width: 80px;
  }
  .campus-life-banner {
    min-height: 680px;
  }
  .building-bridges
    .right-content
    .d-flex
    .content
    .rating-stars
    span.fa.fa-star {
    font-size: 10px;
  }
  .building-bridges .right-content .d-flex .content .rating-stars {
    margin-bottom: 5px;
  }
  .building-bridges .right-content .d-flex .content h6 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .academic-events .event-slider .single-slide figure {
    min-height: 240px;
  }
  .quality-education.building-bridges .right-content {
    padding-right: 75px;
  }
  .quality-education.building-bridges .top-heading::before {
    right: -35px;
    top: -10px;
  }
  .sports-at-cgc figure {
    width: 460px;
  }
  .world-class-education .youtube-video iframe {
    max-width: 840px;
    min-height: 320px;
  }
  .vibrant-clubs figure figcaption {
    font-size: 18px;
  }
  .building-bridges {
    padding-bottom: 20px;
  }
  .admission-overview-banner {
    min-height: 726px;
    padding: 280px 0 0 0;
  }
  .cgc-admission-overview figure {
    width: 450px;
  }
  .college-rankings .slider.slider-nav .slick-prev {
    left: -50px;
  }
  .college-rankings .slider.slider-nav .slick-next {
    right: -55px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-right .left-box figure img {
    width: 180px;
  }
  .top-tier-rankings .rank-box-left .left-box figure img {
    width: 120px;
  }
  .top-tier-rankings .top-tier-rank-boxes .center-box {
    padding-left: 25px;
    padding-right: 25px;
  }
  .top-tier-rankings .top-tier-rank-boxes .right-box {
    padding-left: 30px;
  }
  .top-tier-rankings .center-box figure img {
    width: 100px;
  }
  .top-tier-rankings .top-tier-rank-boxes .left-box {
    padding-right: 20px;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p {
    font-size: 18px;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p
    span {
    font-size: 14px;
  }
  .top-tier-rankings .rank-box-right .right-box .d-flex figure img {
    width: 40px;
  }
  .building-bridges-to-brilliance .bridge-box {
    padding: 20px;
  }
  .building-bridges-to-brilliance .bridge-box p {
    font-size: 15px;
  }
  .building-bridges-to-brilliance .bridge-box figure {
    margin-bottom: 15px;
  }
  .building-bridges-to-brilliance .bridge-box h6 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 17px;
  }
  .admission-overview-banner-content h1 {
    font-size: 42px;
  }
  .admission-overview-banner-content h1 span {
    font-size: 28px;
    font-weight: 400;
  }
  .building-bridges-to-brilliance .buttons {
    flex-direction: column;
  }
  .building-bridges-to-brilliance .buttons a.btn:first-child {
    margin-bottom: 12px;
  }
  .placements-overview .placement-slider .slick-slide img {
    width: 120px;
  }
  .placements-overview .placement-slider .card-content figure.card-pic img {
    width: 200px;
  }
  .placements-overview .text-center {
    margin: 0 auto 0px auto;
  }
  .placements-overview .placement-slider .slick-track {
    padding: 0px 0 0 0;
  }
  .placements-overview .placement-slider .slick-prev:before {
    left: -40px;
  }
  .international-exposure-programs .text-center {
    margin-bottom: 40px;
  }
  .building-bridges-to-brilliance h2 {
    font-size: 34px;
  }
  .mou-education-entities .mou-slide figure img {
    max-width: 220px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure {
    width: 260px;
    height: 450px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .content-column {
    padding-right: 20px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute h2 {
    font-size: 34px;
  }
  section.choose-cgc-mohali-jhanjeri.north-india-institute {
    padding: 70px 0px 70px 0;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2
    span {
    font-size: 36px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p,
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p
    span {
    font-size: 25px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1199.98px) {
  h2.white{
    font-size: 22px;
  }
  .venture-application-process .text-center {
    margin-bottom: 40px;
}
      .venture-application-process .col-md-4.text-center span {
        font-size: 16px;
    }
  .venture-application-process .text-center p{
    max-width: 990px;
    margin: 0 auto;
  }
  .venture-application-process .col-md-4.text-center {
    padding: 70px 30px 20px 30px;
}
  .venture-association-partnership .column-left .mb-5, .venture-association-partnership .column-right .mb-5{
    margin-bottom: 20px !important;
  }
  .showcase-your-innovations .row .sm-height h2{
    margin-bottom: 0;
  }
  .venture-why-we-help .row .col-md-3 .d-flex {
    padding: 30px 15px;
}
    .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page {
    padding: 200px 0px 80px 0;
}
    .main-content h5 {
        font-size: 18px;
    }
  .mou-education-entities .mou-global-institute-slider .slick-list figure img{
    width: 120px;
  }
  .mou-education-entities .flex figure{
    width: 33.333%;
  }
      .college-sports .pd-left {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    .journey-of-excellence .text-center h2 {
        font-size: 28px;
    }
    .journey-of-excellence figure {
    width: 450px;
}
    .placements-overview .placement-slider .card-content figure.card-pic img {
    width: 190px;
  }
      .placements-overview .placement-slider .card-content {
        padding: 20px;
    }
  .cgc-academic-aesthetics {
    position: relative;
  }
  .cgc-academic-aesthetics::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #a13052;
    height: 50%;
    z-index: -1;
  }
  .cgc-campus-rise .cgc-campus-rise-content h2 {
    font-size: 26px !important;
  }
  section.admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner {
    padding: 200px 0 0 0;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2 {
    font-size: 36px;
  }
  .cgc-campus-facilities-all {
    padding: 100px 0;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    h2
    span {
    font-size: 26px;
  }
  .cgc-campus-rise.cgc-campus-rise-content h2 {
    font-size: 26px;
    top: -130px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p,
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner
    p
    span {
    font-size: 20px;
  }
  .cgc-campus-rise .cgc-campus-rise-content {
    padding: 0px 0px 0px 0px;
    margin-left: 35%;
  }
  .cgc-campus-rise .d-flex.align-items-center.main-container {
    margin: 0 40px 0 0px;
  }
  .cgc-campus-rise {
    position: relative;
    padding: 140px 0 80px 0;
  }
  .cgc-campus-rise .cgc-campus-rise-content h2 {
    font-size: 30px;
    top: -130px;
  }
  .engineering-placement-section .engineering-special .d-flex figure {
    width: 220px;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex
    figure
    figcaption {
    font-size: 15px;
  }
  .executive-director-dcpd .director-info {
    padding: 0 40px 0 40px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.sm-internal-banner
    h2 {
    font-size: 40px;
  }
  .about-dcpd figure {
    width: 800px;
  }
  .professional-triumphs .logos img {
    width: 150px;
  }
  .professional-triumphs .graph_calc.pt_custom {
    padding-top: 35px;
  }
  .professional-triumphs .top-companies.text-center {
    padding-top: 40px;
  }
  .placements-overview.place-overview .highest-package ul li h3 {
    font-size: 22px;
    margin-bottom: 9px;
  }
  .placements-overview.place-overview .highest-package p.font-24 {
    font-size: 20px;
  }
  .education-loan-quest.cgc-bus-transport.hostel-facility-base
    .education-loan-quest-content {
    padding: 40px;
  }
  .education-loan-quest.cgc-bus-transport.hostel-facility-base
    .education-loan-quest-content {
    padding: 30px;
  }
  .cgc-campus-living h2 {
    font-size: 36px;
  }
  .bus-query h4 {
    font-size: 20px;
  }
  .bus-query ul li {
    padding: 12px;
    font-size: 15px;
  }
  .cgc-bus-route-chart table.dataTable tbody td {
    padding: 10px 18px;
    font-size: 14px;
  }
  .education-loan-quest.cgc-bus-transport .education-loan-quest-content {
    padding: 40px 40px 50px 40px;
  }
  .discipline-top-banner {
    min-height: 630px;
    padding: 180px 0 0 0;
  }
  .top-engineering-college .border-box-text {
    padding: 12px;
  }
  .top-engineering-college .engineering-text img {
    max-width: 480px;
  }
  .top-engineering-college .engineering-top-content {
    padding-left: 62px;
  }
  figure.placement-insight-figure img {
    opacity: 0.5;
  }
  .engineering-programs ul li a {
    padding: 8px 10px;
    font-size: 14px;
  }
  .main-content .main-container {
    padding: 0 40px;
  }
  .excellence-innovation figure.left-figure {
    min-height: 650px;
  }
  .excellence-innovation figure.right-first-figure,
  .excellence-innovation figure.right-second-figure {
    min-height: 340px;
    height: 340px;
  }
  .excellence-innovation figure {
    padding: 18px;
  }
  .excellence-innovation figure.right-third-figure {
    min-height: 290px;
  }
  .main-content .container-fluid {
    padding: 0 40px;
  }
  .excellence-innovation p.head {
    font-size: 19px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: 320px;
    padding: 80px 20px 80px 40px;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul {
    min-width: 295px;
    width: 295px;
  }
  .career-prospects .career-bg .bg-figure {
    transform: translate(-50%, -10%) scale(0.8);
  }
  .career-prospects .career-bg .all-figures {
    transform: translate(-50%, -10%) scale(0.8);
  }
  .career-prospects .figure-content p {
    padding: 11px 10px;
    font-size: 14px;
    margin-bottom: 50px;
  }
  .cgc-eligibility .pd-left-50 {
    padding-left: 20px;
  }
  .career-prospects .figure-content .career-bg-left-content,
  .career-prospects .figure-content .career-bg-right-content {
    padding: 75px 0px 20px 0;
  }
  .compuet-science-engineering .eng-box {
    padding: 30px;
  }
  .compuet-science-engineering .eng-box h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .empowering-education figure figcaption {
    padding: 30px;
  }
  .top-engineering-college {
    padding: 30px 0 20px 0;
  }
  .campus-life-banner {
    min-height: 560px;
    padding: 180px 0 0 0;
  }
  .explore-our-campus .center-fig {
    padding: 0 15px 0 15px;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 410px;
    min-height: 200px;
  }
  .building-bridges .right-content {
    padding: 0 0 0px 50px;
  }
  .building-bridges .right-content .top-headings::before {
    left: -22px;
  }
  .building-bridges .right-content p {
    margin-bottom: 20px;
  }
  .quality-education.building-bridges .right-content {
    padding-right: 50px;
  }
  .quality-education.building-bridges .top-heading::before {
    right: -25px;
  }
  .sports-at-cgc figure {
    width: 420px;
  }
  .world-class-education .text-center {
    margin: 0 auto 30px auto;
    max-width: 900px;
  }
  .vibrant-clubs .text-center {
    max-width: 900px;
    margin: 0 auto 30px auto;
  }
  .north-india-institute .institute-content {
    padding: 30px;
  }
  .admission-overview-banner {
    min-height: 646px;
    padding: 260px 0 0 0;
  }
  .college-rankings .slider.slider-nav .slick-prev {
    left: -30px;
  }
  .college-rankings .slider.slider-nav .slick-next {
    right: -30px;
  }
  .college-rankings .slider.slider-nav .slick-list {
    margin-right: 20px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-right .left-box figure img {
    width: 170px;
  }
  .top-tier-rankings .rank-box-left .left-box figure img {
    width: 100px;
  }
  .placements-overview .placement-slider .slick-next:before {
    content: "";
    right: 0px;
  }
  .placements-overview .placement-slider .slick-prev:before {
    left: -5px;
  }
  .international-collaborations h2 {
    font-size: 32px;
  }
  .nurturing-connections ul li .content span {
    font-size: 32px;
  }
  .nurturing-connections .pd-left ul li figure img {
    width: 60px;
  }
  .placements-overview .international-exposure-programs h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .placements-overview .international-exposure-programs h6 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .placements-overview .international-exposure-programs p {
    font-size: 15px;
  }
  .nurturing-connections h2 {
    font-size: 36px;
  }
  .nurturing-connections ul li .content {
    padding-left: 15px;
  }
  .nurturing-connections .absolute-figure img {
    width: 750px;
  }
  .nurturing-connections ul li:first-child {
    padding-right: 20px;
  }
  .nurturing-connections ul li:nth-of-type(2) {
    padding-left: 20px;
  }
  .nurturing-connections ul li:nth-of-type(3) {
    padding-right: 20px;
  }
  .nurturing-connections ul li:last-child {
    padding-left: 20px;
  }
  .international-collaborations figure {
    min-height: 230px;
  }
  .international-collaborations
    .international-collaboration-slider
    .single-slide
    h5 {
    font-size: 18px;
  }
  .nurturing-connections ul li .content p {
    font-size: 14px;
  }
  .nurturing-connections .pd-left {
    padding: 0px 40px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute h2 {
    font-size: 26px;
  }
  .choose-cgc-mohali-jhanjeri .placementss .single figure img {
    width: 60px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .placementss .single p {
    line-height: 1.4;
    font-size: 15px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute
    .placementss
    .single
    p
    span {
    font-size: 15px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure {
    width: 240px;
    height: 380px;
  }
  .mou-education-entities .mou-slide figure img {
    max-width: 185px;
  }
  .mou-education-entities .text-center h2 {
    font-size: 32px;
  }
  .building-bridges-to-brilliance .bridge-box {
    height: 100%;
    max-height: 270px;
  }
  .building-bridges-to-brilliance .row {
    align-items: stretch;
  }
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 40px;
  }
  .apply-for-education-loan .bg-red figure:first-child {
    margin-right: 20px;
  }
  .education-loan-quest .education-loan-quest-content .grayquest-box h3 {
    font-size: 24px;
  }
  .bihar-west-student-credit-card h2 {
    font-size: 28px;
  }
  .apply-for-education-loan .bg-red .d-flex {
    flex-direction: column;
  }
  .apply-for-education-loan .bg-red figure:first-child {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .education-loan-quest .education-loan-quest-content {
    padding: 60px 40px 60px 40px;
  }
  .apply-for-education-loan .bg-red figure img {
    width: 220px;
  }
  .apply-for-education-loan .bg-white .apply-box {
    padding: 13px 0;
  }
  .apply-for-education-loan .bg-white .apply-box .single p {
    font-size: 14px;
  }
  .apply-for-education-loan .bg-white .apply-box .single::before {
    right: -20px;
  }
}
@media screen and (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
}
@media screen and (max-width: 991.98px) {
  .cgc-top-tier-placements .yt-link button img{
  width: 100%;
}
  .showcase-your-innovations .col-lg-5 {
    padding: 20px 40px;
}
  .venture-application-process .col-md-4.text-center span{
    left: 15px;
    top: 25px;
  }
  .venture-application-process .col-md-4.text-center {
    padding: 60px 20px 20px 20px;
}
      .venture-association-partnership .column-left, .venture-association-partnership .column-right {
        padding: 25px;
    }
      .venture-why-we-help .row .col-md-3 figure img {
        width: 70px;
    }
  .venture-key-highlights .col-lg-4.col-md-12{
    margin-top: 25px;
  }
  .mou-education-entities .text-center h2 {
        font-size: 22px;
    }
      .mou-education-entities .flex figure img {
        width: 200px;
    }
  .cgc-mohali-partners .all-figures img{
    width: 100px;
  }
  .college-sports .pd-left h1{
    color: var(--mehroon);
  }
  .journey-of-excellence figure {
    width: 100%;
}
  .cgc-playing-field .box:nth-of-type(odd) {
    margin-right: 8px;
}
.cgc-playing-field .box h5{
  padding-left: 15px;
}
.college-sports .pd-left p {
    color: var(--black);
}
    .pioneering-features .col-lg-3 figure img.d-mb-none {
    display: none;
}
.pioneering-features .mb-content {
    width: 100%;
}
    .pioneering-features .mb-content h5, .pioneering-features .mb-content p.text-center{
        text-align: left !important;
    }
    .pioneering-features .col-lg-3.col-md-12{
        display: flex;
        align-items: flex-start;
    }
    .pioneering-features .mb-content.mb-left{
        padding-left: 25px;
    }
    .pioneering-features .mb-content h5{
        margin-bottom: 12px;
    }
    .pioneering-features .mb-content.mb-right{
        padding-right: 25px;
    }
    .pioneering-features figure img.d-none.d-mb-block{
        display: block !important;
    }
    .cgc-campus-facilities-all::before{
        opacity: 0.7;
    }
    .cgc-academic-aesthetics .col-lg-6{
        margin-top: 0;
    }
    .cgc-academic-aesthetics h2 span{
        display: inline !important;
    }
    .cgc-academic-aesthetics .col-lg-4{
        margin-bottom: 20px;
    }
  .cgc-campus-rise .d-flex figure {
    width: 100%;
    position: relative;
  }
  .cgc-campus-rise .d-flex.align-items-center.main-container {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    border-radius: 0;
  }
    .cgc-campus-facilities-all {
        padding: 40px 0;
    }
    .cgc-campus-facilities-all .content.right-content {
    width: 65%;
    }
    .cgc-campus-facilities-all .content.left-content{
        width: 65%;
    }
  .cgc-campus-rise .cgc-campus-rise-content p {
    color: var(--text-color);
  }
  .cgc-campus-rise .cgc-campus-rise-content h2 {
    top: 0;
    position: relative;
  }
  .cgc-campus-rise .cgc-campus-rise-content {
    margin-left: 0;
    padding: 30px 40px;
  }
  .engineering-special .pd-right {
    margin-bottom: 10px;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex.justify-content-end {
    justify-content: flex-start !important;
    flex-wrap: wrap;
  }
  .engineering-placement-section .engineering-special .d-flex figure {
    width: auto;
    height: auto;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex.flex-direction-column {
    flex-wrap: wrap;
    width: calc(100% / 2);
  }
  .d-flex.flex-direction-column.fl-left {
    padding-right: 10px;
  }
  .d-flex.flex-direction-column.fl-right {
    padding-left: 10px;
  }
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.sm-internal-banner
    p {
    font-size: 60px;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex.justify-content-end {
    gap: 0;
  }
  .executive-director-dcpd .d-flex {
    flex-direction: column;
  }
  .executive-director-dcpd .director-info {
    width: 100%;
    padding: 40px;
  }
  .professional-triumphs .logos img {
    width: 110px;
  }
  .executive-director-dcpd .director-image {
    width: 100%;
  }
  .executive-director-dcpd .director-image figure {
    width: 100%;
  }
  .executive-director-dcpd .director-image figure img {
    width: 100%;
  }
  .about-dcpd figure {
    width: auto;
  }
  .admission-overview-banner-content h1 {
    font-size: 44px;
  }
  .cgc-campus-living.fg-top-0 figure {
    margin-top: 0;
  }
  .cgc-campus-living figure {
    order: 2;
    margin-top: 30px;
  }
  .placements-overview .placement-slider.slick-initialized.slick-slider {
    margin-bottom: 0px;
  }
  .placements-overview .placement-companies-logo-slider .slick-slide {
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  .cgc-admission-overview .text-right {
    justify-content: flex-start;
  }
  .placement-companies-logo-slider.slick-initialized.slick-slider {
    padding-top: 20px;
  }
  .placements-overview .placement-slider .slick-center {
    transform: scale(0.9);
  }
  .top-engineering-college .engineering-text img {
    max-width: 500px;
  }
  .top-engineering-college .engineering-bottom-left-content {
    margin-bottom: 30px;
  }
  .top-engineering-college .engineering-top-content {
    padding-left: 0;
    border-left: 0;
  }
  .top-engineering-college .director-message p::before {
    left: -27px;
    width: 20px;
    height: 22px;
  }
  .top-engineering-college .placement-bg {
    margin-top: 30px;
  }
  .engineering-programs ul.listing-left {
    max-width: initial;
    margin-bottom: 30px;
  }
  .abroad-study .col-md-6 {
    margin-bottom: 25px;
  }
  .abroad-study .explore-more-btn {
    padding-top: 25px;
  }
  .apply-cgcuet .heading {
    margin-bottom: 10px;
    /* margin-top: 90px; */
  }
  .apply-cgcuet .apply-now-btn {
    text-align: center;
  }
  .excellence-innovation figure.left-figure {
    min-height: auto;
  }
  .excellence-innovation .col-lg-4.col-md-12 {
    margin-bottom: 20px;
  }
  .excellence-innovation .col-lg-5.col-md-12 {
    margin-bottom: 20px;
  }
  .excellence-innovation figure.right-first-figure,
  .excellence-innovation figure.right-second-figure {
    min-height: auto;
    height: auto;
  }
  .excellence-innovation figure.right-third-figure {
    min-height: auto;
  }
  .excellence-innovation figure {
    padding: 30px;
  }
  .engineering-programs .dsktp-none {
    display: block;
  }
  .dsktp-none.dropdown-menu {
    display: block;
    width: 100%;
  }
  .dsktp-none ul.menu-list {
    display: block;
    height: 100%;
    position: relative;
  }
  .dsktp-none button.dropdown-btn {
    margin-bottom: 20px;
  }
  ul.listing-left {
    display: none;
  }
  button.dropdown-btn.btn.mehroon-btn span.test,
  button.dropdown-btn.btn.mehroon-btn span.figure {
    transition: none;
  }
  button.dropdown-btn.btn.mehroon-btn {
    margin-bottom: 20px;
    padding: 18px 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 0px #00000029;
    font-size: 18px;
    color: var(--text-color);
    display: block;
    background: #fff !important;
    border: 1px solid #11111166;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: none;
  }
  button.dropdown-btn.btn.mehroon-btn::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 16px;
    transition: none;
  }
  button.dropdown-btn.btn.mehroon-btn.arrow-direction path {
    fill: #fff;
  }
  button.dropdown-btn.btn.mehroon-btn.arrow-direction {
    background: var(--mehroon) !important;
    color: var(--white);
  }
  button.dropdown-btn.btn.mehroon-btn.arrow-direction span {
    color: var(--white);
  }
  button.dropdown-btn.btn.mehroon-btn.arrow-direction span img {
    filter: invert(1);
  }
  .engineering-programs .dropdown-menu ul.menu-list {
    margin-bottom: 15px;
  }
  button.dropdown-btn.btn.mehroon-btn.arrow-direction::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    transform: rotate(180deg);
    right: 20px;
    top: 8px;
  }
  button.dropdown-btn.btn.mehroon-btn span.icon {
    width: 100%;
  }
  button.dropdown-btn.btn.mehroon-btn {
    padding: 0 0 0 0;
    font-size: 14px;
    font-weight: 400;
  }
  button.dropdown-btn.btn.mehroon-btn span.figure {
    padding-right: 15px;
    left: 0;
    padding-right: 6px !important;
  }
  button.dropdown-btn.btn.mehroon-btn span.figure img {
    width: 31px;
  }
  .top-engineering-college.course-college .col-lg-7 {
    margin-bottom: 25px;
  }
  .why-choose-cgc-mohali .content-right {
    padding-left: 12px;
    margin-top: 20px;
  }
  .why-choose-cgc-mohali .content-right h5 {
    margin-bottom: 25px;
  }
  .main-content .align-items-center {
    flex-direction: column;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    max-width: initial;
    padding: 40px;
  }
  .cgcuet-endless-posibility .heading {
    max-width: initial;
    margin-bottom: 30px;
  }
  .cgcuet-endless-posibility .cgcuet-phase .d-flex {
    flex-direction: column;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul {
    max-width: initial;
    width: 100%;
  }
  .cgcuet-endless-posibility .cgcuet-phase ul:last-child {
    margin-left: 0;
    margin-top: 20px;
  }
  .cgcuet-endless-posibility .cgcuet-phase {
    padding: 30px 40px;
  }
  .cgc-eligibility .download-brochure {
    margin-bottom: 20px;
  }
  .cgc-eligibility .pd-left-50 {
    padding-left: 10px;
  }
  .why-choose-cgc-mohali .content-left {
    padding-right: 0;
  }
  .why-choose-cgc-mohali .content-left::after {
    display: none;
  }
  .career-prospects .figure-content,
  .career-prospects .career-bg {
    display: none;
  }
  .compuet-science-engineering .mb-20-mbl {
    margin-bottom: 20px;
  }
  .empowering-education .empower-figure-left figure {
    margin-bottom: 20px;
  }
  .mobile-prospect-figure img {
    width: 100%;
  }
  .career-prospects {
    background-image: none !important;
    padding-bottom: 0;
    min-height: auto;
  }
  section.career-prospects .main-container {
    padding: 0;
  }
  .career-prospects .heading {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .career-prospects .mobile-prospect-figure {
    display: block;
  }
  .engineering-programs .d-none {
    display: none !important;
  }
  .engineering-programs .d-md-none {
    display: block !important;
  }
  .engineering-programs .fade:not(.show) {
    display: block;
    opacity: 1;
  }
  .engineering-programs .accordion-item {
    margin: 0 0 20px 0;
  }
  .engineering-programs .collapse:not(.show) {
    display: none;
  }
  .tab-content .accordion-collapse h5 {
    margin-top: 10px;
  }
  .engineering-programs.scholarship-tabs .accordion-collapse h5 {
    margin-top: 10px;
  }
  .engineering-programs.scholarship-tabs .fade:not(.show) {
    background-color: var(--white);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .engineering-programs.scholarship-tabs::before {
    height: 100%;
  }
  .engineering-programs.scholarship-tabs .accordion-item {
    background-color: var(--white);
  }
  .engineering-programs.scholarship-tabs .accordion-body {
    padding: 0 10px 0 0;
  }
  .engineering-programs.scholarship-tabs .accordion-collapse {
    padding: 0 20px;
  }
  section.discipline-top-banner.scholarship {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .table-scholarship tr th {
    font-size: 15px;
    padding: 10px 12px;
  }
  .engineering-programs.scholarship-tabs .terms-and-conditions {
    padding: 20px;
  }
  .north-india-institute .d-flex {
    flex-direction: column;
  }
  .north-india-institute .d-flex figure,
  .north-india-institute .d-flex .institute-content {
    width: 100%;
  }
  .quality-education .right-content {
    text-align: left;
  }
  .quality-education.building-bridges .top-heading::before {
    left: -15px;
  }
  .quality-education .right-content .d-flex {
    justify-content: start;
  }
  .quality-education.building-bridges .right-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .building-bridges.mbl,
  .explore-our-campus,
  .campus-life-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .explore-our-campus {
    background-image: url("/public/course/assets/images/support/explore-our-campus-mob.webp") !important;
  }
  .explore-our-campus ul li figure img {
    width: 100%;
    filter: invert(1);
  }
  .explore-our-campus ul li span {
    box-shadow: 0px 0px 2px #acacac;
    color: var(--text-color);
  }
  .explore-our-campus ul li p {
    font-size: 14px;
    color: var(--text-color);
  }
  .explore-our-campus h1, .explore-our-campus h2 {
    -webkit-text-stroke: 1px #000000;
  }
  .explore-our-campus ul li {
    border: 1px dashed #000000;
  }
  .explore-our-campus ul li:nth-of-type(2) {
    border-bottom: 1px dashed #000000;
  }
  .explore-our-campus ul li:nth-of-type(3) {
    border-right: 1px dashed #000000;
  }
  .explore-our-campus .center-fig figure {
    width: 420px;
    padding-top: 30px;
  }
  .explore-our-campus .center-fig {
    margin-bottom: 20px;
  }
  .building-bridges.mbl {
    background-image: none !important;
    background-color: var(--white);
  }
  .building-bridges .right-content {
    padding: 0 15px 0 15px;
    color: var(--text-color);
  }
  .building-bridges .right-content .top-headings::before {
    display: none;
  }
  .building-bridges .left-figures .d-flex figure {
    width: 100%;
    min-height: auto;
  }
  .building-bridges .right-content .d-flex .content h6 {
    color: var(--text-color);
  }
  .building-bridges .right-content .top-headings::before {
    left: -15px;
    filter: invert(1);
  }
  .quality-education.building-bridges .right-content {
    padding: 0 15px 0 15px;
    color: var(--white);
  }
  .quality-education.building-bridges .right-content .d-flex .content h6 {
    color: var(--white);
  }
  .quality-education.building-bridges {
    padding: 30px 0 40px;
  }
  .sports-at-cgc .order-mbl {
    order: 2;
  }
  .quality-education .right-figure figure {
    min-height: 460px;
  }
  .world-class-education {
    padding: 20px 0 70px 0;
  }
  .building-bridges.mbl {
    margin-bottom: 0;
  }
  .sports-at-cgc figure {
    width: auto;
  }
  .campus-life-banner {
    background-image: url("/public/course/assets/images/support/campus_life_banner_mob.webp") !important;
  }
  .quality-education.building-bridges .top-heading::before {
    display: none;
  }
  .campus-life-banner-content h1 {
    font-size: 32px;
  }
  a.btn.white-btn.clr-mbl {
    background: var(--mehroon-gradient);
    color: var(--white);
  }
  .building-bridges.mbl .right-content span img {
    filter: invert(1);
  }
  .building-bridges-to-brilliance .col-lg-3.col-md-6 {
    margin-bottom: 70px;
  }
  .top-tier-rankings .top-tier-rank-boxes {
    flex-direction: column;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-left,
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-right {
    flex-direction: column;
    width: 100%;
    align-items: baseline;
    margin-bottom: 30px;
    padding: 30px;
  }
  .top-tier-rankings .top-tier-rank-boxes .center-box::before,
  .top-tier-rankings .top-tier-rank-boxes .right-box::before {
    display: none;
  }
  .top-tier-rankings .top-tier-rank-boxes .left-box {
    margin-bottom: 25px;
  }
  .top-tier-rankings .top-tier-rank-boxes .center-box {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 25px;
  }
  .top-tier-rankings .top-tier-rank-boxes .right-box {
    padding-left: 0;
  }
  .top-tier-rankings .rank-box-left .left-box figure img {
    width: 200px;
  }
  .top-tier-rankings .center-box figure img {
    width: auto;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-left .right-box figure img {
    width: auto;
  }
  .top-tier-rankings .top-tier-rank-boxes .center-box p,
  .top-tier-rankings .top-tier-rank-boxes .right-box p {
    font-size: 15px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-right {
    margin-left: 0;
  }
  .top-tier-rankings .rank-box-right .right-box .d-flex figure img {
    width: auto;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box-right .left-box figure img {
    width: 260px;
  }
  .top-tier-rankings .top-tier-rank-boxes .rank-box.rank-box-left {
    margin-right: 0;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p {
    font-size: 22px;
  }
  .top-tier-rankings
    .top-tier-rank-boxes
    .rank-box.rank-box-right
    .right-box
    .d-flex
    p
    span {
    font-size: 17px;
  }
  .international-exposure-programs .text-right {
    text-align: center;
  }
  .international-exposure-programs .text-left {
    text-align: center;
  }
  .international-exposure-programs .col-lg-5.text-left {
    display: flex;
    flex-direction: column;
  }
  .international-exposure-programs .col-lg-5.text-left figure:first-child {
    order: 2;
  }
  .international-exposure-programs .col-lg-2.text-center {
    display: none;
  }
  .nurturing-connections {
    background: rgb(160 5 52);
    background-image: none !important;
    min-height: 960px;
  }
  .nurturing-connections .col-lg-6.col-md-12 h2,
  .nurturing-connections .col-lg-6.col-md-12 p {
    color: var(--white);
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure:first-child {
    margin-top: 100px;
    padding-right: 0;
    width: auto;
    height: auto;
    margin-bottom: 30px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex figure:last-child {
    padding-left: 0;
    width: auto;
    height: auto;
    margin-left: 12px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute h2 span.d-block {
    display: inline !important;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute p {
    padding-right: 0;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex {
    flex-direction: row;
    margin-top: -10px;
  }
  .cgc-campus-rise {
        padding: 0px 0;
    }
}

@media screen and (max-width: 767.98px) {
  ul,
  ol {
    padding-left: 20px;
  }
  div#patent_data_length, div#patent_data_filter, div#patent_data_info, div#patent_data_paginate{
    width: 100%;
  }
  .venture-application-process .col-md-4.text-center figure {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.venture-application-process .col-md-4.text-center{
  border-radius: 0;
   margin: 0 10px 70px 10px;
}
  .venture-why-we-help .text-center {
    margin-bottom: 20px;
}
  .venture-why-we-help .slick-dots{
    bottom: -15px;
  }
  .venture-application-process .slick-dots{
    bottom: 15px;
  }
  .venture-why-we-help .slick-dots li.slick-active button, .venture-application-process .slick-dots .slick-active button{
    background-color: var(--mehroon);
  }
  .venture-why-we-help .slick-dots li button, .venture-application-process .slick-dots li button{
    background-color: #606060;
    width: 10px;
    height: 10px;
    border-radius: 100%;
  }
  .showcase-your-innovations .row:nth-of-type(2) .col-lg-7.col-md-6.sm-height{
    order: 2;
  }
  .showcase-your-innovations .col-lg-5 {
    padding: 20px;
}
.venture-association-partnership .column-left, .venture-association-partnership .column-right {
    padding: 20px;
}
.venture-why-we-help .row .col-md-3 figure {
    margin: 0 auto 15px auto;
}
  .showcase-your-innovations .col-lg-7.col-md-6.sm-height {
    padding: 0;
}
  .showcase-your-innovations .row .sm-height {
    display: block;
    flex: auto;
}
  .venture-why-we-help .row .col-md-3{
    border-right: none;
    padding: 0 20px;
  }
  .venture-key-highlights .col-lg-4.col-md-12 {
    margin-top: 0px;
}
  .venture-key-highlights figure{
    margin-bottom: 20px;
  }
  .mou-education-entities  button.slick-next::before {
    left: -20px;
}
  .mou-education-entities button.slick-prev::before {
    left: 5px;
}
  .mou-education-entities .flex figure img {
        width: 160px;
    }
  .international-exposure-programs .d-flex .flex:nth-of-type(2) .left-bar{
    order: 2;
  }
   .international-exposure-programs .d-flex .flex:nth-of-type(4) .left-bar{
    order: 2;
  }
  .international-exposure-programs .d-flex .right-bar figure img, .international-exposure-programs .d-flex .left-bar figure img{
    width: 100%;
  }
  .international-exposure-programs .d-flex .flex .center-bar::before, .international-exposure-programs .d-flex .flex .center-bar img{
    display: none;
  }
      .international-exposure-programs h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
        .international-exposure-programs .d-flex .flex .left-bar h5 {
        font-size: 18px;
    }
    .international-exposure-programs .d-flex .flex{
      flex-direction: column;
    }
    .international-exposure-programs .d-flex .flex .right-bar{
      width: 100%;
    }
    .international-exposure-programs .d-flex .flex .left-bar {
    width: 100%;
    text-align: left;
}
      .cgc-mohali-partners .all-figures img {
        width: 80px;
    }
  .cgc-top-tier-placements ul {
    flex-direction: column;
}
.cgc-top-tier-placements ul li{
  border-right: none;
  border-bottom: 2px dotted var(--white);
   margin: 0 15px 0 0px;
  padding: 20px 0;
}
    .cgc-top-tier-placements ul li:last-child {
      border-bottom: none;
    }
  .north-india-institute .d-flex figure, .north-india-institute .d-flex .institute-content {
        z-index: 2;
    }
  .building-bridges .right-content .d-flex figure img{
    height: auto;
  }
  .journey-of-excellence {
    padding: 40px 0px 60px 0px;
}
.glimps-into-cgc .mt-mobile{
  margin-top: 10px;
}
  .college-sports .gk-kala {
    margin-bottom: 20px;
}
.cgc-playing-field .box{
  width: 100%;
}
  .cgc-campus-facilities-all .content figure{
  display: block;
}
  .cgc-campus-facilities-all .content figure img{
    width: 100%;
  }
    .pioneering-features .mb-content.mb-left{
        padding-left: 20px;
    }
    .pioneering-features .mb-content h5{
        margin-bottom: 10px;
    }
      .cgc-campus-facilities-all .content.right-content h2{
    font-size: 26px;
}
  .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner h2 {
        font-size: 32px;
    }
        .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner h2 span {
        font-size: 22px;
    }
    .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner p, .admission-overview-banner.placement-overview-page-banner.engineering-placement-banner.campus-facilities-banner p span {
        font-size: 16px;
    }
    .cgc-campus-rise .cgc-campus-rise-content {
        padding: 25px 20px;
    }
    .cgc-campus-facilities-all::before{
        opacity: 0.8;
    }
    .cgc-campus-facilities-all .content.right-content{
        width: 100%;
    }
    .cgc-campus-facilities-all .content.left-content{
        width: 100%;
    }
  .pioneering-features .col-lg-3 {
    padding: 0 15px;
  }
  .executive-director-dcpd .director-info {
    padding: 20px;
  }
  .executive-director-dcpd .director-info ul li {
    font-size: 15px;
  }
  .placements-overview.place-overview .highest-package ul {
    flex-wrap: wrap;
  }
  .placements-overview.place-overview .highest-package ul li:nth-of-type(2) {
    border-right: none;
  }
  .placements-overview.place-overview .highest-package ul li {
    width: 50%;
  }
  .pioneering-features .text-center {
    margin-bottom: 40px;
  }
  .pioneering-features .col-lg-3 figure {
    width: 50%;
    text-align: center;
    margin: 0 auto 30px auto;
  }
  .professional-triumphs .logos img {
    margin-bottom: 20px;
  }
  .placements-overview.place-overview .highest-package iframe {
    width: auto;
    height: auto;
  }
  .placement-companies-logo-slider .slick-track figure img {
    width: 180px;
  }
  .education-loan-quest.cgc-bus-transport.hostel-facility-base
    .education-loan-quest-content {
    padding: 15px;
  }
  .cgc-campus-living .pd-right {
    padding-right: 15px;
  }
  .hostel-facility-section .fee-placement p,
  .hostel-facility-section .fee-placement p span {
    text-align: center;
  }
  .cgc-campus-living figure {
    height: auto;
  }
  .cgc-campus-living figure img {
    height: auto;
  }
  .campus-fee-details .fee-table {
    overflow-x: auto;
  }
  .hostel-facility-section .placementss .pd-btm-20 {
    padding-bottom: 15px;
  }
  .hostel-facility-section .placementss .pd-right-30 {
    padding-right: 15px;
  }
  .hostel-facility-section .placementss .pd-left-30 {
    padding-left: 15px;
  }
  .hostel-facility-section .placementss .pd-top-20 {
    padding-top: 20px;
  }
  .hostel-facility-section .fee-placement img {
    margin-bottom: 20px;
    width: 55px;
  }
  .hostel-facility-section .fee-placement p,
  .hostel-facility-section .fee-placement p span {
    font-size: 15px;
  }
  .campus-package.cgc-campus-living .campus-plcmnt .placementss .single p {
    font-size: 22px;
  }
  .campus-package.cgc-campus-living .campus-plcmnt .placementss .single p cite {
    font-size: 16px;
  }
  .placementss .single span {
    font-size: 15px;
  }
  .admission-overview-banner.admission_banner_overview {
    background-image: url("/public/course/assets/images/support/admission_overview_mob_banner.webp") !important;
  }
  .international-collaborations
    .international-collaboration-slider
    .single-slide
    h5
    span.d-block {
    display: inline !important;
  }
  .education-quest-figure {
    order: 2;
  }
  .cgc-buses-route .modal table.bus-route-modal-table th {
    padding: 12px 16px;
  }
  .cgc-buses-route .modal table.bus-route-modal-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  .cgc-buses-route .text-center {
    margin-bottom: 50px;
  }
  .bus-query h4 {
    text-align: center;
  }
  .bus-query ul {
    flex-direction: column;
  }
  .bus-query ul li {
    border-right: none;
    width: 100%;
    text-align: center;
  }
  .cgc-buses-route button.slick-prev.slick-arrow {
    left: -5px;
  }
  .cgc-buses-route button.slick-next.slick-arrow {
    right: -5px;
  }
  .admission-overview-banner-content h1 {
    font-size: 46px;
  }
  .top-engineering-college .col-lg-5 {
    padding-left: 13px;
  }
  .choose-cgc-mohali-jhanjeri.north-india-institute .d-flex {
    margin-top: -20px;
  }
  .nurturing-connections .col-lg-6.col-md-12 ul li .content p {
    color: var(--white);
  }
  .nurturing-connections .col-lg-6.col-md-12 h2 {
    color: var(--mehroon);
  }
  .nurturing-connections .col-lg-6.col-md-12 p {
    color: var(--text-color);
  }
  .building-bridges-to-brilliance .col-lg-3.col-md-6 {
    margin-bottom: 0px;
  }
  .apply-cgcuet {
    padding: 0;
  }
  .student-stories {
    max-height: auto;
  }
  .main-content .main-container {
    padding: 0 20px;
  }
  .main-content .container-fluid {
    padding: 0 20px;
  }
  .discipline-top-banner .outer-flex {
    flex-direction: column;
  }
  .discipline-top-banner .d-flex.main.border-right {
    border-right: none;
    padding-right: 0;
  }
  .discipline-top-banner .d-flex.main.pd-left-30 {
    padding-left: 0;
  }
  .discipline-top-banner h2 {
    margin-bottom: 25px;
    font-size: 36px;
  }
  .discipline-top-banner {
    padding: 166px 0 0 0;
  }
  .breadcrumbs-search-bar .d-flex {
    flex-direction: column;
  }
  .breadcrumbs-search-bar .d-flex ul {
    margin-bottom: 20px;
  }
  .top-engineering-college .col-lg-7 {
    padding-right: 20px;
  }
  .top-engineering-college .engineering-text img {
    max-width: 360px;
  }
  .top-engineering-college .director-message p::before {
    left: -11px;
    width: 10px;
    height: 14px;
  }
  .engineering-programs .logo {
    margin-bottom: 30px;
  }
  .engineering-programs .listing-box ul.listing {
    column-count: 1;
  }
  .abroad-study .heading h5 {
    margin-bottom: 10px;
  }
  .student-stories .student-boxes {
    padding-top: 60px;
  }
  .student-stories .student-boxes {
    flex-direction: column;
  }
  .student-stories .student-box-outside {
    width: calc(100% / 1);
  }
  .student-stories .student-box-outside:first-child {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .student-stories .student-box-outside:last-child {
    padding-left: 0;
  }
  .apply-cgcuet {
    padding: 430px 0 40px 0;
  }
  .engineering-programs .listing-box {
    padding: 20px;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship {
    padding: 20px;
  }
  .cgcuet-endless-posibility .cgcuet-phase {
    padding: 20px 20px;
  }
  .career-prospects .heading {
    margin-bottom: 20px;
  }
  section {
    padding: 40px 0;
  }
  .cgcuet-endless-posibility .cgcuet-scholarship figure img {
    max-width: 162px;
  }
  .compuet-science-engineering .eng-box {
    padding: 25px;
  }
  .empowering-education .empower-figure-left figure {
    height: auto;
  }
  .cgc-eligibility .col-lg-7.col-md-12 {
    order: 2;
    margin-top: 20px;
  }
  .cgc-eligibility {
    padding-top: 0;
  }
  .cgc-eligibility .main-container {
    padding: 0;
  }
  .cgc-eligibility .col-lg-7.col-md-12 {
    padding: 0 30px;
  }
  .abroad-study ul.slick-dots {
    margin: -28px 0;
    display: block;
  }
  .abroad-study .explore-more-btn {
    padding-top: 75px;
  }
  .abroad-study .slick-dots li button {
    width: 12px;
    height: 12px;
    background-color: #bababa;
    border-radius: 100%;
  }
  .abroad-study .slick-dots li.slick-active button {
    background-color: var(--white);
  }
  .abroad-study .image-box p {
    text-align: center;
  }
  .cgcuet-seps-mobile {
    display: block;
  }
  .cgcuet-seps-mobile img {
    width: 100%;
  }
  .cgcuet-steps {
    display: none !important;
  }
  .engineering-programs .listing-box ul.listing-right {
    column-count: 1;
  }
  .engineering-programs ul li a {
    padding: 8px 0;
    font-size: 14px;
  }
  .h1,
  h1 {
    font-size: 1.5rem;
  }
  .engineering-programs .listing-box {
    padding: 15px;
  }
  .explore-our-campus .center-fig figure {
    width: auto;
  }
  .explore-our-campus ul li:nth-of-type(3) {
    padding-top: 25px;
  }
  .explore-our-campus ul li:last-child {
    padding-top: 25px;
  }
  .college-rankings .rs-item {
    padding: 25px 35px;
  }
  .college-rankings .slider.slider-nav .slick-prev {
    left: -5px;
  }
  .college-rankings .slider.slider-nav .slick-next {
    right: -5px;
  }

  .building-bridges-to-brilliance .buttons {
    padding-bottom: 60px;
  }
  .placements-overview .placement-slider .card-content h3 {
    margin-bottom: 5px;
    font-size: 22px;
  }
  .placements-overview .placement-slider .card-content figure {
    margin-bottom: 25px;
  }
  .placements-overview .placement-slider .slick-center {
    transform: scale(0.82);
  }
  .placements-overview .placement-slider .card-content figure.card-pic {
    bottom: -25px;
  }
  .placements-overview .placement-slider .slick-next:before {
    content: "";
    right: 25px;
  }
  .placements-overview .placement-slider button.slick-prev.slick-arrow {
    left: 0px;
    z-index: 1;
  }
  .placements-overview .placement-slider .slick-list {
    margin: 0 0px 0 -10px;
  }
  .placement-companies-logo-slider.slick-initialized.slick-slider {
    margin-bottom: 0px;
  }
  .placements-overview .international-exposure-programs {
    color: var(--white);
    background-color: #9F0203;
  }
  .placement-companies-logo-slider.slick-initialized.slick-slider {
    margin-bottom: 50px;
  }
  .placements-overview .international-exposure-programs h2 {
    padding-top: 20px;
  }

  .nurturing-connections .row {
    flex-direction: column;
  }
  .nurturing-connections {
    min-height: 800px;
    background-color: #fff;
    background-image: none !important;
  }
  .nurturing-connections::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 72%;
    background-color: var(--mehroon);
    width: 100%;
  }
  .nurturing-connections .absolute-figure img {
    width: 460px;
  }
  .nurturing-connections .main-container {
    z-index: 1;
    position: relative;
  }
  .nurturing-connections .pd-left {
    padding: 50px 15px 0px 15px;
  }
  .nurturing-connections ul li .content p {
    border: none;
    padding: 0;
  }
  .placements-overview h2 {
    font-size: 30px;
  }
  .international-collaborations h2 {
    font-size: 30px;
  }
  .nurturing-connections h2 {
    font-size: 30px;
  }
  .nurturing-connections h2 span.d-block {
    display: inline !important;
  }
  .cgc-admission-overview .text-right {
    margin-top: 20px;
  }
  .mou-education-entities .mou-slide {
    border-right: 0;
  }
  .admission-overview-banner {
    padding: 200px 0 0 0;
  }
  .international-collaborations .colab-slide,
  .international-collaborations .single-slide {
    padding: 0 0px 15px 10px;
  }
  .education-loan-quest .d-flex {
    flex-direction: column;
  }
  .education-loan-quest .education-loan-quest-content {
    width: 100%;
  }
  .education-quest-figure {
    width: 100%;
  }
  .education-loan-quest .education-loan-quest-content {
    padding: 40px 20px 40px 20px;
  }
  .bihar-west-student-credit-card .pd-right {
    padding-right: 15px;
    margin-bottom: 25px;
  }
  .bihar-west-student-credit-card .pd-left {
    padding-left: 15px;
  }
  .bihar-west-student-credit-card .pd-right::before {
    display: none;
  }
  .education-loan-quest .education-loan-quest-content .grayquest-box h3 {
    font-size: 20px;
  }
  .bihar-west-student-credit-card h2 {
    font-size: 24px;
  }
  .apply-for-education-loan .bg-white {
    padding: 20px 20px;
  }
  .apply-for-education-loan .bg-white .apply-box {
    padding: 13px 2px;
  }
  .apply-for-education-loan .bg-red {
    padding: 20px 20px;
    margin-left: 0;
  }
  .apply-for-education-loan .bg-red h3 {
    font-size: 26px;
  }
  .apply-for-education-loan .text-center {
    margin-bottom: 30px;
  }
  .apply-for-education-loan .bg-white p a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
  .admission-overview-banner.placement-overview-page-banner .banner-content h2 {
    font-size: 24px;
  }
  .admission-overview-banner.placement-overview-page-banner.sports-page p.text {
    font-size: 24px;
  }
  .admission-overview-banner.placement-overview-page-banner.sports-page p.mehroon-bg, .admission-overview-banner.placement-overview-page-banner.sports-page p.white-bg {
    font-size: 18px;
  }
  .wns-operational-details table th.main {
    padding: 15px;
    font-size: 14px;
  }
  .wns-operational-details table td {
    padding: 15px;
    font-size: 14px;
  }
  .wns-operational-details table th {
    font-size: 14px;
    padding: 15px;
  }
   .wns-operational-details {
    background: #FFF;
    background-image: none ! IMPORTANT;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 38%, rgba(160, 5, 52, 1) 39%) !important;
  }
  .admission-overview-banner.placement-overview-page-banner
    .banner-content
    h2
    span {
    font-size: 24px;
  }
}

@media screen and (max-width: 649.98px) {
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 80px;
  }
}

@media screen and (max-width: 575.98px) {
  .admission-overview-banner.placement-overview-page-banner.sports-page.tie-ups-page-banner{
     background-image: url('/public/course/assets/images/support/tie_ups_mob.webp') !important;
  }
  section.venture-vault{
     background-image: url('/public/course/assets/images/venture-nest/mob.webp') !important;
  }
  section.admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page{
    background-image: url('/public/course/assets/images/venture-nest/banner_mob.webp') !important;
  }
  section.admission-overview-banner.education-loan-banner{
    background-image: url('/public/course/assets/images/bollywood-celebrities/gallery-banners/convo_mob.webp') !important;
  }
  .mou-education-entities button.nav-link {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}
    .mou-education-entities .mou-global-institute-slider button.slick-prev::before {
        left: 30px;
    }
    .mou-education-entities .mou-global-institute-slider button.slick-next::before
 {
        left: -40px;
    }
  .mou-education-entities .flex figure{
    width: 50%;
  }
  .fashion-designing-banner figure img.mb-none{
    display: none;
  }
  .fashion-designing-banner figure img.lg-none{
    display: block;
  }
  .career-jobs .list button.btn1, .career-jobs .red-btn, .career-jobs .red-btn:hover, .career-jobs .red-btn:focus {
    margin-top: 10px;
  }
  .career-jobs .sidebar .active .indicator {
    display: none !important;
  }
  .career-jobs .view-button-bottom {
    margin-top: 15px;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex.justify-content-end {
    flex-direction: column;
  }
  .engineering-placement-section
    .engineering-special
    .d-flex.flex-direction-column {
    width: 100%;
  }
  .d-flex.flex-direction-column.fl-left {
    padding-right: 0;
  }
  .d-flex.flex-direction-column.fl-right {
    padding-left: 0;
  }
  .discipline-top-banner {
    background-image: url("https://www.cgc.ac.in/public/course/assets/images/support/discipline_bnr.webp");
  }
  .placement-overview-placemen.eng-placement{
    background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/placement_eng_mb-web.webp') !important;
  }
  .placement-overview-placement{
    background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/placement_overview_mb-web.webp') !important;
  }
  .north-india-institute .placementss .single p {
    font-size: 22px;
  }
  .north-india-institute .placementss .single p cite {
    font-size: 16px;
  }
  .north-india-institute .placementss .pd-left-30 {
    padding-left: 15px;
  }
  .building-bridges .right-content .d-flex .content p {
    font-size: 12px;
  }
  .building-bridges .right-content .d-flex .content h6 {
    font-size: 15px;
  }
  .building-bridges .right-content .d-flex .content .rating-stars {
    margin-bottom: 3px;
  }
  section {
    padding: 30px 0;
  }
  .north-india-institute .placementss .pd-left-30 {
    padding-left: 15px;
  }
  .north-india-institute .placementss .single span {
    font-size: 14px;
  }
  .sports-at-cgc h3 {
    font-size: 20px;
  }
  .world-class-education h3 {
    font-size: 20px;
  }
  .vibrant-clubs h3 {
    font-size: 22px;
  }
  .north-india-institute .institute-content h2 {
    font-size: 24px;
  }
  .education-loan-quest.cgc-bus-transport .education-loan-quest-content {
    padding: 20px 20px 30px 20px;
  }
  .cgc-buses-route {
    padding: 30px 0 30px 0;
  }
  .cgc-bus-route-chart h2 {
    font-size: 24px;
  }
  .bus-query h4 {
    font-size: 16px;
  }
  .bus-query ul li {
    font-size: 14px;
  }
  .cgc-buses-route h2 {
    font-size: 22px;
  }
  .why-student-text {
    margin-top: 25px;
  }
  /* .discipline-top-banner.course-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/course_bnr.webp') !important;
    } */
  /* .discipline-top-banner.management-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/business_management_mob.webp') !important;
    }
    .discipline-top-banner.scholarship{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/scholarship_mob.webp') !important;
    }
    .discipline-top-banner.pharmacy-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/pharmacy_mob.webp') !important;
    }
    .discipline-top-banner.computer-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/computer_application_mob.webp') !important;
    }
    .discipline-top-banner.fashion-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/fashion_designing_mob.webp') !important;
    }
    .discipline-top-banner.paramedical-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/paramedical_mob.webp') !important;
    }
    .discipline-top-banner.law-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/law_mob.webp') !important;
    }
    .discipline-top-banner.commerce-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/commerce_mob.webp') !important;
    }
    .discipline-top-banner.journalism-top-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/journalism_mob.webp') !important;
    }
    .discipline-top-banner.ai-ml-mob-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/b-tech-ai-ml/aiml_mob.webp') !important;
    }
    .discipline-top-banner.ai-ds-mob-banner{
        background-image: url('https://www.cgc.ac.in/public/course/assets/images/support/b-tech-ai-ds/ai-ds_mob.webp') !important;
    } */
}

@media screen and (max-width: 499.98px) {
  .mobile-prospect-figure {
    display: none !important;
  }
  .mobile-prospect-figure-mobile-only {
    display: block;
  }
  .mobile-prospect-figure-mobile-only img {
    width: 100%;
  }
  .campus-life-banner-content h1 {
    font-size: 26px;
  }
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 100px;
  }
}

@media screen and (max-width: 479.98px) {
  .main-content h2 {
    font-size: 22px !important;
}
  section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1, section.admission-overview-banner.education-loan-banner.academic-fee-strcuture h1 span {
    font-size: 36px;
}
  .cgc-mohali-partners .all-figures img {
    width: 70px;
  }
  .nurturing-connections::before {
    height: 70%;
  }
  .nurturing-connections {
    min-height: 840px;
  }
  .admission-overview-banner.placement-overview-page-banner .banner-content p {
    font-size: 76px;
  }
  .admission-overview-banner.placement-overview-page-banner img {
    width: 130px;
  }
}

@media screen and (max-width: 449.98px) {
  .admission-overview-banner.placement-overview-page-banner.sports-page.venture-nest-page .banner-content h2 span{
    line-height: 1.3;
  }
    .cgc-mohali-partners .all-figures img {
        width: 60px;
    }
  .discipline-top-banner .h1 {
    font-size: 50px;
  }
  .discipline-top-banner h2 {
    font-size: 24px;
  }
  .top-engineering-college {
    padding: 30px 0 200px 0;
  }
  .why-choose-cgc-mohali .content-right .placementss .single span {
    font-size: 14px;
  }
  .why-choose-cgc-mohali .content-right .placementss .single p {
    font-size: 20px;
  }
  .why-choose-cgc-mohali .content-right .placementss .single p cite {
    font-size: 15px;
  }
  .main-content h5 {
    font-size: 18px;
  }
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 110px;
  }
  .nurturing-connections::before {
    height: 68%;
  }
  .apply-for-education-loan .bg-white .apply-box .single p {
    font-size: 11px;
  }
  .college-rankings .slick-list .slick-slide img {
    width: 140px;
  }
}

@media screen and (max-width: 379.98px) {
    .cgc-mohali-partners .all-figures img {
        width: 50px;
    }
  .nurturing-connections::before {
    height: 70%;
  }
  .nurturing-connections ul li {
    flex-direction: column;
  }
  .nurturing-connections {
    min-height: 1050px;
  }
  .nurturing-connections ul li .content {
    padding-left: 0;
  }
  .nurturing-connections ul li .main-content figure {
    margin-bottom: 10px;
  }
  .placement-companies-logo-slider .slick-list .slick-track {
    gap: 120px;
  }
  .admission-overview-banner-content h1 {
    font-size: 42px;
  }
  .admission-overview-banner-content h1 span {
    font-size: 26px;
  }
  .nurturing-connections {
    min-height: 1000px;
  }
  .college-rankings .slick-list .slick-slide img {
    width: 120px;
  }
  .college-rankings .rs-item {
    padding: 32px 28px;
  }
}

@media screen and (max-width: 349.98px) {
  .main-content .main-container {
    padding: 0 15px;
  }
  .main-content .container-fluid {
    padding: 0 15px;
  }
  .cgcuet-endless-posibility .cgcuet-phase {
    padding: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .cgc-campus-living figure {
    height: 300px;
  }
  .cgc-campus-living figure img {
    height: 100%;
  }
}
/* Media Query CSS Ends Here /*




/* ------------ Career Page start here ------------------ */
:root {
  --bs-fs80: 55px;
  --bs-fs60: 35px;
  --bs-fs56: 32px;
  --bs-fs40: 27px;
  --bs-fs32: 24px;
  --bs-fs24: 21px;
  --bs-fs20: 18px;
  --bs-fs18: 16px;
  --bs-fs16: 14px;
}
.employee_testimonial .testi-monials{
  display: flex;
  justify-content: space-between;
}
.employee_testimonial .testi-monials .item{
  width: 50%;
}
.employee_testimonial .testi-monials .item:first-child{
  padding-right: 15px;
}
.employee_testimonial .testi-monials .item:nth-of-type(2){
  padding-left: 15px;
}
.employee_testimonial .testi-monials .item iframe{
  width: 100%;
}
.career_page {
  font-size: var(--bs-fs20);
  font-family: var(--lato);
  font-weight: 400;
  .gradient_btn,
  .dark_grey_btn {
    border-radius: 8px;
    text-decoration: none !important;
    color: #fff;
    font-weight: 700;
    font-size: var(--bs-fs16);
    padding: 13px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      margin: 0 5px;
    }
  }
  .gradient_btn {
    background: linear-gradient(to bottom, #ad274f, #98002e);
  }
  .dark_grey_btn {
    background: linear-gradient(to bottom, #2e2e2e, #000000);
  }
  h1,
  h2,
  h3 {
    line-height: 1 !important;
  }
  p {
    line-height: 1.4 !important;
  }
  img {
    max-width: 100%;
  }
  .owl-carousel.white_dots {
    .owl-dots .owl-dot:not(.active) {
      background: #d6d6d6 !important;
    }
    .owl-dots .owl-dot.active {
      background: #fff !important;
    }
  }
}
.career_page {
  .hero-banner-new {
    padding: 0 !important;
    .top-banner {
      max-width: 550px;
    }
    h1 {
      font-family: var(--raleway) !important;
      color: #fff !important;
      span {
        font-weight: 250 !important;
        text-transform: unset !important;
        font-size: var(--bs-fs80) !important;
      }
      strong {
        display: block;
        font-weight: 500 !important;
        font-size: var(--bs-fs56);
        margin-top: 1rem;
        line-height: 1.25;
      }
    }
  }
}
.vision_sec {
  background-color: #f5f5f5;
  position: relative;
  h2 {
    color: #9F0203;
    font-family: var(--lato);
    font-weight: 300 !important;
    font-size: var(--bs-fs40);
  }
  p {
    color: #2e2e2e;
    font-family: var(--lato);
    font-weight: 400;
    font-size: var(--bs-fs20);
  }
  &:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: url(../images/careernew/Mission.webp) no-repeat center;
    background-size: cover;
  }
  .slider_wrapper {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .item {
    padding: 20px;
    height: 420px;
    width: calc(100% - 30px);
    border: 8px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 9px 20px rgb(0 0 0 / 10%);
    margin: 15px;
     &:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	  background-image: linear-gradient(2deg,rgba(255, 255, 255, 1) 0%, rgba(5, 5, 5, 1) 27%, rgba(255, 255, 255, 0.13) 100%);
	  opacity: .6; 
    margin: 20px;
  }
    & * {
      color: #fff;
      font-family: var(--lato);
      font-weight: 400 !important;
    }
    h3 {
      margin-bottom: 10px;
      font-size: var(--bs-fs24);
      position: relative;
      padding-bottom: 13px;
      &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: #fff;
      }
    }
    p {
      margin-bottom: 0;
      font-size: var(--bs-fs18);
      z-index: 9;
    }
  }
}
.meet_our_leadership {
  position: relative;
  .img_col {
    width: 48%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .sec_content {
    padding-left: 20px;
    & * {
      color: #2e2e2e;
      font-family: var(--lato);
      font-size: var(--bs-fs20);
      font-weight: 400;
    }
    h2 {
      color: #9F0203;
      font-weight: 300 !important;
      font-size: var(--bs-fs60);
      margin-bottom: 18px;
    }
    h3 {
      color: #2e2e2e;
      font-weight: 400 !important;
      font-size: var(--bs-fs32);
      margin-bottom: 15px;
    }
    .director_name {
      margin-top: 30px;
      display: inline-block;
      h3 {
        color: #9F0203;
        font-weight: 300 !important;
        font-size: var(--bs-fs32);
        margin-bottom: 10px;
      }
      p {
        margin-bottom: 0;
      }
    }
  }
}
.connect_on_linkedin {
  .sec_content {
    max-width: 900px;
    margin: 0 auto;
    & * {
      color: #fff;
      font-family: var(--lato);
      font-size: var(--bs-fs24);
      font-weight: 400;
    }
    h2 {
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
      img {
        position: relative;
        top: -4px;
      }
    }
  }
  img.logo_linkein {
    width: 70px;
    position: relative;
    top: 0;
  }
}
.love_your_job {
  padding: 120px 0;
  .sec_content {
    max-width: 600px;
    & * {
      color: #fff;
      font-family: var(--raleway);
    }
    h2 {
      font-size: var(--bs-fs80);
      font-weight: 250 !important;
      margin-bottom: 10px;
      line-height: 1.3 !important;
      span {
        font-weight: 500;
        font-size: var(--bs-fs56);
        display: block;
      }
    }
    p {
      font-size: var(--bs-fs32);
    }
  }
}
.explore_opprtunities {
  background-color: #f2f3f7;
  .sec_content {
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
    }
    h2 {
      color: #9F0203;
      font-size: var(--bs-fs40);
      font-weight: 300 !important;
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .opport_list_container {
    --bs-gutter-x: 1rem;
    .opp_li_item {
      width: 25%;
      margin-top: 1.5rem;
      font-family: var(--lato);
      .item_inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .white_box {
        border-radius: 8px;
        background: #fff;
        color: #2e2e2e;
        padding: 1.5rem;
        position: relative;
        .plus_btn {
          width: 30px;
          display: inline-block;
          position: absolute;
          bottom: 20px;
          right: 20px;
        }
      }
      .red_box {
        border-radius: 8px;
        background: rgb(169 19 23 / 92%);
        color: #fff;
        padding: 1.5rem;
        padding-bottom: 5rem;
        position: relative;
      }
      .img_box {
        border-radius: 8px;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .ful_img {
        height: 100%;
        border-radius: 8px;
        object-fit: cover;
      }
      h2 {
        font-size: var(--bs-fs40);
        font-weight: 400 !important;
        line-height: 1.2 !important;
        strong {
          font-weight: 700 !important;
          display: block;
        }
      }
      p {
        font-size: var(--bs-fs24);
      }
      h3 {
        font-size: var(--bs-fs32);
        font-weight: 400 !important;
        small {
          font-size: var(--bs-fs20);
          display: block;
          margin-top: 8px;
        }
      }
      .number_count {
        font-size: var(--bs-fs40);
        font-weight: 700;
      }
      .btn_icon {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        img.icon_1 {
          width: 50px;
        }
      }
    }
    .li_item_1 {
      .white_box {
        height: 52%;
      }
      .img_box {
        height: 48%;
      }
    }
    .li_item_2 {
      .white_box {
        height: 58%;
      }
      .red_box {
        height: 42%;
      }
    }
    .li_item_4 {
      .img_box {
        height: 58%;
      }
      .red_box {
        height: 42%;
      }
    }
  }
}
.work_matters {
  .sec_title {
    margin-bottom: 2rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      color: #fff;
    }
    h2 {
      font-size: var(--bs-fs40);
      font-weight: 300 !important;
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .item {
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      color: #fff;
    }
    h3 {
      font-weight: 300 !important;
      font-size: var(--bs-fs32);
      position: relative;
    }
    p {
      margin-bottom: 0;
      font-weight: 400;
      font-size: var(--bs-fs18);
      position: relative;
    }
    &::before{
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0.6;
      width: 100%;
      height: 100%;
      box-shadow: 0px -130px 30px 0px inset #000;
    }
  }
}
.cgc_tabs_sec {
  .sec_title {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
    }
    h2 {
      color: #9F0203;
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .nav-tabs {
    justify-content: center;
    border: 0 !important;
    margin-bottom: 1.5rem;
    .nav-item {
      margin: 7px;
      .nav-link {
        border: 0 !important;
        border-radius: 16px;
        text-decoration: none !important;
        color: #fff;
        font-weight: 700;
        font-size: var(--bs-fs18);
        padding: 10px 30px;
        background: linear-gradient(to bottom, #2e2e2e, #434343);
        &.active {
          background: linear-gradient(to bottom, #8a0000, #9F0203);
        }
      }
    }
  }
  .tab-content {
    .tab-pane {
      display: none;
    }
    .tab-pane.active {
      display: block;
    }
    iframe{
      width: 100%;
    }
  }
}
.emp_benefits_amenity {
  .sec_title {
    margin-bottom: 3rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      color: #fff;
    }
    h2 {
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .emp_benfit_list {
    justify-content: space-between;
  }
  .ebl_item {
    width: 22%;
    margin-top: 1.5rem;
  }
  .item_icon {
    position: relative;
    img.icon_size {
      position: absolute;
      width: 60px;
      left: 50%;
      top: 48%;
      transform: translate(-50%);
    }
  }
  .item_inner {
    height: 100%;
    color: #fff;
    font-family: var(--lato);
    text-align: center;
    display: flex;
    flex-direction: column;
    strong {
      display: block;
      font-weight: 700;
      font-size: var(--bs-fs20);
      margin: 10px 0;
      text-align: center;
      line-height: 1.15;
    }
    small {
      display: block;
      font-weight: 400;
      font-size: var(--bs-fs16);
      text-align: center;
      line-height: 1.15;
    }
  }

  .ebl_item:nth-child(even) {
    .item_inner {
      flex-direction: column-reverse;
      small {
        margin-bottom: 10px;
      }
    }
    .item_icon {
      img.icon_size {
      }
    }
  }
  .ebl_item:nth-child(odd) {
    .item_icon {
      img.icon_size {
        top: 37%;
      }
    }
  }
}
.what_our_team {
  .sec_title {
    max-width: 900px;
    margin: 0 auto 2rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
    }
    h2 {
      color: #9F0203;
      font-weight: 300 !important;
      font-size: var(--bs-fs60);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .owl_testimonial .owl-item.active .item_inner,
  .owl_testimonial .owl-item.active + .owl-item .item_inner {
    flex-direction: row;
  }
  .owl_testimonial .owl-item.active .item_inner .full_img:before {
    width: 5px;
    opacity: 1;
    background-color: #ad274f;
  }
  .owl_testimonial .item {
    width: 100%;
    background: #9F0203;
    .item_inner {
      display: flex;
      flex-direction: row-reverse;
    }
    .full_img {
      width: 250px;
      min-width: 250px;
      position: relative;
    }
    .full_img img {
      height: 100%;
      object-fit: cover;
    }
    .full_img:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.6;
      transition: 0.3s all;
    }
    .item_inner .testi_text {
      padding: 2rem;
      font-family: var(--lato);
      font-weight: 700;
      font-style: italic;
      font-size: var(--bs-fs24);
      color: #fff !important;
    }
    .item_inner .testi_text img {
      width: 45px !important;
      margin-bottom: 2rem;
      display: inline;
    }
    .item_inner h4 {
      font-size: var(--bs-fs24);
      font-weight: 400 !important;
      margin-bottom: 0;
      font-style: normal !important;
      small {
        display: block;
        font-size: var(--bs-fs18);
      }
    }
  }
}
.hr_event_cgc {
  .sec_title {
    margin-bottom: 2rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      color: #fff;
    }
    h2 {
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .item {
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0.6;
        width: 100%;
        height: 100%;
        box-shadow: 0px -150px 30px 0px inset #000;
    }
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      color: #fff;
    }
    h3 {
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
      position: relative;
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
      position: relative;
    }
  }
}
.employee_testimonial {
  .sec_title {
    max-width: 900px;
    margin: 0 auto 2rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
    }
    h2 {
      color: #9F0203;
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
  .item {
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
      font-weight: 400 !important;
    }
    img {
      width: 100%;
      /*height: 300px;
            object-fit: cover;*/
      margin-bottom: 1.5rem;
    }
    h3 {
      color: #9F0203;
      font-size: var(--bs-fs32);
    }
    p {
      font-size: var(--bs-fs24);
      line-height: 1.2 !important;
    }
  }
}
.meet_team {
  .sec_title {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    & * {
      margin-bottom: 10px;
      font-family: var(--lato);
    }
    h2 {
      color: #9F0203;
      font-weight: 300 !important;
      font-size: var(--bs-fs40);
    }
    p {
      font-size: var(--bs-fs18);
      font-weight: 400;
    }
  }
}

@media (min-width: 1600px) {
  :root {
    --bs-fs80: 65px;
    --bs-fs60: 40px;
    --bs-fs56: 36px;
    --bs-fs40: 32px;
    --bs-fs32: 26px;
    --bs-fs24: 22px;
    --bs-fs20: 18px;
    --bs-fs18: 16px;
    --bs-fs16: 14px;
  }
  .vision_sec {
    .item {
      height: 520px;
      padding: 30px;
    }
  }
  .meet_our_leadership {
    .sec_content {
      padding-left: 40px;
    }
  }
  .what_our_team {
    .owl_testimonial .item {
      .full_img {
        width: 300px;
        min-width: 300px;
      }
      .item_inner .testi_text {
        padding: 4rem;
      }
    }
  }
  .love_your_job {
    padding: 200px 0;
  }
  .work_matters {
    .item {
      height: 550px;
      padding: 35px;
    }
  }
  .hr_event_cgc {
    .item {
      height: 520px;
      padding: 30px;
    }
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  :root {
    --bs-fs80: 50px;
    --bs-fs60: 34px;
    --bs-fs56: 30px;
    --bs-fs40: 28px;
    --bs-fs32: 24px;
    --bs-fs24: 20px;
    --bs-fs20: 16px;
    --bs-fs18: 15px;
    --bs-fs16: 13px;
  }
  .emp_benefits_amenity {
    .item_icon {
      img.icon_size {
        width: 50px;
      }
    }
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --bs-fs80: 38px;
    --bs-fs60: 28px;
    --bs-fs56: 25px;
    --bs-fs40: 22px;
    --bs-fs32: 20px;
    --bs-fs24: 17px;
    --bs-fs20: 15px;
    --bs-fs18: 14px;
    --bs-fs16: 13px;
  }
  .hr_event_cgc {
    .sec_title {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  .emp_benefits_amenity {
    .item_icon {
      img.icon_size {
        width: 40px;
      }
    }
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  :root {
    --bs-fs80: 38px;
    --bs-fs60: 28px;
    --bs-fs56: 25px;
    --bs-fs40: 22px;
    --bs-fs32: 20px;
    --bs-fs24: 17px;
    --bs-fs20: 15px;
    --bs-fs18: 14px;
    --bs-fs16: 13px;
  }
  .work_matters {
    .sec_title {
      margin-left: auto;
      margin-right: auto;
      max-width: 420px;
    }
  }
  .love_your_job {
    padding: 40px 0;
    .sec_content {
      max-width: 350px;
    }
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .meet_our_leadership {
    .sec_content {
      padding-left: 0;
    }
  }
  .vision_sec,
  .hr_event_cgc {
    .item {
      height: 330px;
    }
  }
  .explore_opprtunities {
    .opport_list_container {
      .opp_li_item {
        .white_box {
          padding: 1rem;
          padding-bottom: 4rem;
        }
        .red_box {
          padding: 1rem;
          padding-bottom: 6rem;
        }
        .btn_icon {
          padding: 1rem;
        }
      }
    }
  }
}

@media (min-width: 992px) {
  .meet_our_leadership {
    .img_col {
      padding: 0;
    }
  }
}

@media (max-width: 991px) {
  .vision_sec,
  .hr_event_cgc {
    .item {
      height: 330px;
    }
  }
  .meet_our_leadership {
    .img_col {
      width: 100%;
      height: auto;
      position: unset;
    }
    .sec_content {
      padding-left: 0;
      padding-top: 20px;
    }
  }
  .employee_testimonial {
    .item {
      & * {
        margin-bottom: 3px;
      }
    }
  }
}

@media (max-width: 767px) {
  .cgc-info .content {
    width: 100%;
  }
  .cgc-info .p-0 {
    padding: 0 15px !important;
  }
  .cgc-info .pl-pr-75 {
    padding: 0;
  }
  .cgc-info .pt-4 {
    padding-top: 0 !important;
  }
  .main-content h2 {
    font-size: 25px;
  }
  .success-begins:after {
    background: var(--bg-mehroon);
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 350px;
  }
  .cgc-info .well-being {
    bottom: 70px !important;
    width: 93% !important;
  }
  .success-begins {
    position: relative;
    height: 780px;
  }
  .width-80 {
    width: 100%;
  }
  .welfare-width-custom .col-md-6 {
    padding-left: 0;
  }
  .welfare-width-custom .width-80 {
    width: 80%;
    margin:0 auto;
    text-align: center;
  }
  .ml-30 {
    margin-left: 0;
  }
  .ml-80 {
    margin-left: 0 !important;
  }
  .mb-mt-4 {
    margin-top: 20px;
  }
  .what_our_team {
    .owl_testimonial .item {
      .item_inner .testi_text img {
        width: 30px !important;
        margin-bottom: 1rem;
      }
      .item_inner .testi_text {
        padding: 1rem;
      }
      .full_img {
        width: 200px;
        min-width: 200px;
      }
    }
    .vision_sec {
      h2 {
        margin-bottom: 10px;
      }
    }
    .r-heading {
      font-size: 30px;
    }
    .h-heading {
      font-size: 24px;
    }
    .empower.empower-top figure figcaption h6 {
      font-size: 30px;
    }
    .empower-figure-left figure {
      height: 320px !important;
    }
    .empower figure figcaption {
      margin-top: 20px;
    }
    .program-advantages .col-md-4 h5 {
      min-height: 45px;
      margin-bottom: 10px;
    }
  }
  .explore_opprtunities {
    .opport_list_container {
      .opp_li_item {
        width: 50%;
        .white_box {
          padding: 0.75rem;
          padding-bottom: 4rem;
          .plus_btn {
            width: 24px;
            bottom: 13px;
            right: 13px;
          }
        }
        .red_box {
          padding: 0.75rem;
          padding-bottom: 6rem;
        }
        .btn_icon {
          padding: 0.75rem;
          img.icon_1 {
            width: 40px;
          }
        }
        h2 {
          font-size: 20px;
        }
        .number_count {
          font-size: 20px;
        }
        h3 {
          font-size: 17px;
          small {
            font-size: 13px;
          }
        }
        p {
          font-size: 14px;
        }
      }
    }
  }
  .emp_benefits_amenity {
    .ebl_item {
      width: 100%;
    }
    .item_text {
      width: calc(100% - 150px);
    }
    .item_inner {
      align-items: center;
      .item_icon {
        width: 150px;
        img.icon_size {
          width: 40px !important;
          height: 40px;
          object-fit: contain;
        }
      }
      img.bg_circle {
        transform: rotate(-90deg);
        transform-origin: 50%;
        width: 100%;
        padding: 0 20px;
      }
    }
    .ebl_item:nth-child(odd) {
      .item_inner {
        flex-direction: row !important;
      }
      strong,
      small {
        text-align: left;
      }
      .item_text {
        padding-left: 1rem;
      }
      .item_icon {
        img.icon_size {
          top: 38% !important;
          left: 44%;
        }
      }
    }
    .ebl_item:nth-child(even) {
      .item_inner {
        flex-direction: row-reverse !important;
      }
      strong,
      small {
        text-align: right;
      }
      .item_text {
        padding-right: 1rem;
      }
      .item_icon {
        img.icon_size {
          top: 38% !important;
          left: 55%;
        }
      }
    }
  }
}

@media (max-width: 575px) {
}

@media (max-width: 480px) {
  :root {
    --bs-fs80: 38px;
    --bs-fs60: 28px;
    --bs-fs56: 25px;
    --bs-fs40: 22px;
    --bs-fs32: 20px;
    --bs-fs24: 17px;
    --bs-fs20: 15px;
    --bs-fs18: 14px;
    --bs-fs16: 13px;
  }
  .what_our_team {
    .owl_testimonial .item {
      .item_inner {
        flex-wrap: wrap;
      }
      .full_img {
        width: 100%;
        min-width: 200px;
        height: 300px;
      }
      .full_img img {
        object-position: top;
      }
    }
  }
  .cgc_tabs_sec {
    .nav-tabs {
      .nav-item {
        margin: 4px;
        .nav-link {
          border-radius: 7px;
          font-size: 14px;
          padding: 8px 13px;
        }
      }
    }
  }
  .emp_benefits_amenity {
    .sec_title {
      margin-bottom: 0;
    }
    .item_text {
      width: calc(100% - 100px);
    }
    .item_inner {
      .item_icon {
        width: 100px;
        img.icon_size {
          width: 30px !important;
          height: 30px;
        }
      }
      img.bg_circle {
        padding: 0 10px;
      }
    }
    .ebl_item:nth-child(odd) {
      .item_icon {
        img.icon_size {
          top: 38% !important;
          left: 44%;
        }
      }
    }
    .ebl_item:nth-child(even) {
      .item_icon {
        img.icon_size {
          top: 38% !important;
          left: 55%;
        }
      }
    }
  }
}

@media (max-width: 390px) {
  .cgc_tabs_sec {
    .nav-tabs {
      .nav-item {
        margin: 1px;
        .nav-link {
          border-radius: 7px;
          font-size: 12px;
          padding: 8px 13px;
        }
      }
    }
  }
}


/*------ Vision page new style -------------*/
.newMission_page_bg {
  background: #F5F5F5;
}
.vision_mission_new {
  .text-redd {
    color: #9E0203;
  }
  h3 {
    font-weight: 700;
  }
  li{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .align-items-start {
    align-items: flex-start;
  }
  .vision_secc {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    .content_width {
      width: 50%;
      padding: 2rem;
      padding-right: 0;
    }
  }
  .mission_secc {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 1rem;
    padding-top: 2rem;
    .content_full {
      padding: 2rem;
      padding-top: 0;
      padding-bottom: 20%;
    }
    strong {
      color: #9E0203;
      font-weight: 700;
    }
    ul {
        padding-left: 20px;
      li {
        list-style: disc;
        &::marker {
          color: #9E0203;
        }
      }
    }
  }
  .core_valuess {
    margin-top: 1rem;
    .d_flex {
      display: flex;
    }
    .content_width_50 {
      width: 50%;
      .bg_opacity {
        background: #9e0203;
        color: #fff;
        padding: 3.5rem;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        mix-blend-mode: multiply;
      }
      ul {
        li {
          list-style: disc;
          margin-bottom: 4px !important;
          &::marker {
            color: #fff;
          }
        }
      }
    }
    img.img_pos {
      width: 50%;
      object-fit: cover;
    }
  }
  .get_intouch {
    padding-top: 50%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    .getintouch {
      background: #9E0203E5;
      padding: 10px 30px;
      padding-left: 50px;
      position: relative;
      display: inline-block;
      color: #fff;
      border-top-right-radius: 40px;
      font-weight: 700;
      small {
        display: block;
        font-weight: 400;
      }
      img {
        width: 25px;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }
  .widget_link_wrapper {
    background-color: #9E0203;
    color: #fff;
    h3 {
      background-color: #C30405;
      padding: 12px 25px;
      margin: 0;
    }
    a {
      display: block;
      color: #fff;
      width: 100%;
      padding: 12px 25px;
      border-bottom: 1px solid #C30405;
    }
}
}


@media (min-width: 1200px) {
  .vision_mission_new {
    .core_valuess h2 {
        font-size: 3rem;
    }
  }
}

@media screen and (max-width: 1799.98px) {
  .vision_mission_new {
    h3 {
      font-size: 21px;
    }
    li {
      font-size: 17px;
      line-height: 1.5;
      margin-bottom: 15px;
    }
  }
}

@media screen and (max-width: 1699.98px) {
  .vision_mission_new {
    h3 {
      font-size: 21px;
    }
    li {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .core_valuess {
      .content_width_50 {
        .bg_opacity {
          padding: 2rem;
        }
      }
    }
  }
}

@media screen and (max-width: 1599.98px) {
  .vision_mission_new {
    h3 {
      font-size: 21px;
    }
    .core_valuess h2 {
        font-size: 40px !important;
    }
    li {
      font-size: 15px;
      margin-bottom: 15px;
    }
  }
}


@media screen and (max-width: 991.98px) {
  .vision_mission_new {
    .vision_secc {
      .content_width {
        padding: 4rem 2rem;
        padding-right: 0;
      }
    }
    .widget_link_wrapper {
      margin-bottom: 40px;
    }
    .core_valuess {
        padding-bottom: 1rem;
    }
  }
} 


@media screen and (max-width: 767.98px) {
  .vision_mission_new {
    margin-top: 30px;
    .vision_secc {
      .content_width {
        padding: 1rem 1.5rem;
        padding-right: 0;
      }
    }
    .mission_secc {
      .content_full {
        padding-bottom: 30%;
      }
    }
    .core_valuess {
      .d_flex {
        flex-direction: column;
      }
      .content_width_50, img.img_pos {
        width: 100%;
      }
    }
  }
} 


@media screen and (min-width: 576px) {
  .vision_mission_new {
    .hide_desktop {
      display: none !important;
    }
  }
}

@media screen and (max-width: 575.98px) {
  .vision_mission_new {
    li, p {
        font-size: 13px;
        text-align: justify;
    }
    h3 {
        font-size: 17px;
    }
    .widget_link_wrapper {
      a {
        font-size: 13px;
      }
    }
    .vision_secc {
      background: #fff !important;
      padding: 0;
      .content_width {
        width: 100%;
        padding: 1rem 1.5rem;
      }
    }
    .mission_secc {
      padding-top: 1.5rem;
      .content_full {
        padding: 1.25rem;
        padding-top: 0;
        padding-bottom: 50%;
      }
    }
    .core_valuess {
      .content_width_50 {
        .bg_opacity {
          padding: 1.25rem;
        }
      }
    }
  }
}




/*------ PHD page style -------------*/
.phd_page {
  img {
    max-width: 100%;
  }
  .fs_70 {
    font-size: 45px;
  }
  .fs_60 {
    font-size: 38px;
  }
  .fs_50 {
    font-size: 32px;
  }
  .fs_40 {
    font-size: 27px;
  }
  .fs_30 {
    font-size: 22px;
  }
  .fs_18 {
    font-size: 14px;
  }
  .fs_26 {
    font-size: 20px;
  }
  .fs_24 {
    font-size: 17px;
  }
  h1, h2, h3, h4 {
    font-family: var(--popin);
    font-weight: 600 !important;
    line-height: 1.25;
  }
  p, li {
    font-size: 14px;
  }
  strong {
    font-weight: 600;
  }
  .fm_gothic {
    font-family: "League Gothic", sans-serif;
    font-weight: 400 !important;
  }
  .text_red {
    color: #9D1C1F;
  }
  .row {
    align-items: flex-start;;
  }
  .top-phd-college {
  padding: 60px 0 ;
  overflow: hidden;
}
.top-phd-college .row {
  align-items: baseline;
}
.top-phd-college .col-lg-5 {
  padding-top: 1px;
}
.top-phd-college .col-lg-7 {
  padding-right: 70px;
}
.top-phd-college .border-box-text {
  border: 1px dashed #2e2e2e;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.top-phd-college .border-box-text p {
  margin-bottom: 5px;
}
.top-phd-college .border-box-text p:last-child {
  margin-bottom: 0;
}
.top-phd-college .border-box-text p span {
  font-weight: 500;
}
.top-phd-college .director-message p {
  color: var(--mehroon);
  font-weight: 700;
  font-style: italic;
  position: relative;
  font-family: var(--lato);
}
.listing-box .listing_inner p:not(:last-child) {
    margin-bottom: 6px;
}
.listing-box em {
    font-size: 17px;
    display: block;
}
.phd_program_offer .sec_bg {
    padding: 40px 0 190px;
}
.phd_program_offer .engg_tech_phd  {
  margin-top: -160px;
}
.engg_tech_phd .item_inner {
    background: #fff;
    box-shadow: 0 2px 30px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 20px;
}
.engg_tech_phd .item_inner h3 {
  margin-top: 1rem;
}
.engg_tech_phd .item_inner p {
  margin-bottom: 0;
}
.line_after {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 1rem;
  display: inline-block;
}
.line_after:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 5px;
  background: url(https://www.cgcuniversity.in/public/course/assets/images/phd/underline.svg) no-repeat center;
  background-size: contain;
}
.phd_academics {
  position: relative;
  &:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(41.66666667% + .5rem);
    height: 100%;
    background-color: #9D1C1F;
    z-index: -1;
  }
}
.phd_academics .row_gap {    
  --bs-gutter-x: 3.5rem;
}
.col_eligibility {
  background-color: #9D1C1F;
  align-self: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.qual_col_wrap {
  background: #fff;
  box-shadow: 0 2px 30px rgb(0 0 0 / 10%);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.qual_col_wrap h3 {
  background-color: #9D1C1F;
  padding: 15px 5px;
  text-align: center;
  margin-bottom: 0;
}
.qual_col_wrap ul {
padding: 15px 25px;
}
.qual_col_wrap ul li {
  margin: 10px 0;
  &:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #C9C9C9;
  }
}
.col_academic .row {
  align-items: unset;
}
ul {
  padding-left: 0;
}
.arrow_list_red li {
  position: relative;
  padding-left: 20px;
  margin: 10px 0; 
  &:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: url(https://www.cgcuniversity.in/public/course/assets/images/phd/li-arrow-red.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  }
}
.phd_admissions {
    padding-bottom: 20%;
}
}





@media (min-width: 1600px) {
.phd_page {
    .fs_70 {
      font-size: 70px;
    }
    .fs_60 {
      font-size: 60px;
    }
    .fs_50 {
      font-size: 50px;
    }
    .fs_40 {
      font-size: 40px;
    }
    .fs_30 {
      font-size: 30px;
    }
    .fs_18 {
      font-size: 18px;
    }
    .fs_26 {
      font-size: 26px;
    }
    .fs_24 {
      font-size: 24px;
    }
    p, li {
      font-size: 18px;
    }
    .listing-box em {
      font-size: 24px;
    }
  }
}