@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --brand: #1ca1df;
  --blue: #1B8CC5;
  --dark: #242424;
  --grey: #E0DDDC;
  --light-bg: #E1EDFF;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #4F5E64;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Roboto", sans-serif;
  --heading-font: "PT Sans", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: rgba(0, 62, 110, 0.07) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.ff-pt {
  font-family: var(--heading-font);
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.lh-1 {
  line-height: 0.95;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  background-color: rgba(6, 106, 201, 0.1);
  border: 1px solid rgba(6, 106, 201, 0.1);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  border-radius: 0.25rem;
  padding: 0.75rem 0.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  text-align: center;
}
.pagination .page-item .page-link svg {
  width: 1rem;
  height: 1rem;
  fill: var(--brand);
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus, .pagination .page-item .page-link:active {
  background-color: rgba(6, 106, 201, 0.2);
  border: 1px solid rgba(6, 106, 201, 0.4);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.top__nav .action__box svg {
  width: 1.125rem;
  height: 1.125rem;
}
.top__nav .action__box a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  right: 0%;
  background: linear-gradient(rgba(255, 255, 255, 0.0980392157), #fff, rgba(255, 255, 255, 0.0980392157));
}
.top__nav .action__box a:hover {
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.top__nav .action__box a.no__after::after {
  content: none;
}

@media (max-width: 575px) {
  .top__nav .action__box svg {
    display: none;
  }
}
.navbar .navbar-brand img {
  max-height: 3.5rem;
}
.navbar .location__btn {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.5rem;
  box-shadow: 0 14px 20px -5px rgba(27, 140, 197, 0.3490196078);
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link svg {
  width: 1rem;
  height: 1rem;
  fill: var(--white);
  position: relative;
  top: -2px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--white);
}
.navbar .nav-item .nav-link:hover svg {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--white);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar.white__menu .nav-item .nav-link {
  color: var(--dark);
}
.navbar.white__menu .nav-item .nav-link svg {
  fill: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: 15rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: transparent;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--dark);
}
.navbar .dropdown:hover > .nav-link svg {
  transform: rotate(-180deg);
  fill: var(--dark);
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
  background-color: var(--yellow);
  color: #fff;
  margin-left: 1rem;
}
.navbar .navbar-toggler span {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--white);
  display: block;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler span:nth-child(2) {
  margin: 7px 0;
  width: 70%;
}
.navbar .navbar-toggler:hover span:nth-child(1) {
  width: 100%;
}
.navbar .navbar-toggler:hover span:nth-child(3) {
  width: 100%;
}
.navbar .navbar-toggler:hover span:nth-child(2) {
  width: 100%;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--brand);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

/* Facebook */
.facebook {
  background-color: #1877F2;
  color: white;
}

.instagram {
  background-color: #E1306C; /* Instagram Gradient Starting Color */
  background-image: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: white;
}

/* LinkedIn */
.linkedin {
  background-color: #0077B5;
  color: white;
}

/* Pinterest */
.pinterest {
  background-color: #E60023;
  color: white;
}

.sideNav ul.links__list li {
  border-bottom: 1px solid #eee;
}
.sideNav ul.links__list li a {
  display: flex;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--link-color);
  justify-content: space-between;
  align-self: center;
  font-size: 1rem;
}
.sideNav ul.links__list li a.btn__link::after {
  content: "+";
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--link-color);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed) {
  color: var(--brand);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed)::after {
  content: "−";
  color: var(--brand);
}
.sideNav ul.links__list li a.collapse__btn {
  border-left: 1px solid #eee;
}
.sideNav ul.links__list li a:hover, .sideNav ul.links__list li a:focus, .sideNav ul.links__list li a:active {
  color: var(--brand);
}
.sideNav ul.links__list li .collapse li:first-child {
  border-top: 1px solid #eee;
}

.booking__modal .modal-dialog {
  max-width: 700px;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
  }
  .navbar .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 2.5rem;
  }
  .sideNav {
    max-width: 80%;
    border-top-left-radius: 1.5rem;
  }
}
.modal .form-control, .login__form .form-control {
  height: 3.5rem;
  border-radius: 3.5rem;
  padding: 0.5rem 2rem;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E7F4FF;
}
.modal .password__toggle__btn, .login__form .password__toggle__btn {
  border: 0;
  cursor: pointer;
  margin: 0%;
  width: 1.5rem;
  height: 1.5rem;
  right: 1.5rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 9;
  background-image: var(--password-eye);
  background-color: transparent;
}
.modal .password__toggle__btn:checked, .login__form .password__toggle__btn:checked {
  background-image: var(--password-eye-slash);
  background-color: transparent;
}
.modal .social__btn, .login__form .social__btn {
  width: 4rem;
  height: 4rem;
  border: 2px solid #E7F4FF;
}

.cartNav .offcanvas-header {
  background-color: #F1F1F1;
}
.cartNav .empty__box {
  height: calc(100vh - 5rem);
}
.cartNav .cart__list li .thumbnail {
  width: 5rem;
}
.cartNav .cart__list li .thumbnail img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
}
.cartNav .offcanvas__footer {
  background-color: var(--muted-color);
}
.cartNav .offcanvas__footer .btn-primary:hover, .cartNav .offcanvas__footer .btn-primary:focus, .cartNav .offcanvas__footer .btn-primary:active {
  background-color: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.cartNav .offcanvas__footer .btn-primary:hover svg path, .cartNav .offcanvas__footer .btn-primary:focus svg path, .cartNav .offcanvas__footer .btn-primary:active svg path {
  fill: var(--brand);
}

.call__action__btn {
  bottom: 2rem;
  left: 1rem;
  z-index: 999;
}
.call__action__btn a {
  width: 3.5rem;
  height: 3.5rem;
}
.call__action__btn a svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--white);
}
.call__action__btn .whatsapp {
  background-color: #25D366;
}
.call__action__btn .whatsapp svg {
  width: 2rem;
  height: 2rem;
}
.call__action__btn .call {
  background-color: #34B7F1;
}

.newsletter__wrapper {
  margin-bottom: -6rem;
}
.newsletter__wrapper .btn-outline-white svg {
  transition: all 0.3s ease-in-out;
}
.newsletter__wrapper .btn-outline-white:hover svg, .newsletter__wrapper .btn-outline-white:focus svg, .newsletter__wrapper .btn-outline-white:active svg {
  transform: translateX(0.5rem);
}
.newsletter__wrapper .btn-outline-white:hover svg path, .newsletter__wrapper .btn-outline-white:focus svg path, .newsletter__wrapper .btn-outline-white:active svg path {
  fill: var(--brand);
}

footer {
  background-color: #EAEAEA;
  padding: 10rem 0 0rem 0;
}
footer a {
  text-transform: capitalize;
  font-size: 0.937rem;
  font-weight: 400;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}

.social__box li {
  margin-bottom: 0;
}
.social__box li a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.social__box li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.social__box li a svg path {
  fill: var(--white);
}
.social__box li a:hover, .social__box li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
.input__group {
  position: relative;
}
.input__group .label {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 0.875rem;
  color: #4F5E64;
}
.input__group .form-control {
  height: 4.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
}
.input__group.sm .label {
  font-size: 0.75rem;
  left: 1rem;
  top: 0.35rem;
}
.input__group.sm .form-control {
  height: 3.5rem;
  padding: 1.5rem 1rem 0.1rem;
}

/*====================================================== Home Page Styles =========================================================================================*/
.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background: var(--chevron-right) no-repeat center center/1.5rem !important;
  background-color: var(--white) !important;
  box-shadow: 0 2px 3px rgba(0, 110, 22, 0.2);
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

/*----- Hero Search For styles ------*/
.form__box .form-control, .form__box .form-select {
  height: 4rem;
}
.form__box .btn-primary {
  height: 4rem;
}
.form__box .divider {
  position: relative;
}
.form__box .divider::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  right: 0%;
  background: linear-gradient(#fff, #c6c6c6, #fff);
}

.letter__filter__box {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.letter__filter__box .col, .letter__filter__box .btn-white {
  height: 3.5rem;
}
.letter__filter__box .col {
  overflow-x: auto;
  overflow-y: hidden;
}
.letter__filter__box .col a {
  width: 3rem;
  position: relative;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.letter__filter__box .col a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 3rem;
  display: block;
  position: absolute;
  top: 0%;
  right: 0%;
  background: linear-gradient(#fff, #c6c6c6, #fff);
}
.letter__filter__box .col .link__list {
  min-width: 900px;
}
.letter__filter__box::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  .form__box.listing .divider.first::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0%;
    background: linear-gradient(90deg, #fff, #c6c6c6, #fff);
  }
}
@media (max-width: 767px) {
  .form__box.home__filter .divider::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0%;
    background: linear-gradient(90deg, #fff, #c6c6c6, #fff);
  }
}
@media (max-width: 575px) {
  .form__box.listing .divider.second::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0%;
    background: linear-gradient(90deg, #fff, #c6c6c6, #fff);
  }
}
.college__card {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E7F4FF;
  padding: 0.75rem;
}
.college__card .title {
  min-height: 3rem;
}
.college__card .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.college__card .logo__box {
  width: 4rem;
  height: 4rem;
  top: 0.5rem;
  left: 0.5rem;
}
.college__card .logo__box img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}
.college__card .logo__box::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0156862745);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 0;
  border: 1px solid #f4f4f4;
  box-shadow: 0 14px 20px -5px rgba(244, 244, 244, 0.8156862745);
}
.college__card .cart__btn {
  width: 3rem;
  height: 3rem;
  top: 0.5rem;
  right: 0.5rem;
}
.college__card .cart__btn svg {
  height: 1.5rem;
  width: 1.5rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
  fill: var(--brand);
}
.college__card .cart__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7019607843);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 0;
  border: 1px solid #f4f4f4;
  box-shadow: 0 14px 20px -5px rgba(244, 244, 244, 0.6705882353);
}
.college__card .cart__btn:hover {
  background-color: rgba(255, 255, 255, 0.9607843137);
  box-shadow: 0 14px 20px -5px rgba(244, 244, 244, 0.862745098);
}

.join__card {
  background-color: #0E71BC;
}
.join__card.join__now {
  background-color: #1CA1DF;
}
.join__card.join__now .btn-dark:hover, .join__card.join__now .btn-dark:focus, .join__card.join__now .btn-dark:active {
  background-color: var(--blue);
  border-color: var(--blue);
}

@media (min-width: 768px) {
  .join__card .btn-dark {
    width: 50%;
  }
}
.scholarship__card {
  border: 1px solid #D9D9D9;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
}
.scholarship__card .logo__box {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--light-bg);
}
.scholarship__card .logo__box img {
  max-height: 3.5rem;
  width: auto;
}
.scholarship__card .btn-outline-primary {
  width: 3rem;
  height: 3rem;
  border-color: var(--light-bg);
}
.scholarship__card .btn-outline-primary svg {
  fill: #c3dbff;
  transition: all 0.3s ease-in-out;
}
.scholarship__card .btn-outline-primary:hover, .scholarship__card .btn-outline-primary:active, .scholarship__card .btn-outline-primary:focus {
  background-color: var(--light-bg);
}
.scholarship__card .btn-outline-primary:hover svg, .scholarship__card .btn-outline-primary:active svg, .scholarship__card .btn-outline-primary:focus svg {
  fill: var(--brand);
}
.scholarship__card .info__list {
  gap: 0.2rem 1.5rem;
}

.hostelCarousels .owl-item {
  padding: 2px;
}

.course__list__card {
  box-shadow: 0 0 2rem rgba(85, 85, 85, 0.15);
}
.course__list__card .description {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.course__list__card .info__list svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--brand);
}
.course__list__card .action__btns .btn {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.course__list__card .action__btns .btn.first__btn {
  background-color: #EC53B0;
  border-color: #EC53B0;
}
.course__list__card .action__btns .btn.first__btn:focus, .course__list__card .action__btns .btn.first__btn:hover, .course__list__card .action__btns .btn.first__btn:active {
  filter: brightness(115%);
}
.course__list__card .action__btns .btn.second__btn {
  background-color: #5356FF;
  border-color: #5356FF;
}
.course__list__card .action__btns .btn.second__btn:focus, .course__list__card .action__btns .btn.second__btn:hover, .course__list__card .action__btns .btn.second__btn:active {
  filter: brightness(115%);
}

.college__detail__header .banner {
  height: 34rem;
}
.college__detail__header .logo__box {
  bottom: 2rem;
  left: 2rem;
  width: 6rem;
  height: 6rem;
  box-shadow: 0.25rem 0.51rem 1rem 2rem rgba(255, 255, 255, 0.137254902);
}
.college__detail__header .gradient__bg {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.3490196078));
}

@media (max-width: 575px) {
  .college__detail__header .banner {
    height: 25rem;
  }
}
.custom__nav {
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 0.5rem;
}
.custom__nav .nav-link {
  color: #333;
  position: relative;
  white-space: nowrap;
}
.custom__nav .nav-link.active {
  color: var(--brand);
}
.custom__nav .nav-link.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brand);
  position: absolute;
  bottom: -0.5rem;
  left: 0%;
  border-radius: 4px;
}

.page__header .info__list {
  max-width: 600px;
}
.page__header .info__list svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--white);
  opacity: 0.75;
}

.provided__course__box {
  background-color: #333d47;
}

.interest__box {
  background-color: #4b67b1;
}

.btn-councelling {
  background-color: #f15930;
  border-color: #f15930;
  color: var(--white);
}
.btn-councelling:hover, .btn-councelling:focus, .btn-councelling:active {
  background-color: transparent;
  border-color: #f15930;
  color: #f15930 !important;
}

.question__box {
  background-color: #00444f;
}

.share__box {
  background-color: #056258;
}

/*---- Related videos styles -----*/
.related__videos__box iframe, .related__videos__box img {
  height: 9rem;
  width: 100%;
  object-fit: cover;
  margin: 0;
}

.related__albums__box iframe {
  height: 9.875rem;
  width: 100%;
  object-fit: cover;
  margin: 0;
}
.related__albums__box img {
  height: 10.5rem;
  width: 100%;
  object-fit: cover;
  margin: 0;
}
.related__albums__box .album__box .caption {
  background-color: rgba(0, 0, 0, 0.7450980392);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.related__albums__box .album__box:hover .caption {
  opacity: 1;
}

/*---- User profile link list styles ----*/
@media (min-width: 992px) {
  .user__column {
    width: 300px;
  }
}
.user__profile__thumbnail {
  width: 6rem;
  height: 6rem;
}

.profile__link__list li a {
  width: 90%;
  border-radius: 0 2rem 2rem 0;
  color: #747474;
  padding: 0.65rem 1rem;
  font-weight: 500;
}
.profile__link__list li a svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #747474;
}
.profile__link__list li.active a {
  background-color: var(--light-bg);
  color: var(--brand);
}
.profile__link__list li.active a svg {
  fill: var(--brand);
}

.collapsed__button:not(.collapsed) .icon svg {
  transform: rotate(-180deg);
}

.active ul li a {
  background-color: transparent !important;
}

.border-light {
  border-color: #e9e9e9 !important;
}

@media (max-width: 991px) {
  .profile__link__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 1rem !important;
  }
  .profile__link__list li {
    display: inline-block;
  }
  .profile__link__list li a {
    white-space: nowrap;
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    width: auto;
    background-color: var(--light-bg);
  }
  .profile__link__list li a svg {
    min-width: 1.25rem;
  }
  .user__profile__thumbnail {
    width: 4rem;
    height: 4rem;
  }
}
.like__btn {
  font-size: 13px;
  color: #aaa;
}
.like__btn svg {
  fill: #aaa;
  width: 1.125rem;
  height: 1.125rem;
}
.like__btn:hover, .like__btn:focus, .like__btn:active {
  color: var(--brand);
}
.like__btn:hover svg, .like__btn:focus svg, .like__btn:active svg {
  fill: var(--brand);
}

.social__share__box a svg {
  width: 3rem;
  height: 3rem;
}
.social__share__box a.fb svg {
  fill: #3b5998;
}
.social__share__box a.tw svg {
  fill: #000000;
}
.social__share__box a.ld svg {
  fill: #007bb6;
}
.social__share__box a.pin svg {
  fill: #cb2027;
}
.social__share__box a.gmail svg {
  fill: #3490F3;
}
.social__share__box a.wp svg {
  fill: #29a628;
}

.reviews__wrapper .progress {
  height: 0.5rem;
}
.reviews__wrapper .progress, .reviews__wrapper .progress-stacked {
  --bs-progress-bar-bg: #198754;
  background-color: #c5cacf;
}

.blog__card {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E7F4FF;
  padding: 0.75rem;
}

.coustom__table {
  border: 1px solid #E7F4FF;
}
.coustom__table th, .coustom__table td {
  padding: 0.75rem 2rem;
}
.coustom__table th {
  background: var(--brand) !important;
  color: var(--white);
}

@media (max-width: 575px) {
  .btn__search {
    width: 100%;
  }
}
/*---------- Contact page styles ---------------*/
.contact__details__wrapper .form__box {
  margin-top: -6rem;
  background: linear-gradient(#f9f9f9, white);
}
.contact__details__wrapper .form__box::before {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(var(--brand), var(--blue));
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
}
.contact__details__wrapper .icon__box {
  width: 5rem;
  height: 5rem;
}
.contact__details__wrapper .icon__box svg {
  width: 2rem;
  height: 2rem;
  fill: var(--blue);
}

/*---------- Contact page styles ---------------*//*# sourceMappingURL=style.css.map */